diff --git a/quad/info.rkt b/quad/info.rkt index 8195d77c..cc5b0941 100644 --- a/quad/info.rkt +++ b/quad/info.rkt @@ -1,5 +1,8 @@ #lang info (define collection 'multi) -(define deps '(("base" #:version "6.0") "sugar" "csp" "rackunit-lib" "hyphenate" "at-exp-lib" "data-lib" "draw-lib" "gui-lib" "math-lib" "plot-gui-lib" "plot-lib" "profile-lib" "typed-racket-lib")) -(define build-deps '("racket-doc" "scribble-lib" "draw-doc" "scribble-doc")) +(define deps '("beautiful-racket-lib" + "txexpr" + ("base" #:version "6.0") "sugar" "csp" "rackunit-lib" "hyphenate" "at-exp-lib" "data-lib" "draw-lib" "gui-lib" "math-lib" "plot-gui-lib" "plot-lib" "profile-lib" "typed-racket-lib")) +(define build-deps '("debug" + "racket-doc" "scribble-lib" "draw-doc" "scribble-doc")) (define update-implies '("sugar")) diff --git a/quad/quad/break.rkt b/quad/quad/break.rkt index 2321ff56..b8984f75 100644 --- a/quad/quad/break.rkt +++ b/quad/quad/break.rkt @@ -1,15 +1,14 @@ #lang debug racket/base -(require racket/contract racket/list txexpr sugar/debug sugar/list racket/promise racket/function +(require racket/contract racket/list racket/match txexpr sugar/debug sugar/define sugar/list racket/promise racket/function (only-in racket/control call/prompt) "param.rkt" "qexpr.rkt" "atomize.rkt" "quad.rkt") -(define/contract (insert-breaks xs +(define+provide/contract (insert-breaks xs [target-size (current-line-width)] [debug #f] #:break-val [break-val 'break] - ;; todo: generalize these procs so they're not particular to quads #:mandatory-break-proc [mandatory-break? (const #f)] #:optional-break-proc [optional-break? (const #f)] - #:finish-segment-proc [finish-segment (λ (pieces) (dropf pieces optional-break?))] + #:finish-segment-proc [finish-segment-proc values] #:size-proc [size-proc (const 1)]) ((any/c) (integer? any/c #:break-val any/c @@ -18,41 +17,44 @@ #:size-proc procedure? #:finish-segment-proc procedure?) . ->* . (listof any/c)) (define start-signal (gensym)) + (define (finish-segment pieces) (finish-segment-proc (reverse (dropf pieces optional-break?)))) (define last-optional-break-k #f) - (define (capture-optional-break-k!) (let/cc k (set! last-optional-break-k k) #f)) - (for/fold ([vals null] - [pieces null] - [size-so-far start-signal] - #:result (reverse (append (finish-segment pieces) vals))) - ([x (in-list xs)]) - (define-values (size-start size-mid size-end) (size-proc x)) - (define at-start? (eq? size-so-far start-signal)) - (define underflow? (and (not at-start?) (<= (+ size-so-far size-end) target-size))) - (define (add-to-segment) (values vals (cons x pieces) (if at-start? - size-start - (+ size-so-far size-mid)))) - (define (insert-break) - ;; when break is found, q is omitted from accumulation - ;; and any preceding optional breaks are dropped (that would be trailing before the break) - (values (cons break-val (append (finish-segment pieces) vals)) null start-signal)) - (cond - [(mandatory-break? x) (when debug (report x 'got-mandatory-break)) - (insert-break)] - [(optional-break? x) - (cond - [at-start? (when debug (report x 'skipping-opt-break-at-beginning)) (values vals null size-so-far)] - [(and underflow? (capture-optional-break-k!)) (when debug (report x 'resuming-breakpoint)) - (set! last-optional-break-k #f) ;; prevents continuation loop - (insert-break)] - [else (when debug (report x 'add-optional-break)) - (add-to-segment)])] - [(or at-start? underflow?) (when debug (report x 'add-ordinary-char)) - (add-to-segment)] - [last-optional-break-k (when debug (report x 'invoking-last-breakpoint)) - (last-optional-break-k #t)] - [else (when debug (report x 'falling-back)) - (define-values (vals pcs size-so-far) (insert-break)) - (values vals (list x) size-start)]))) ;; fallback if no last-breakpoint-k exists + (call/prompt ;; continuation boundary for last-optional-break-k + (thunk + (define (capture-optional-break-k!) (let/cc k (set! last-optional-break-k k) #f)) + (for/fold ([segments null] + [pieces null] + [size-so-far start-signal] + #:result (append* (reverse (cons (finish-segment pieces) segments)))) + ([x (in-list xs)]) + (define-values (size-start size-mid size-end) (size-proc x)) + (define at-start? (eq? size-so-far start-signal)) + (define underflow? (and (not at-start?) (<= (+ size-so-far size-end) target-size))) + (define (add-to-segment) (values segments (cons x pieces) (if at-start? + size-start + (+ size-so-far size-mid)))) + (define (insert-break) + ;; when break is found, q is omitted from accumulation + ;; and any preceding optional breaks are dropped (that would be trailing before the break) + (values (list* (list break-val) (finish-segment pieces) segments) null start-signal)) + (cond + [(mandatory-break? x) (when debug (report x 'got-mandatory-break)) + (insert-break)] + [(optional-break? x) + (cond + [at-start? (when debug (report x 'skipping-opt-break-at-beginning)) (values segments null size-so-far)] + [(and underflow? (capture-optional-break-k!)) (when debug (report x 'resuming-breakpoint)) + (set! last-optional-break-k #f) ;; prevents continuation loop + (insert-break)] + [else (when debug (report x 'add-optional-break)) + (add-to-segment)])] + [(or at-start? underflow?) (when debug (report x 'add-ordinary-char)) + (add-to-segment)] + [last-optional-break-k (when debug (report x 'invoking-last-breakpoint)) + (last-optional-break-k #t)] + [else (when debug (report x 'falling-back)) + (match-define-values (vals _ _) (insert-break)) + (values vals (list x) size-start)]))))) ;; fallback if no last-breakpoint-k exists (define x (q (hasheq 'size (delay (values 1 1 1))) #\x)) @@ -211,7 +213,7 @@ (delay (values 0 1 0)) (delay (values 1 1 1)))))]) (if (promise? val) (force val) (val)))) - #:finish-segment-proc (λ (pcs) (list ($slug #f (reverse (dropf pcs optional-break?))))))) + #:finish-segment-proc (λ (pcs) (list ($slug #f pcs))))) (module+ test (test-case diff --git a/quad/quad/charter.ttf b/quad/quad/charter.ttf deleted file mode 100644 index 33c6d7cb..00000000 Binary files a/quad/quad/charter.ttf and /dev/null differ diff --git a/quad/quad/dev.rkt b/quad/quad/dev.rkt deleted file mode 100644 index 26ed44d2..00000000 --- a/quad/quad/dev.rkt +++ /dev/null @@ -1,13 +0,0 @@ -#lang racket/base -(require (for-syntax racket/base) racket/list sugar/debug "quads.rkt" "error.rkt") -(provide (except-out (all-from-out racket/base) #%module-begin) - (all-from-out racket/list sugar/debug "quads.rkt" "error.rkt") - (rename-out [~module-begin #%module-begin]) - (for-syntax (all-from-out racket/base))) - -(define-syntax-rule (~module-begin . args) - (#%module-begin - . args)) - -(module reader syntax/module-reader - #:language 'quad/dev) \ No newline at end of file diff --git a/quad/quad/error.rkt b/quad/quad/error.rkt deleted file mode 100644 index df83fd37..00000000 --- a/quad/quad/error.rkt +++ /dev/null @@ -1,9 +0,0 @@ -#lang racket/base -(provide (all-defined-out)) - -(struct exn:quad-overflow exn:fail ()) -(define (raise-overflow-error) - (raise - (exn:quad-overflow - "overflow error: No breakpoint available. Increase line width" - (current-continuation-marks)))) \ No newline at end of file diff --git a/quad/quad/freetype-ffi.rkt b/quad/quad/freetype-ffi.rkt deleted file mode 100644 index aedbb286..00000000 --- a/quad/quad/freetype-ffi.rkt +++ /dev/null @@ -1,244 +0,0 @@ -#lang racket/base -(require ffi/unsafe - ffi/unsafe/define - racket/draw/private/libs) - -(define-syntax-rule (define+provide id val) - (begin - (define id val) - (provide id))) - -(define-runtime-lib freetype-lib - [(unix) (ffi-lib "libfontconfig" '("1" ""))] - [(macosx) (ffi-lib "libfreetype.6.dylib")] - [(windows) (ffi-lib "libfreetype-6.dll")]) - -(define-ffi-definer define-freetype freetype-lib #:provide provide) - -;; types -(define _void-pointer (_cpointer 'void-pointer)) -(define _char _byte) -(define _char-pointer (_cpointer 'char-pointer)) -(define _uchar _ubyte) -(define _FT_Byte _ubyte) -(define _FT_Bytes _bytes) -(define _FT_Char _char) -(define _FT_Int _int) -(define _FT_UInt _uint) -(define _FT_Int16 _short) -(define _FT_UInt16 _ushort) -(define _FT_Int32 _int32) -(define _FT_UInt32 _uint32) -(define _FT_Short _short) -(define _FT_UShort _ushort) -(define _FT_Long _long) -(define _FT_ULong _ulong) -(define _FT_Bool _byte) -(define _FT_Offset _size) ;; equivalent to _size_t? -(define _FT_PtrDist _ptrdiff) ;; equivalent to _longlong? -(define _FT_String _char) -(define _FT_String-pointer (_cpointer 'FT_String-pointer)) ;; char* -(define _FT_Tag _FT_UInt32) -(define _FT_Error _int) -(define _FT_Fixed _long) -(define _FT_Pointer _void-pointer) -(define _FT_Pos _long) -(define _FT_FWord _short) -(define _FT_UFWord _ushort) -(define _FT_F26Dot16 _short) -(define _FT_F26Dot6 _long) -(define _FT_Glyph_Format _int) -(define _FT_Encoding _int) -(define _FT_Generic_Finalizer (_cpointer '_FT_Generic_Finalizer (_fun _void-pointer -> _void))) - -(define _FT_LibraryRec (_cpointer 'FT_LibraryRec)) -(define _FT_Library (_cpointer 'FT_Library)) - -(define-cstruct _FT_Bitmap_Size - ([height _FT_Short] - [width _FT_Short] - [size _FT_Pos] - [x_ppem _FT_Pos] - [y_ppem _FT_Pos])) - -(define-cstruct _FT_CharMapRec - ([face _void-pointer] ; should be FT_Face - [encoding _FT_Encoding] - [platform_id _FT_UShort] - [encoding_id _FT_UShort])) - -(define _FT_Charmap _FT_CharMapRec-pointer) -(define _FT_CharMap-pointer (_cpointer 'FT_CharMap-pointer)) - -(define-cstruct _FT_Generic - ([data _void-pointer] - [finalizer _FT_Generic_Finalizer])) - -(define-cstruct _FT_BBox - ([xMin _FT_Pos] - [yMin _FT_Pos] - [xMax _FT_Pos] - [yMax _FT_Pos])) - -(define-cstruct _FT_Glyph_Metrics - ([width _FT_Pos] - [height _FT_Pos] - [horiBearingX _FT_Pos] - [horiBearingY _FT_Pos] - [horiAdvance _FT_Pos] - [vertBearingX _FT_Pos] - [vertBearingY _FT_Pos] - [vertAdvance _FT_Pos])) - -(define-cstruct _FT_Vector - ([x _FT_Pos] - [y _FT_Pos])) - -(provide (struct-out FT_Vector) - _FT_Vector _FT_Vector-pointer) - -(define-cstruct _FT_Bitmap - ([rows _int] - [width _int] - [pitch _int] - [buffer (_cpointer 'buffer)] - [num_grays _short] - [pixel_mode _ubyte] - [palette_mode _char] - [palette _void-pointer])) - -(define-cstruct _FT_Outline - ([n_contours _short] - [n_points _short] - [points _FT_Vector-pointer] - [tags (_cpointer 'tags)] - [contours (_cpointer 'contours)] - [flags _int])) - -(define-cstruct _FT_GlyphSlotRec - ([library _FT_Library] - [face _void-pointer] - [next _void-pointer] - [reserved _uint] - [generic _FT_Generic] - [metrics _FT_Glyph_Metrics] - [linearHoriAdvance _FT_Fixed] - [linearVertAdvance _FT_Fixed] - [advance _FT_Vector] - [format _FT_Glyph_Format] - [bitmap _FT_Bitmap] - [bitmap_left _FT_Int] - [bitmap_top _FT_Int] - [outline _FT_Outline] - [num_subglyphs _FT_UInt] - [subglyphs _void-pointer] - [control_data _void-pointer] - [control_len _long] - [lsb_delta _FT_Pos] - [rsb_delta _FT_Pos] - [other _void-pointer] - [internal _void-pointer])) - -(define _FT_GlyphSlot _FT_GlyphSlotRec-pointer) - -(provide (struct-out FT_GlyphSlotRec) - _FT_GlyphSlotRec _FT_GlyphSlotRec-pointer) - -(define-cstruct _FT_Size_Metrics - ([x_ppem _FT_UShort] - [y_ppem _FT_UShort] - [x_scale _FT_Fixed] - [y_scale _FT_Fixed] - [ascender _FT_Pos] - [descender _FT_Pos] - [height _FT_Pos] - [max_advance _FT_Pos])) - -(define-cstruct _FT_SizeRec - ([face _void-pointer] - [generic _FT_Generic] - [metrics _FT_Size_Metrics] - [internal _void-pointer])) - -(define _FT_Size _FT_SizeRec-pointer) - -(define-cstruct _FT_FaceRec - ([num_faces _FT_Long] - [face_index _FT_Long] - [face_flag _FT_Long] - [style_flags _FT_Long] - [num_glyphs _FT_Long] - [family_name _string] ; probably _string is a better choice - [style_name _string] - [num_fixed_sizes _FT_Int] - [available_sizes _FT_Bitmap_Size-pointer] - [num_charmaps _FT_Int] - [charmaps _FT_CharMap-pointer] - [generic _FT_Generic] - [bbox _FT_BBox] - [units_per_EM _FT_UShort] - [ascender _FT_Short] - [descender _FT_Short] - [height _FT_Short] - [max_advance_width _FT_Short] - [max_advance_height _FT_Short] - [underline_position _FT_Short] - [underline_thickness _FT_Short] - [glyph _FT_GlyphSlot] - [size _FT_Size] - [charmap _FT_Charmap] - [driver _void-pointer] - [memory _void-pointer] - [stream _void-pointer] - [sizes_list_head _void-pointer] - [sizes_list_tail _void-pointer] - [autohint _FT_Generic] - [extensions _void-pointer] - [internal _void-pointer])) - -(define _FT_Face _FT_FaceRec-pointer) -(provide (struct-out FT_FaceRec) - _FT_FaceRec _FT_FaceRec-pointer) - -(define _full-path - (make-ctype _path - path->complete-path - values)) - -(define-freetype FT_Init_FreeType (_fun (ftl : (_ptr o _FT_Library)) - -> (err : _FT_Error) - -> (if (zero? err) ftl (error 'FT_Init_FreeType)))) - -(define-freetype FT_New_Face (_fun _FT_Library _full-path _FT_Long - (ftf : (_ptr o (_or-null _FT_Face))) - -> (err : _FT_Error) - -> (if (zero? err) ftf (error 'FT_New_Face (format "error ~a" err))))) - -(define-freetype FT_Done_Face (_fun _FT_Face - -> (err : _FT_Error) - -> (unless (zero? err) (error 'FT_Done_Face (format "error ~a" err))))) - -(define-freetype FT_Done_FreeType (_fun _FT_Library -> (err : _FT_Error) -> (if (zero? err) (void) (error 'FT_Done_FreeType)))) - -(define-freetype FT_Get_Kerning (_fun _FT_Face _FT_UInt _FT_UInt _FT_UInt - (ftv : (_ptr o _FT_Vector)) - -> (err : _FT_Error) - -> (if (zero? err) ftv (error 'FT_Get_Kerning (format "error ~a" err))))) - -(define-freetype FT_Get_Char_Index (_fun _FT_Face _FT_ULong - -> _FT_UInt)) - -(define-freetype FT_Load_Glyph (_fun _FT_Face _FT_UInt _FT_Int32 - -> (err : _FT_Error))) - -(define-freetype FT_Load_Char (_fun _FT_Face _FT_ULong _FT_Int32 - -> (err : _FT_Error))) - -(define+provide FT_KERNING_UNSCALED 2) -(define+provide FT_LOAD_DEFAULT 0) -(define+provide FT_LOAD_RENDER (expt 2 2)) -(define+provide FT_LOAD_LINEAR_DESIGN (expt 2 13)) -(define+provide FT_LOAD_NO_RECURSE (expt 2 10)) - - - diff --git a/quad/quad/info.rkt b/quad/quad/info.rkt index a131d8e1..0a42e33b 100644 --- a/quad/quad/info.rkt +++ b/quad/quad/info.rkt @@ -1,4 +1,3 @@ #lang info - -(define compile-omit-paths '("old-master")) -(define test-omit-paths '("old-master")) +(define collection "quad") +(define version "0.0") diff --git a/quad/quad/main.rkt b/quad/quad/main.rkt deleted file mode 100644 index 36be5fb7..00000000 --- a/quad/quad/main.rkt +++ /dev/null @@ -1,21 +0,0 @@ -#lang quad/dev -(require "quads.rkt" "typeset.rkt" "atomize.rkt" "render.rkt" "render-pdf.rkt" racket/list racket/string) -(provide (except-out (all-from-out quad/dev "quads.rkt") #%module-begin) - (rename-out [~module-begin #%module-begin])) - -(define-syntax-rule (~module-begin lang-line-config-arg . args) - (#%module-begin - (define main-quad (apply quad #f (list . args))) ; at-reader splits lines, but we want one contiguous run - ;; branch on config-arg to allow debug / inspection options on #lang line - (define config-pieces (string-split (string-trim lang-line-config-arg))) - (and (pair? config-pieces) - (let ([config-args (map string->number (cdr config-pieces))]) - (case (car config-pieces) - [("in") (atomize main-quad)] - [("out") (time (apply fit (atomize main-quad) config-args))] - [("test") (time (debug-render (apply fit (atomize main-quad) config-args)))] - [("pdf") (time (render-pdf (apply fit (atomize main-quad) config-args)))] - [else (fit (atomize main-quad))]))))) - -(module reader syntax/module-reader - quad/main) \ No newline at end of file diff --git a/quad/quad/measure.rkt b/quad/quad/measure.rkt deleted file mode 100644 index 09bcdc2c..00000000 --- a/quad/quad/measure.rkt +++ /dev/null @@ -1,45 +0,0 @@ -#lang quad/dev -(require "freetype-ffi.rkt") -(provide (all-defined-out)) - -(define (measure! q) - (quad-dim-set! q - (cond - [(quad-printable? q) - (* (measure-char (quad-font q) (quad-val q)) (quad-font-size q))] - [else 0]))) - -(module+ test - (require rackunit) - (define q ($black '#hasheq((size . 12) (font . "sc.otf")) 0 #\n)) - (check-equal? (measure-char (quad-font q) (quad-val q)) .6)) - -(define measure-char - (let ([measure-cache (make-hash)] - [glyph-idx-cache (make-hash)] - [glyph-width-cache (make-hash)] - [em-size-cache (make-hash)] - [ft-library (FT_Init_FreeType)] - [ft-face-cache (make-hash)]) - (λ (font-pathstring char) - (define (do-measure) - (define ft-face (hash-ref! ft-face-cache font-pathstring - (λ () (unless (file-exists? font-pathstring) - (error 'measure-char (format "font path ~v does not exist" font-pathstring))) - (FT_New_Face ft-library font-pathstring 0)))) - (define width - (let ([glyph-idx (hash-ref! glyph-idx-cache (cons char font-pathstring) - (λ () (FT_Get_Char_Index ft-face (char->integer char))))]) - (hash-ref! glyph-width-cache (cons glyph-idx font-pathstring) - (λ () - (FT_Load_Glyph ft-face glyph-idx FT_LOAD_NO_RECURSE) ; loads into FTFace's 'glyph' slot - (define width (FT_Vector-x (FT_GlyphSlotRec-advance (FT_FaceRec-glyph ft-face)))) - (* width 1.0))))) ; store as inexact - (define em-size - (hash-ref! em-size-cache font-pathstring (λ () (FT_FaceRec-units_per_EM ft-face)))) - (/ width em-size)) - (hash-ref! measure-cache (cons font-pathstring char) do-measure)))) - -(module+ test - (require rackunit) - (check-equal? (measure-char "charter.ttf" #\f) .321)) diff --git a/quad/quad/old-master/breaktester.rkt b/quad/quad/old-master/breaktester.rkt deleted file mode 100644 index da218a5f..00000000 --- a/quad/quad/old-master/breaktester.rkt +++ /dev/null @@ -1,28 +0,0 @@ -#lang racket -(require hyphenate "quads.rkt" "world.rkt" "render.rkt" "typeset.rkt" "utils.rkt") - -(define (make-test-blocks string) - (let ([string string]) - (add-between (list - (block '(quality 100 x-align justify) string) -; (block '(quality 100 x-align justify) string) - ) (block-break)))) - - -(define test-block (block '(font "Equity Text B" measure 265 leading 8 size 10 x-align-last-line left) (apply block #f - (make-test-blocks (hyphenate "“This is a PDF generated from my typesetting system, which is called Quad. I’m writing this in a source file in DrRacket. When I click “Run”, a PDF pops out. Not bad — and no LaTeX needed. Quad, however, does use the fancy linebreaking algorithm developed for TeX. (It also includes a faster linebreaking algorithm for when speed is more important than quality.) This tutorial provides a brief introduction to the Racket programming language by using one of its picture-drawing libraries. Even if you don’t intend to use Racket for your artistic endeavours, the picture library supports interesting and enlightening examples. After all, a picture is worth five hundred “hello world”s."))))) - ;(block-break) (block #f (~a (random))))) - -(define ti5 (block '(font "Equity Text B" x-align justify x-align-last-line left) (block #f (block '(x-align-last-line center weight bold font "Equity Caps B") "Greetings" (block-break) "Matthew & Robby!") (block-break) (block #f " This is a PDF generated from my Racket typesetting language, which is called " (word '(style italic) "Quad.") " I’m writing this in a source file in DrRacket. When I click “Run”, a PDF pops out. Not bad — and no LaTeX needed." (block-break) (box '(width 15)) (word '(font "Concourse T2") "Quad takes some of the good ideas from TeX, like its fancy algorithm for breaking paragraphs into lines. Though respectfully to Prof. Knuth, I believe I’ve even improved it.") (block-break) (box '(width 15)) "Of course, Quad can also handle " (word '(font "Avenir") "different fonts,") (word '(style italic) " styles, ") (word '(size 14 weight bold) "and sizes") " within the same line. As you can see, it can also justify paragraphs. (This sample also uses the new fractional point sizes.)" (block-break) (box '(width 15)) "Truly, the combination of Lisp and typesetting is an unprecedented confluence of geekery. I hope that Quad can become a useful part of the Racket ecosystem." (block-break) (word '(x-align-last-line center weight bold font "Equity Caps B") "thank you for your help" (block-break) "mb" ))))) - -(define ti6 (block #f (apply block '(column-count 3 column-gutter 15 measure 170) (add-between (map (λ(r) (quad-attr-set* ti5 'size r 'leading (* 1.25 r))) (range 8.5 13 .5)) (column-break))) - (page-break) - (apply block '(column-count 2 column-gutter 25 measure 240) (add-between (map (λ(r) (quad-attr-set* ti5 'size r 'leading (* 1.25 r))) (range 10 14 .5)) (column-break))) - (page-break) - (apply block '(column-count 1 column-gutter 15 measure 360) (add-between (map (λ(r) (quad-attr-set* ti5 'size r 'leading (* 1.25 r))) (range 15 18)) (column-break))))) - -(parameterize ([world:quality-default world:max-quality] - [world:paper-width-default 792] - [world:paper-height-default 612]) - (send (new pdf-renderer%) render-to-file (time (typeset ti6)) "foo.pdf") - ) \ No newline at end of file diff --git a/quad/quad/old-master/buttons.rkt b/quad/quad/old-master/buttons.rkt deleted file mode 100644 index f1e48459..00000000 --- a/quad/quad/old-master/buttons.rkt +++ /dev/null @@ -1,48 +0,0 @@ -#lang racket/base -(require racket/runtime-path - racket/gui/base - racket/class - quad/render - quad/typeset - racket/system) - -(provide make-drracket-buttons) -(define-namespace-anchor cache-module-ns) -(module test racket/base) ; suppress testing by `raco test` - -(define-runtime-path html-png-path "cmd-char.png") - -#| for toolbar callbacks, see - -http://pkg-build.racket-lang.org/doc/tools/drracket_module-language-tools.html#%28elem._drracket~3atoolbar-buttons%29 - -|# - - -(define (make-render-pdf-button [open? #f]) - (let ([label (format "Render ~aPDF" (if open? "and Open " ""))] - [bitmap (make-object bitmap% html-png-path 'png/mask)] - [callback (let ([open? open?]) - (λ (drr-frame) - (define fn (send (send drr-frame get-definitions-text) get-filename)) - (unless fn - (error 'render-pdf "Please save your file first")) - (define pdfn (path-replace-suffix fn #".pdf")) - (define fn-out (parameterize ([current-namespace (make-base-namespace)]) - (namespace-attach-module (namespace-anchor->namespace cache-module-ns) 'quad/typeset) - (dynamic-require `(submod ,fn outy) 'out))) - (when fn-out - (define-values (fn-dir name dir?) (split-path fn)) - (parameterize ([current-directory fn-dir]) - (local-require "render.rkt" racket/class profile sugar/debug quad/logger quad/world) - (activate-logger quad-logger) - (send (new pdf-renderer%) render-to-file (typeset fn-out) pdfn)) - (when open? - (parameterize ([current-input-port (open-input-string "")]) - (system (format "open \"~a\"" (path->string pdfn))))))))] - [number (+ 99 (if open? 0 1))]) - - (list label bitmap callback number))) - -(define (make-drracket-buttons) - (list (make-render-pdf-button) (make-render-pdf-button #t))) diff --git a/quad/quad/old-master/cmd-char.png b/quad/quad/old-master/cmd-char.png deleted file mode 100644 index 4c1c626f..00000000 Binary files a/quad/quad/old-master/cmd-char.png and /dev/null differ diff --git a/quad/quad/old-master/experimental.rkt b/quad/quad/old-master/experimental.rkt deleted file mode 100644 index cb8f5138..00000000 --- a/quad/quad/old-master/experimental.rkt +++ /dev/null @@ -1,73 +0,0 @@ -#lang racket/base -(require racket/list sugar/define) -(require "samples.rkt" "quads.rkt" "utils.rkt") - -(define ti (block '(measure 54 leading 18) "Meg is " (box '(foo 42)) " ally.")) -(define tib (block '(measure 240 font "Equity Text B" leading 16 size 13.5 x-align justify x-align-last-line left) (block #f (block '(weight bold font "Equity Caps B") "Hello") (block-break) (box '(width 15))))) - -;ti - -;; convert quad into tokenized representation: -;; 1) vector of atomic tokens -;; 2) list of (attribute + range of tokens it applies to) -;; this representation is designed to: -;; 1) preserve all information in the original quad -;; 2) be compact / not duplicate information unnecessarily -;; 3) allow sequential access to the tokens -;; 4) allow fast computation of token state (i.e., attrs that apply) -(define+provide (make-tokens-and-attrs quad-in) - (define-values (all-tokens all-attrs _) - (let loop ([current-quad quad-in][attr-acc empty][starting-tidx 0]) - (cond - [(empty? (quad-list current-quad)); no subelements, so treat this quad as single token - (let ([current-quad-attrs (quad-attrs current-quad)] - [ending-tidx (add1 starting-tidx)]) - (values (quad (quad-name current-quad) #f empty) - (if current-quad-attrs - (cons (vector current-quad-attrs starting-tidx ending-tidx) attr-acc) - attr-acc) - ending-tidx))] - [else ; replace quad with its tokens, exploded - (define-values (tokens-from-fold subattrs-from-fold ending-tidx-from-fold) - (for/fold ([token-acc empty][subattr-acc empty][tidx starting-tidx]) - ([item (in-list (quad-list current-quad))]) - (cond - [(quad? item) - (define-values (sub-tokens sub-attrs sub-last-tidx) (loop item attr-acc tidx)) - (values (cons sub-tokens token-acc) (cons sub-attrs subattr-acc) sub-last-tidx)] - [else ; item is a string of length > 0 (quad contract guarantees this) - (define-values (exploded-chars last-idx-of-exploded-chars) - (for/fold ([chars empty][last-idx #f])([(c i) (in-indexed item)]) - (values (cons c chars) i))) ; fold manually to get reversed items & length at same time - (values (cons exploded-chars token-acc) subattr-acc (+ tidx (add1 last-idx-of-exploded-chars)))]))) - (values tokens-from-fold - (let ([current-quad-attrs (quad-attrs current-quad)]) - (if current-quad-attrs - (cons (vector current-quad-attrs starting-tidx ending-tidx-from-fold) subattrs-from-fold) - subattrs-from-fold)) - ending-tidx-from-fold)]))) - (values (list->vector (reverse (flatten all-tokens))) (flatten all-attrs))) - - -(define-values (tokens attrs) (make-tokens-and-attrs (ti5))) -(define+provide current-tokens (make-parameter tokens)) -(define+provide current-token-attrs (make-parameter attrs)) - -;(filter (λ(idx) (box? (vector-ref tokens idx))) (range (vector-length tokens))) - -(define (attr-ref-hash a) (vector-ref a 0)) -(define (attr-ref-start a) (vector-ref a 1)) -(define (attr-ref-end a) (vector-ref a 2)) - -(define (calc-attrs tref) - (map attr-ref-hash (filter (λ(attr) (<= (attr-ref-start attr) tref (sub1 (attr-ref-end attr)))) (current-token-attrs)))) - -(module+ main - (require rackunit) - (define ti (block '(measure 54) "Meg is " (box '(foo 42)) " ally.")) - (define-values (tokens attrs) (make-tokens-and-attrs ti)) - (current-tokens tokens) - (current-token-attrs attrs) - ;; todo: repair this test - #;(check-equal? tokens (vector #\M #\e #\g #\space #\i #\s #\space (box) #\space #\a #\l #\l #\y #\.)) - (check-equal? attrs '(#(#hash((measure . 54)) 0 14) #(#hash((foo . 42)) 7 8)))) \ No newline at end of file diff --git a/quad/quad/old-master/ffi/fc-bindings.rkt b/quad/quad/old-master/ffi/fc-bindings.rkt deleted file mode 100644 index 003480ce..00000000 --- a/quad/quad/old-master/ffi/fc-bindings.rkt +++ /dev/null @@ -1,75 +0,0 @@ -#lang racket/base -(require ffi/unsafe - ffi/unsafe/define - ffi/unsafe/alloc - setup/dirs - racket/draw/private/libs - racket/draw/private/utils) - -(define-runtime-lib fontconfig-lib - [(unix) (ffi-lib "libfontconfig" '("1" ""))] - [(macosx) - (ffi-lib "libpng16.16.dylib") - (ffi-lib "libexpat.1.dylib") - (ffi-lib "libfreetype.6.dylib") - (ffi-lib "libfontconfig.1.dylib")] - [(windows) - (ffi-lib "zlib1.dll") - (ffi-lib "libintl-8.dll") - (ffi-lib "libpng16-16.dll") - (ffi-lib "libexpat-1.dll") - (ffi-lib "libfreetype-6.dll") - (ffi-lib "libfontconfig-1.dll")]) - -(define-syntax-rule (_pfun spec ...) - (_fun #:in-original-place? #t spec ...)) - -(define-ffi-definer define-fc fontconfig-lib - #:provide provide) - - -;; datatype information from -;; http://www.freedesktop.org/software/fontconfig/fontconfig-devel/x31.html -(define FcConfig (_cpointer 'FcConfig)) -(define FcPattern (_cpointer 'FcPattern)) -(define FcPattern-pointer (_cpointer FcPattern)) -(define FcObjectSet (_cpointer 'FcObjectSet)) - -(define FcBool _bool) -(define FcChar8 _bytes) - -(define-cstruct _FcFontSet - ([nfont _int] - [sfont _int] - [fonts FcPattern-pointer])) ;; ?? spec says "FcPattern **fonts" but I don't know how this translates to ffi - - -;; function information from -;; http://www.freedesktop.org/software/fontconfig/fontconfig-devel/x102.html -(define-fc FcGetVersion (_pfun -> _int)) -(define-fc FcConfigCreate (_pfun -> FcConfig)) -(define-fc FcInitLoadConfig (_pfun -> FcConfig)) -(define-fc FcConfigAppFontAddFile (_pfun FcConfig FcChar8 -> FcBool)) -(define-fc FcConfigHome (_pfun -> FcChar8)) -(define-fc FcConfigGetSysRoot(_pfun FcConfig -> FcChar8)) -(define-fc FcFontList(_pfun FcConfig FcPattern FcObjectSet -> _FcFontSet)) -(define-fc FcPatternCreate (_pfun -> FcPattern)) -(define-fc FcFontSetCreate (_pfun -> _FcFontSet)) -(define-fc FcObjectSetCreate (_pfun -> FcObjectSet)) -(define-fc FcPatternPrint (_pfun FcPattern -> _void)) -(define-fc FcPatternEqual (_pfun FcPattern FcPattern -> FcBool)) - -;; attempting to replicate font-loading workaround shown at -;; https://bugzilla.gnome.org/show_bug.cgi?id=347237#c25 -(define cfg (FcConfigCreate)) ; workaround step 1 -(define path (string->bytes/utf-8 "/Users/MB/Desktop/reporter.otf")) - -(FcConfigAppFontAddFile cfg path) ; workaround step 2 -(define fcp (FcPatternCreate)) -(define fcos (FcObjectSetCreate)) - -(define fs (FcFontList cfg fcp fcos)) -(define pat (FcFontSet-fonts fs)) - -;; this crashes DrRacket, prob because I have mangled the _FcFontSet definition -;; (FcPatternPrint pat) diff --git a/quad/quad/old-master/ffi/pango-bindings.rkt b/quad/quad/old-master/ffi/pango-bindings.rkt deleted file mode 100644 index d0f1416d..00000000 --- a/quad/quad/old-master/ffi/pango-bindings.rkt +++ /dev/null @@ -1,357 +0,0 @@ -#lang racket/base -(require ffi/unsafe - ffi/unsafe/define - ffi/unsafe/alloc - racket/draw/unsafe/glib -racket/draw/unsafe/cairo -racket/draw/private/utils -racket/draw/private/libs) - -(define-runtime-lib pango-lib - [(unix) (ffi-lib "libpango-1.0" '("0" ""))] - [(macosx) (ffi-lib "libpango-1.0.0.dylib")] - [(windows) (ffi-lib "libpango-1.0-0.dll")]) - -(define-runtime-lib pangowin32-lib - [(unix) #f] - [(macosx)] - [(windows) - (ffi-lib "libpangowin32-1.0-0.dll")]) - -(define-runtime-lib pangocairo-lib - [(unix) (ffi-lib "libpangocairo-1.0" '("0" ""))] - [(macosx) - (ffi-lib "libharfbuzz.0.dylib") - (ffi-lib "libpangoft2-1.0.0.dylib") - (ffi-lib "libpangocairo-1.0.0.dylib")] - [(windows) - (ffi-lib "libintl-8.dll") - (ffi-lib "libpangowin32-1.0-0.dll") - (ffi-lib "libexpat-1.dll") - (ffi-lib "libfreetype-6.dll") - (ffi-lib "libfontconfig-1.dll") - (ffi-lib "libharfbuzz-0.dll") - (ffi-lib "libpangoft2-1.0-0.dll") - (ffi-lib "libpangocairo-1.0-0.dll")]) - -(define-ffi-definer define-pango pango-lib - #:provide provide) -(define-ffi-definer define-pangocairo pangocairo-lib - #:provide provide) -(define-ffi-definer define-pangowin32 pangowin32-lib - #:provide provide) - -;; Pango's Core Text back-end can somehow go wrong if we're going to eventually -;; use AppKit but don't load AppKit it before using functions such as -;; `pango_cairo_font_map_get_default'. So, force AppKit now for the platform -;; where the Core Text back-end is used: -(when (equal? "x86_64-macosx/3m" - (path->string (system-library-subpath))) - (void (ffi-lib (format "/System/Library/Frameworks/AppKit.framework/AppKit")))) - -;; ALLOCATION NOTE: since Pango calls into Cairo, it has the same -;; allocation constraints on arguments as Cairo functions; see -;; "cairo.rkt". - -(define PangoContext (_cpointer 'PangoContext)) -(define PangoLayout (_cpointer 'PangoLayout)) -(define PangoFontDescription (_cpointer 'PangoFontDescription)) -(define PangoFontFamily (_cpointer 'PangoFontFamily)) -(define PangoFontFace (_cpointer 'PangoFontFace)) -(define PangoFont (_cpointer 'PangoFont)) -(define PangoFontMap (_cpointer 'PangoFontMap)) -(define PangoFontMetrics (_cpointer 'PangoFontMetrics)) -(define PangoAttrList (_cpointer 'PangoAttrList)) -(define PangoAttribute (_cpointer 'PangoAttribute)) -(define PangoLanguage (_cpointer 'PangoLanguage)) -(define PangoCoverage (_cpointer 'PangoCoverage)) -(define PangoLayoutIter (_cpointer 'PangoLayoutIter)) -(define PangoLayoutLine (_cpointer 'PangoLayoutLine)) - - -(define-cstruct _PangoRectangle ([x _int] - [y _int] - [width _int] - [height _int]) - #:malloc-mode 'atomic-interior) -(provide make-PangoRectangle - PangoRectangle-x - PangoRectangle-y - PangoRectangle-width - PangoRectangle-height) - -(define-cstruct _PangoItem - ([offset _int] - [length _int] - [num_chars _int] - ;; Inline PangoAnalysis: - [shape_engine _pointer] - [lang_engine _pointer] - [font (_or-null PangoFont)] - [level _uint8] - [gravity _uint8] - [flags _uint8] - [script _uint8] - [language _pointer] - [extra_attrs _pointer])) - -(provide (struct-out PangoItem) - _PangoItem _PangoItem-pointer) - -(define-cstruct _PangoGlyphInfo - ([glyph _uint32] - [width _uint32] - [dx _uint32] - [dy _uint32] - [is_cluster_start _uint])) - -(provide (struct-out PangoGlyphInfo) - _PangoGlyphInfo _PangoGlyphInfo-pointer) - -(define-cstruct _PangoGlyphString - ([num_glyphs _int] - [glyphs _pointer] - [log_clusters _pointer]) - #:malloc-mode 'atomic-interior) - -(provide (struct-out PangoGlyphString) - _PangoGlyphString) - -(define-cstruct _PangoGlyphItem ([item _PangoItem-pointer] - [glyphs _PangoGlyphString-pointer])) -(provide (struct-out PangoGlyphItem)) - -;; As of Pango 1.28, Pango is not thread-safe at the C level, which -;; means that it isn't place-safe in Racket. Also, for some reason, -;; when parts of Pango are initialized in a non-main place under -;; Windows, then font operations start to fail when that place exits. -;; Run all Pango calls in the original place, which synchronizes them -;; and avoids Windows problems. -(define-syntax-rule (_pfun spec ...) - (_fun #:in-original-place? #t spec ...)) - -(provide g_object_unref g_free) -(define-gobj g_object_unref (_pfun _pointer -> _void) - #:wrap (deallocator)) -(define-glib g_free (_pfun _pointer -> _void) - #:wrap (deallocator)) - -;; For working around a Win32 Pango bug (see `unref-font-map'): -(define _GQueue (_cpointer 'GQueue)) -(define-cstruct _PangoWin32FontMap ([type-instance _pointer] - [ref_count _uint] - [qdata _pointer] - [font_cache _pointer] - [freed_fonts _GQueue])) -(define-glib g_queue_foreach (_pfun _GQueue _fpointer #;(_fun _pointer -> _void) _pointer -> _void)) -(define-glib g_queue_free (_pfun _GQueue -> _void)) -(define-glib g_queue_new (_pfun -> _GQueue)) -(define-gobj raw_g_object_unref _fpointer #:c-id g_object_unref) - -(define (unref-font-map v) - (when (eq? (system-type) 'windows) - ;; For version 1.28 of Pango, reported as Bug 649293: - ;; Under Windows, PangoWin32FontMap holds a queue of freed - ;; fonts, and the fonts hold a weak link back to the map. - ;; Unreffing the font map drops the weak links and *then* - ;; tries to release the freed fonts, which leads to failures - ;; releasing the fonts. Work around the bug by manually - ;; flushing the queue of freed fonts before the font map is - ;; unreffed. - (let ([fm (cast v _pointer _PangoWin32FontMap-pointer)]) - (g_queue_foreach (PangoWin32FontMap-freed_fonts fm) raw_g_object_unref #f) - (g_queue_free (PangoWin32FontMap-freed_fonts fm)) - (set-PangoWin32FontMap-freed_fonts! fm (g_queue_new)))) - (g_object_unref v)) - -(define-pangocairo pango_cairo_font_map_get_default (_pfun -> PangoFontMap)) ;; not an allocator -(define-pangocairo pango_cairo_font_map_new (_pfun -> PangoFontMap) - #:wrap (allocator unref-font-map)) - -(define-pango pango_context_new (_pfun -> PangoContext) - #:wrap (allocator g_object_unref)) -;; pango_font_map_create_context() is in 1.22 and later -(provide pango_font_map_create_context) -(define (pango_font_map_create_context fm) - (let ([c (pango_context_new)]) - (pango_context_set_font_map c fm) - c)) -(define-pangocairo pango_cairo_update_context (_pfun _cairo_t PangoContext -> _void)) - -;; The convenince function pango_cairo_create_context() is in 1.22 and later -(provide pango_cairo_create_context) -(define (pango_cairo_create_context cr) - (let ([ctx (pango_font_map_create_context - (pango_cairo_font_map_get_default))]) - (pango_cairo_update_context cr ctx) - ctx)) - -(define-pangocairo pango_cairo_create_layout (_pfun _cairo_t -> PangoLayout) - #:wrap (allocator g_object_unref)) -(define-pangocairo pango_cairo_update_layout (_pfun _cairo_t PangoLayout -> _void)) -(define-pango pango_layout_set_text (_pfun PangoLayout [s : _string] [_int = -1] -> _void)) -(define-pangocairo pango_cairo_show_layout (_pfun _cairo_t PangoLayout -> _void)) -(define-pangocairo pango_cairo_show_layout_line (_pfun _cairo_t PangoLayoutLine -> _void)) -(define-pangocairo pango_cairo_show_glyph_string (_pfun _cairo_t PangoFont _PangoGlyphString-pointer -> _void)) -(define-pangocairo pango_cairo_layout_line_path (_pfun _cairo_t PangoLayoutLine -> _void)) - -(define-pango pango_layout_iter_free (_pfun PangoLayoutIter -> _void) - #:wrap (deallocator)) -(define-pango pango_layout_get_iter (_pfun PangoLayout -> PangoLayoutIter) - #:wrap (allocator pango_layout_iter_free)) -(define-pango pango_layout_iter_get_baseline (_pfun PangoLayoutIter -> _int)) -(define-pango pango_layout_iter_next_run (_pfun PangoLayoutIter -> _bool)) -(define-pango pango_layout_iter_get_run (_pfun PangoLayoutIter -> (_or-null _PangoGlyphItem-pointer))) -(define-pango pango_layout_iter_get_run_readonly (_pfun PangoLayoutIter -> (_or-null _PangoGlyphItem-pointer)) - #:fail (lambda () pango_layout_iter_get_run)) - -(define-pango pango_layout_get_line (_pfun PangoLayout _int -> PangoLayoutLine)) -(define-pango pango_layout_get_line_readonly (_pfun PangoLayout _int -> PangoLayoutLine) - #:fail (lambda () pango_layout_get_line)) - -(define-pango pango_layout_get_context (_pfun PangoLayout -> PangoContext)) ;; not an allocator -;(define-pango pango_layout_get_extents (_pfun PangoLayout _pointer _PangoRectangle-pointer -> _void)) -(define-pango pango_layout_get_baseline (_pfun PangoLayout -> _int) - ;; The convenince function pango_layout_get_baseline() is in 1.22 and later - #:fail (lambda () - (lambda (layout) - (let ([iter (pango_layout_get_iter layout)]) - (begin0 - (pango_layout_iter_get_baseline iter) - (pango_layout_iter_free iter)))))) -(define-pango pango_layout_get_spacing (_pfun PangoLayout -> _int)) - -(define-pango pango_layout_new (_pfun PangoContext -> PangoLayout) - #:wrap (allocator g_object_unref)) - -(define-pangocairo pango_cairo_context_get_font_options (_pfun PangoContext -> _cairo_font_options_t)) ;; not an allocator -(define-pangocairo pango_cairo_context_set_font_options (_pfun PangoContext _cairo_font_options_t -> _void)) ;; makes a copy - -(define-pango pango_layout_set_font_description (_pfun PangoLayout PangoFontDescription -> _void)) ;; makes a copy -(define-pango pango_context_get_font_map (_pfun PangoContext -> PangoFontMap)) ;; not an allocator -(define-pango pango_context_set_font_map (_pfun PangoContext PangoFontMap -> _void)) -(define-pango pango_font_family_get_name (_pfun PangoFontFamily -> _string)) ;; not an allocator -(define-pango pango_font_family_is_monospace (_pfun PangoFontFamily -> _bool)) - -(define-pango pango_language_get_default (_pfun -> PangoLanguage) - ;; not available before 1.16 - #:fail (lambda () (lambda () #f))) -(define-pango pango_font_map_load_font (_pfun PangoFontMap PangoContext PangoFontDescription -> (_or-null PangoFont))) -(define-pango pango_coverage_unref (_pfun PangoCoverage -> _void) - #:wrap (deallocator)) -(define-pango pango_font_get_coverage (_pfun PangoFont PangoLanguage -> PangoCoverage) - #:wrap (allocator pango_coverage_unref)) -(define-pango pango_coverage_get (_pfun PangoCoverage _int -> _int)) - -(define-pango pango_font_metrics_unref (_pfun PangoFontMetrics -> _void) - #:wrap (deallocator)) -(define-pango pango_font_get_metrics (_pfun PangoFont (_or-null PangoLanguage) -> PangoFontMetrics) - #:wrap (allocator pango_font_metrics_unref)) -(define-pango pango_font_metrics_get_approximate_char_width (_pfun PangoFontMetrics -> _int)) -(define-pango pango_font_metrics_get_ascent (_pfun PangoFontMetrics -> _int)) -(define-pango pango_font_metrics_get_descent (_pfun PangoFontMetrics -> _int)) - -(define-pango pango_layout_get_unknown_glyphs_count (_pfun PangoLayout -> _int) - ;; not available in old versions: - #:fail (lambda () (lambda (lo) 0))) - -(define-pango pango_attr_list_unref (_pfun PangoAttrList -> _void) - #:wrap (deallocator)) -(define-pango pango_attr_list_new (_pfun -> PangoAttrList) - #:wrap (allocator pango_attr_list_unref)) -(define-pango pango_attr_list_insert (_pfun PangoAttrList PangoAttribute -> _void) - ;; takes ownership of the attribute - #:wrap (deallocator cadr)) - -(define-pango pango_attribute_destroy (_pfun PangoAttribute -> _void) - #:wrap (deallocator)) -(define-pango pango_attr_underline_new (_pfun _int -> PangoAttribute) - #:wrap (allocator pango_attribute_destroy)) -(define-pango pango_attr_fallback_new (_pfun _bool -> PangoAttribute) - #:wrap (allocator pango_attribute_destroy)) - -(define-pango pango_layout_set_attributes (_pfun PangoLayout PangoAttrList -> _void)) - -(define-pango pango_font_map_list_families (_pfun PangoFontMap - (fams : (_ptr o _pointer)) - (len : (_ptr o _int)) - -> _void - -> (begin0 - (for/list ([i (in-range len)]) - (ptr-ref fams PangoFontFamily i)) - (g_free fams)))) -(define-pango pango_font_family_list_faces (_pfun PangoFontFamily - (faces : (_ptr o _pointer)) - (len : (_ptr o _int)) - -> _void - -> (begin0 - (for/list ([i (in-range len)]) - (ptr-ref faces PangoFontFace i)) - (g_free faces)))) -(define-pango pango_font_face_get_face_name (_pfun PangoFontFace -> _string)) - -(define-pango pango_font_description_free (_pfun PangoFontDescription -> _void) - #:wrap (deallocator)) -(define-pango pango_font_description_new (_pfun -> PangoFontDescription) - #:wrap (allocator pango_font_description_free)) -(define-pango pango_font_description_from_string (_pfun _string -> PangoFontDescription) - #:wrap (allocator pango_font_description_free)) -(define-pango pango_font_description_set_family (_pfun PangoFontDescription _string -> _void)) -(define-pango pango_font_description_set_style (_pfun PangoFontDescription _int -> _void)) -(define-pango pango_font_description_set_weight (_pfun PangoFontDescription _int -> _void)) -(define-pango pango_font_description_set_size (_pfun PangoFontDescription _int -> _void)) -(define-pango pango_font_description_set_absolute_size (_pfun PangoFontDescription _double* -> _void)) -(define-pango pango_font_description_get_family (_pfun PangoFontDescription -> _string)) - -(define _PangoWin32FontCache (_cpointer 'PangoWin32FontCache)) -(define _HFONT (_cpointer 'HFONT)) -(define _LOGFONT-pointer _pointer) -(define-pangowin32 pango_win32_font_map_for_display (_pfun -> PangoFontMap) - #:make-fail make-not-available) -(define-pangowin32 pango_win32_font_logfont (_pfun PangoFont -> _LOGFONT-pointer) - #:make-fail make-not-available - #:wrap (allocator g_free)) -(define-pangowin32 pango_win32_font_description_from_logfont (_pfun _LOGFONT-pointer -> PangoFontDescription) - #:make-fail make-not-available - #:wrap (allocator pango_font_description_free)) -(define-pangowin32 pango_win32_font_cache_unload (_pfun _PangoWin32FontCache _HFONT -> _void) - #:make-fail make-not-available) -(define-pangowin32 pango_win32_font_cache_load (_pfun _PangoWin32FontCache _LOGFONT-pointer -> _HFONT) - #:make-fail make-not-available) -(define-pangowin32 pango_win32_font_cache_new (_pfun -> _PangoWin32FontCache) - #:make-fail make-not-available) - -(define-enum - 0 - PANGO_STYLE_NORMAL - PANGO_STYLE_OBLIQUE - PANGO_STYLE_ITALIC) - -(define-enum - 0 - PANGO_UNDERLINE_NONE - PANGO_UNDERLINE_SINGLE - PANGO_UNDERLINE_DOUBLE - PANGO_UNDERLINE_LOW - PANGO_UNDERLINE_ERROR) - -(define/provide PANGO_WEIGHT_LIGHT 300) -(define/provide PANGO_WEIGHT_MEDIUM 500) -(define/provide PANGO_WEIGHT_BOLD 700) - -(define/provide PANGO_SCALE 1024) - - -(define-pango pango_layout_set_width (_pfun PangoLayout _int -> _void)) -(define-pango pango_layout_get_width (_pfun PangoLayout -> _int)) -(define-pango pango_layout_get_character_count (_pfun PangoLayout -> _int)) -(define-pango pango_layout_copy (_pfun PangoLayout -> PangoLayout)) -(define-pango pango_layout_get_serial (_pfun PangoLayout -> _uint)) -(define-pango pango_layout_get_text (_pfun PangoLayout -> _string/utf-8)) -(define-pango pango_layout_get_attributes (_pfun PangoLayout -> PangoAttrList)) -(define-pango pango_layout_get_font_description (_pfun PangoLayout -> PangoFontDescription)) - -(define-pango pango_font_description_get_size (_pfun PangoFontDescription -> _int)) - -(define-pango pango_layout_get_extents (_pfun PangoLayout _PangoRectangle-pointer _PangoRectangle-pointer -> _void)) -(define-pango pango_layout_get_pixel_extents (_pfun PangoLayout _PangoRectangle-pointer _PangoRectangle-pointer -> _void)) diff --git a/quad/quad/old-master/foo.rkt b/quad/quad/old-master/foo.rkt deleted file mode 100644 index 95c45ef2..00000000 --- a/quad/quad/old-master/foo.rkt +++ /dev/null @@ -1,14 +0,0 @@ -#lang sugar/debug racket - -(define 1-out - (block '(measure 240.0 font "Times New Roman" leading 16.0 vmeasure 300.0 size 13.5 x-align justify x-align-last-line left) (box '(width 15.0)) (block '() (block '(weight bold) "Hot " (word '(size 22.0) "D") "ang, My Fellow Americans.") " This " (block '(no-break #t) "is some truly") " nonsense generated from my typesetting system, which is called Quad. I’m writing this in a source file in DrRacket. When I click [Run], a PDF pops out. Not bad\u200a—\u200aand no LaTeX needed. Quad, however, does use the fancy linebreaking algorithm developed for TeX. (It also includes a faster linebreaking algorithm for when speed is more important than quality.) Of course, it can also handle " (block '(font "Courier") "different fonts,") (block '(style italic) " styles, ") (word '(size 14.0 weight bold) "and sizes-") " within the same line. As you can see, it can also justify paragraphs."))) - -(require quad/typeset quad/quads quad/render) - -;(time (send (new pdf-renderer%) render-to-file (typeset 1-out) "f1-test.pdf")) - -(require (prefix-in 2- "foo2.rkt")) -(time (send (new pdf-renderer%) render-to-file (typeset 2-out) "f2-test.pdf")) - -(require (prefix-in 3- "foo3.rkt")) -;(time (send (new pdf-renderer%) render-to-file (typeset 3-out) "f3-test.pdf")) diff --git a/quad/quad/old-master/foo2.rkt b/quad/quad/old-master/foo2.rkt deleted file mode 100644 index 1510f843..00000000 --- a/quad/quad/old-master/foo2.rkt +++ /dev/null @@ -1,3 +0,0 @@ -#lang quad - -match-select specifies the collected results. The default of car means that the result is the list of matches without returning parenthesized sub-patterns. It can be given as a ‘selector’ function which chooses an item from a list, or it can choose a list of items. For example, you can use cdr to get a list of lists of parenthesized sub-patterns matches, or values (as an identity function) to get the full matches as well. (Note that the selector must choose an element of its input list or a list of elements, but it must not inspect its input as they can be either a list of strings or a list of position pairs. Furthermore, the selector must be consistent in its choice(s).) \ No newline at end of file diff --git a/quad/quad/old-master/foo3.rkt b/quad/quad/old-master/foo3.rkt deleted file mode 100644 index 902c273d..00000000 --- a/quad/quad/old-master/foo3.rkt +++ /dev/null @@ -1,3 +0,0 @@ -#lang quad - -◊block['(measure 240.0 font "Times New Roman" leading 16.0 vmeasure 300.0 size 13.5 x-align justify x-align-last-line left) ◊box['(width 15.0)] ◊block[#f]{◊block['(weight bold)]{Hot ◊word['(size 22.0)]{D}ang, My Fellow Americans.} This ◊block['(no-break #t)]{is some truly} nonsense generated from my typesetting system, which is called Quad. I’m writing this in a source file in DrRacket. When I click [Run], a PDF pops out. Not bad\u200a—\u200aand no LaTeX needed. Quad, however, does use the fancy linebreaking algorithm developed for TeX. (It also includes a faster linebreaking algorithm for when speed is more important than quality.) Of course, it can also handle ◊block['(font "Courier")]{different fonts,} ◊block['(style italic)]{ styles, }◊word['(size 14.0 weight bold)]{and sizes-} within the same line. As you can see, it can also justify paragraphs.}] \ No newline at end of file diff --git a/quad/quad/old-master/info.rkt b/quad/quad/old-master/info.rkt deleted file mode 100644 index 06687967..00000000 --- a/quad/quad/old-master/info.rkt +++ /dev/null @@ -1,5 +0,0 @@ -#lang info - -(define scribblings '(("scribblings/quad.scrbl" ()))) -(define compile-omit-paths '("tests.rkt" "tests-ocm.rkt")) -(define test-omit-paths 'all) diff --git a/quad/quad/old-master/logger.rkt b/quad/quad/old-master/logger.rkt deleted file mode 100644 index 7813417a..00000000 --- a/quad/quad/old-master/logger.rkt +++ /dev/null @@ -1,50 +0,0 @@ -#lang racket/base -(require (for-syntax racket/base racket/syntax) sugar/coerce racket/contract) -(require "world.rkt" racket/match sugar/debug racket/date racket/list) -(module+ test (require rackunit)) -(provide (all-defined-out)) - - -(define-syntax-rule (define-orphan-logger name) - (begin - (define remember-cl (current-logger)) - (define dummy-cl (make-logger)) - (current-logger dummy-cl) - (define-logger name) - (current-logger remember-cl))) - -(define-logger quad) - -(define-syntax-rule (activate-logger logger) - (begin - (define logger-receiver (make-log-receiver logger (world:logging-level))) - (define log-file (build-path (current-directory) (format "~a.txt" 'logger))) - (with-output-to-file log-file #:exists 'truncate void) - (void (thread - (λ () - (let loop () - (match (sync logger-receiver) - [(vector event-level event-message event-value name) - (define msg (format "[~a] ~a\n" event-level event-message)) - ; (eprintf msg) - (flush-output) - (with-output-to-file log-file #:exists 'append (λ () (display msg)))]) - (loop)))) - (log-quad-info "started at ~a" (date->string (current-date) #t))))) - - -(define-syntax-rule (log-quad-debug-report x) - (begin - (log-quad-debug "~a = ~a" 'x x) - x)) - -(define-syntax-rule (log-quad-debug* xs) - (when (equal? (world:logging-level) 'debug) - (map (λ(x) (log-quad-debug x)) xs))) - -(module+ main - (activate-logger quad-logger) - (log-quad-fatal "Exterminate! Exterminate!") - (log-quad-error "~a" (time (apply + (range 1000)))) - (log-quad-debug "What's the red button for?")) - diff --git a/quad/quad/old-master/main.rkt b/quad/quad/old-master/main.rkt deleted file mode 100644 index cb460cbf..00000000 --- a/quad/quad/old-master/main.rkt +++ /dev/null @@ -1,52 +0,0 @@ -#lang racket/base -(provide (except-out (all-from-out racket/base) #%module-begin) - (rename-out [quad-module-begin #%module-begin])) -(require (for-syntax racket/base syntax/strip-context)) -(require quad/quads quad/typeset quad/world quad/render racket/class) - -(define-syntax (quad-module-begin stx) - (syntax-case stx () - [(_ expr ...) - (replace-context #'(expr ...) - #'(#%module-begin - (module outy racket/base - (require quad/quads) - (define out (block '(font "Times New Roman" measure 360.0 leading 14.0 column-count 1 column-gutter 10.0 size 11.5 x-align justify x-align-last-line left) expr ...)) - (provide out)) - (require 'outy) - (provide (all-from-out 'outy)) - (displayln out)))])) - -(module reader syntax/module-reader - quad/main - #:read quad-read - #:read-syntax quad-read-syntax - #:whole-body-readers? #t ;; need this to make at-reader work - #:info custom-get-info - (require scribble/reader) - - (define (quad-read p) - (syntax->datum (quad-read-syntax (object-name p) p))) - - (define quad-command-char #\@) - - (define (quad-read-syntax path-string p) - (define quad-at-reader (make-at-reader - #:command-char quad-command-char - #:syntax? #t - #:inside? #t)) - (define source-stx (quad-at-reader path-string p)) - source-stx) - - (define (custom-get-info key default [proc (λ _ #f)]) - (case key - [(color-lexer) - (define my-make-scribble-inside-lexer - (dynamic-require 'syntax-color/scribble-lexer 'make-scribble-inside-lexer (λ () #f))) - (cond [my-make-scribble-inside-lexer - (my-make-scribble-inside-lexer #:command-char quad-command-char)] - [else default])] - [(drracket:toolbar-buttons) - (define my-make-drracket-buttons (dynamic-require 'quad/buttons 'make-drracket-buttons)) - (my-make-drracket-buttons)] - [else default]))) \ No newline at end of file diff --git a/quad/quad/old-master/measure.rkt b/quad/quad/old-master/measure.rkt deleted file mode 100644 index a7615f47..00000000 --- a/quad/quad/old-master/measure.rkt +++ /dev/null @@ -1,68 +0,0 @@ -#lang racket/base -(require math/flonum racket/draw racket/class sugar/debug sugar/list racket/list sugar/cache racket/serialize racket/file) -(provide measure-text measure-ascent round-float update-text-cache-file load-text-cache-file) - -(define precision 4.0) -(define base (flexpt 10.0 precision)) - -(define-syntax-rule (round-float x) - (fl/ (flround (fl* base (fl x))) base)) - -(define dc (new record-dc%)) - -(define max-size 1024) ; use fixnum to trigger faster bitshift division -;; changing max-size invalidates font cache (because it's based on max size, duh) - -(define/caching (make-font/caching font weight style) - (make-font #:size max-size #:style style #:weight weight #:face font)) - -(define (get-cache-file-path) - (build-path "font.cache")) - -(define (update-text-cache-file) - (when (current-text-cache-changed?) - (write-to-file (serialize (current-text-cache)) (get-cache-file-path) #:exists 'replace) - (current-text-cache-changed? #f))) - -(define (load-text-cache-file) - (define cache-file-path (get-cache-file-path)) - (current-text-cache (if (file-exists? cache-file-path) - (deserialize (file->value cache-file-path)) - (make-hash)))) - -(define current-text-cache (make-parameter (make-hash))) -(define current-text-cache-changed? (make-parameter #f)) -(define current-font-cache (make-parameter (make-hash))) - -(define/caching (measure-max-size text font [weight 'normal] [style 'normal]) - ;((string? string?) (symbol? symbol?) . ->* . number?) - (define font-instance (hash-ref! (current-font-cache) (list font weight style) (λ() (make-font #:size max-size #:style style #:weight weight #:face font)))) - ;; 'combine' boolean only makes a difference for two or more chars - (hash-ref! (current-text-cache) (list text font weight style) (λ() (current-text-cache-changed? #t) - (values->list (send dc get-text-extent text font-instance (>= (string-length text) 1)))))) - -(define-syntax-rule (width x) (first x)) -(define-syntax-rule (height x) (second x)) -(define-syntax-rule (descent x) (third x)) -(define-syntax-rule (extra x) (fourth x)) - -(define-syntax-rule (measure-text-max-size text font weight style) - (width (measure-max-size text font weight style))) - -(define (measure-text text size font [weight 'normal] [style 'normal]) - ; ((string? flonum? string?) (symbol? symbol?) . ->* . flonum?) - ;; Native function only accepts integers, so get max-size and scale down to size needed. - (define raw-measure (measure-text-max-size text font weight style)) - (round-float (/ (* (exact->inexact raw-measure) (exact->inexact size)) max-size))) - - -(define-syntax-rule (measure-ascent-max-size text font weight style) - (let ([result-list (measure-max-size text font weight style)]) - (- (height result-list) (descent result-list)))) - - -(define (measure-ascent text size font [weight 'normal] [style 'normal]) - ; ((string? flonum? string?) (symbol? symbol?) . ->* . flonum?) - ;; Native function only accepts integers, so get max-size and scale down to size needed. - (define raw-baseline-distance (measure-ascent-max-size text font weight style)) - (round-float (/ (* (exact->inexact raw-baseline-distance) (exact->inexact size)) max-size))) diff --git a/quad/quad/old-master/ocm.rkt b/quad/quad/old-master/ocm.rkt deleted file mode 100644 index c9698571..00000000 --- a/quad/quad/old-master/ocm.rkt +++ /dev/null @@ -1,448 +0,0 @@ -#lang racket/base -(require (for-syntax racket/base racket/syntax)) -(require racket/list sugar/debug rackunit racket/function racket/vector sugar/cache "logger.rkt") -(define-logger ocm) -;(activate-logger ocm-logger) - - -#| -Totally monotone matrix searching algorithms. - -The offline algorithm in ConcaveMinima is from Agarwal, Klawe, Moran, -Shor, and Wilbur, Geometric applications of a matrix searching algorithm, -Algorithmica 2, pp. 195-208 (1987). - -The online algorithm in OnlineConcaveMinima is from Galil and Park, -A linear time algorithm for concave one-dimensional dynamic programming, -manuscript, 1989, which simplifies earlier work on the same problem -by Wilbur (J. Algorithms 1988) and Eppstein (J. Algorithms 1990). - -D. Eppstein, March 2002, significantly revised August 2005 - -|# - -(provide smawky? make-ocm reduce reduce2 (prefix-out ocm- (combine-out min-value min-index))) - -(define (select-elements xs is) - (map (curry list-ref xs) is)) - -(define (odd-elements xs) - (select-elements xs (range 1 (length xs) 2))) - -(define (vector-odd-elements xs) - (for/vector ([i (in-range (vector-length xs))] #:when (odd? i)) - (vector-ref xs i))) - -(define (even-elements xs) - (select-elements xs (range 0 (length xs) 2))) - -;; Wrapper for the matrix procedure -;; that automatically maintains a hash cache of previously-calculated values -;; because the minima operations tend to hit the same values. -;; Assuming here that (matrix i j) is invariant -;; and that the matrix function is more expensive than the cache lookup. - - - -(define-syntax-rule (vector-append-item xs value) - (vector-append xs (vector value))) - -(define-syntax-rule (vector-set vec idx val) - (begin - (vector-set! vec idx val) - vec)) - -(define-syntax-rule (vector-cdr vec) - (vector-drop vec 1)) - -(define-syntax-rule (vector-empty? vec) - (= 0 (vector-length vec))) - - -(define (integers? x) (and (list? x) (andmap integer? x))) - -;; Reduce phase: make number of rows at most equal to number of cols -(define (reduce row-indices col-indices matrix-proc entry->value) - ;(vector? vector? procedure? procedure? . -> . vector?) - (log-ocm-debug "starting reduce phase with") - (log-ocm-debug "row-indices = ~a" row-indices) - (log-ocm-debug "col-indices = ~a" col-indices) - (define (process-stack stack row-idx) - (log-ocm-debug "row stack = ~a" stack) - (let ([last-stack-idx (sub1 (vector-length stack))]) - (cond - [(and (>= (vector-length stack) 1) - (log-ocm-debug "comparing row values at column ~a" (vector-ref col-indices last-stack-idx)) - (log-ocm-debug "end of row stack (~a) value at column ~a = ~a" (vector-ref stack last-stack-idx) (vector-ref col-indices last-stack-idx) (entry->value (matrix-proc (vector-ref stack last-stack-idx) (vector-ref col-indices last-stack-idx)))) - (log-ocm-debug "challenger row (~a) value at column ~a = ~a" row-idx (vector-ref col-indices last-stack-idx) (entry->value (matrix-proc row-idx (vector-ref col-indices last-stack-idx)))) - (> (entry->value (matrix-proc (vector-ref stack last-stack-idx) (vector-ref col-indices last-stack-idx))) - (entry->value (matrix-proc row-idx (vector-ref col-indices last-stack-idx))))) - - (log-ocm-debug "challenger row (~a) wins with a new minimum ~a, so end of row stack (~a) is removed" row-idx (entry->value (matrix-proc row-idx (vector-ref col-indices last-stack-idx))) (vector-ref stack last-stack-idx)) - (process-stack (vector-drop-right stack 1) row-idx)] - [else - (log-ocm-debug (if (< (vector-length stack) 1) - (format "row stack too short for challenge, pushing row ~a" row-idx) - (format "challenger row (~a) loses to end of row stack (~a), so ~a joins stack" row-idx (vector-ref stack last-stack-idx) row-idx))) - stack]))) - - (define reduced-row-indexes - (for/fold ([stack (vector)]) ([row-idx (in-vector row-indices)]) - (let ([stack (process-stack stack row-idx)]) - (if (= (vector-length stack) (vector-length col-indices)) - stack - (vector-append stack (vector row-idx)))))) - (log-ocm-debug "finished reduce. row indexes = ~v" reduced-row-indexes) - reduced-row-indexes) - - -(define (reduce2 row-indices col-indices matrix-proc entry->value) - (let find-survivors ([rows row-indices][survivors empty]) - (cond - [(vector-empty? rows) (list->vector (reverse survivors))] - [else - (define challenger-row (vector-ref rows 0)) - (cond - ;; no survivors yet, so push first row and keep going - [(empty? survivors) (find-survivors (vector-cdr rows) (cons challenger-row survivors))] - [else - (define index-of-last-survivor (sub1 (length survivors))) - (define col-head (vector-ref col-indices index-of-last-survivor)) - (define-syntax-rule (test-function r) (entry->value (matrix-proc r col-head))) - (cond - ;; this is the challenge: is the head cell of challenger a new minimum? - ;; use < not <=, so the recorded winner is the earliest row with the new minimum, not the latest row - ;; if yes, challenger wins. pop element from stack, and let challenger try again (= leave rows alone) - [(< (test-function challenger-row) (test-function (car survivors))) (find-survivors rows (cdr survivors))] - - ;; if not, challenger lost. - ;; If we're in the last column, ignore the loser by recurring on the same values - [(= col-head (vector-last col-indices)) (find-survivors (vector-cdr rows) survivors)] - - ;; otherwise challenger lost and we're not in last column, - ;; so add challenger to survivor stack - [else (find-survivors (vector-cdr rows) (cons challenger-row survivors))])])]))) - - - -(define (make-minimum value row-idx) - (define ht (make-hash)) - (! ht 'value value) - (! ht 'row-idx row-idx) - ht) - -;; Interpolate phase: in the minima hash, add results for even rows - -(define-syntax-rule (vector-last v) - (vector-ref v (sub1 (vector-length v)))) - -(define (interpolate minima row-indices col-indices matrix-proc entry->value) - ;(hash? vector? vector? procedure? procedure? . -> . hash?) - (for ([col-idx (in-range 0 (vector-length col-indices) 2)]) ;; even-col-indices - (define col (vector-ref col-indices col-idx)) - (define idx-of-last-row - (if (= col-idx (sub1 (vector-length col-indices))) - (vector-last row-indices) - (: (hash-ref minima (vector-ref col-indices (add1 col-idx))) 'row-idx))) - - (define smallest-value-entry - (vector-argmin (compose1 entry->value car) - (for/vector ([row-idx (in-list (dropf-right (vector->list row-indices) (negate (curry = idx-of-last-row))))]) - (list (matrix-proc row-idx col) row-idx)))) - - (! minima col (apply make-minimum smallest-value-entry))) - minima) - -(define (interpolate2 minima row-indices col-indices matrix-proc entry->value) - (define idx-of-last-col (sub1 (vector-length col-indices))) - (define (smallest-value-entry col idx-of-last-row) - (argmin (compose1 entry->value car) - (for/list ([row-idx (stop-after (in-vector row-indices) (curry = idx-of-last-row))]) - (list (matrix-proc row-idx col) row-idx)))) - - (for ([(col col-idx) (in-indexed col-indices)] #:when (even? col-idx)) - (define idx-of-last-row (if (= col-idx idx-of-last-col) - (vector-last row-indices) - (: (hash-ref minima (vector-ref col-indices (add1 col-idx))) 'row-idx))) - (! minima col (apply make-minimum (smallest-value-entry col idx-of-last-row)))) - minima) - - -#| - Search for the minimum value in each column of a matrix. - The return value is a dictionary mapping ColIndices to pairs - (value,rowindex). We break ties in favor of earlier rows. - - The matrix is defined implicitly as a function, passed - as the third argument to this routine, where Matrix(i,j) - gives the matrix value at row index i and column index j. - The matrix must be concave, that is, satisfy the property - Matrix(i,j) > Matrix(i',j) => Matrix(i,j') > Matrix(i',j') - for every ivalue identity]) - ;((vector?) ((or/c #f vector?) procedure? procedure?) . ->* . hash?) - (define reduce-proc reduce2) - (define interpolate-proc interpolate2) - (if (= 0 (vector-length col-indices)) - (make-hash) - (let ([row-indices (reduce-proc row-indices col-indices matrix-proc entry->value)]) - (define odd-column-minima (concave-minima row-indices (vector-odd-elements col-indices) matrix-proc entry->value)) - (interpolate-proc odd-column-minima row-indices col-indices matrix-proc entry->value)))) - - -#| - Online concave minimization algorithm of Galil and Park. - - OnlineConcaveMinima(Matrix,initial) creates a sequence of pairs - (self.value(j),self.index(j)), where - self.value(0) = initial, - self.value(j) = min { Matrix(i,j) | i < j } for j > 0, - and where self.index(j) is the value of j that provides the minimum. - Matrix(i,j) must be concave, in the same sense as for ConcaveMinima. - - We never call Matrix(i,j) until value(i) has already been computed, - so that the Matrix function may examine previously computed values. - Calling value(i) for an i that has not yet been computed forces - the sequence to be continued until the desired index is reached. - Calling iter(self) produces a sequence of (value,index) pairs. - - Matrix(i,j) should always return a value, rather than raising an - exception, even for j larger than the range we expect to compute. - If j is out of range, a suitable value to return that will not - violate concavity is Matrix(i,j) = -i. It will not work correctly - to return a flag value such as None for large j, because the ties - formed by the equalities among such flags may violate concavity. -|# - -;; Online Concave Minima object -;(struct $ocm (values indices finished matrix-proc base tentative) #:transparent #:mutable) - -;; State used by self.value(), self.index(), and iter(self) = -;; $ocm-values, $ocm-indices, $ocm-finished - -#| -State used by the internal algorithm: -$ocm-matrix, $ocm-base, $ocm-tentative - -We allow self._values to be nonempty for indices > finished, -keeping invariant that -(1) self._values[i] = Matrix(self._indices[i], i), -(2) if the eventual correct value of self.index(i) < base, - then self._values[i] is nonempty and correct. - -In addition, we keep a column index self._tentative, such that -(3) if i <= tentative, and the eventual correct value of - self.index(i) <= finished, then self._values[i] is correct. -|# - -(define no-value 'none) - -(define-syntax-rule (: hashtable key) - (hash-ref hashtable key)) - -(define-syntax-rule (! hashtable key value) - (hash-set! hashtable key value)) - -(define-syntax-rule (ocm-ref ocm key) - (vector-ref ocm key)) - -(define-syntax-rule (ocm-set! ocm key value) - (vector-set! ocm key value)) - -(define o:min-values 0) -(define o:min-row-indices 1) -(define o:finished 2) -(define o:matrix-proc 3) -(define o:entry->value 4) -(define o:base 5) -(define o:tentative 6) - -(define (make-ocm matrix-proc [initial-value 0][entry->value identity]) - (log-ocm-debug "making new ocm") - (define ocm (make-vector 7)) - (ocm-set! ocm o:min-values (vector initial-value)) - (ocm-set! ocm o:min-row-indices (vector no-value)) - (ocm-set! ocm o:finished 0) - (ocm-set! ocm o:matrix-proc (make-caching-proc matrix-proc)) - (ocm-set! ocm o:entry->value entry->value) ; for converting matrix values to an integer - (ocm-set! ocm o:base 0) - (ocm-set! ocm o:tentative 0) - ocm) - - -;; Return min { Matrix(i,j) | i < j }. -(define (min-value ocm j) - (if (< (ocm-ref ocm o:finished) j) - (begin (advance! ocm) (min-value ocm j)) - (vector-ref (ocm-ref ocm o:min-values) j))) - -;; Return argmin { Matrix(i,j) | i < j }. -(define (min-index ocm j) - (if (< (ocm-ref ocm o:finished) j) - (begin (advance! ocm) (min-index ocm j)) - (vector-ref (ocm-ref ocm o:min-row-indices) j))) - -;; Finish another value,index pair. -(define (advance! ocm) - (define next (add1 (ocm-ref ocm o:finished))) - (log-ocm-debug "advance! ocm to next = ~a" (add1 (ocm-ref ocm o:finished))) - (cond - ;; First case: we have already advanced past the previous tentative - ;; value. We make a new tentative value by applying ConcaveMinima - ;; to the largest square submatrix that fits under the base. - [(> next (ocm-ref ocm o:tentative)) - (log-ocm-debug "advance: first case because next (~a) > tentative (~a)" next (ocm-ref ocm o:tentative)) - (define rows (list->vector (range (ocm-ref ocm o:base) next))) - (ocm-set! ocm o:tentative (+ (ocm-ref ocm o:finished) (vector-length rows))) - (define cols (list->vector (range next (add1 (ocm-ref ocm o:tentative))))) - (define minima (concave-minima rows cols (ocm-ref ocm o:matrix-proc) (ocm-ref ocm o:entry->value))) - (for ([col (in-vector cols)]) - (cond - [(>= col (vector-length (ocm-ref ocm o:min-values))) - (ocm-set! ocm o:min-values (vector-append-item (ocm-ref ocm o:min-values) (: (: minima col) 'value))) - (ocm-set! ocm o:min-row-indices (vector-append-item (ocm-ref ocm o:min-row-indices) (: (: minima col) 'row-idx)))] - [(< ((ocm-ref ocm o:entry->value) (: (: minima col) 'value)) ((ocm-ref ocm o:entry->value) (vector-ref (ocm-ref ocm o:min-values) col))) - (ocm-set! ocm o:min-values (vector-set (ocm-ref ocm o:min-values) col (: (: minima col) 'value))) - (ocm-set! ocm o:min-row-indices (vector-set (ocm-ref ocm o:min-row-indices) col (: (: minima col) 'row-idx)))])) - (ocm-set! ocm o:finished next)] - - [else - ;; Second case: the new column minimum is on the diagonal. - ;; All subsequent ones will be at least as low, - ;; so we can clear out all our work from higher rows. - ;; As in the fourth case, the loss of tentative is - ;; amortized against the increase in base. - (define diag ((ocm-ref ocm o:matrix-proc) (sub1 next) next)) - (cond - [(< ((ocm-ref ocm o:entry->value) diag) ((ocm-ref ocm o:entry->value) (vector-ref (ocm-ref ocm o:min-values) next))) - (log-ocm-debug "advance: second case because column minimum is on the diagonal") - (ocm-set! ocm o:min-values (vector-set (ocm-ref ocm o:min-values) next diag)) - (ocm-set! ocm o:min-row-indices (vector-set (ocm-ref ocm o:min-row-indices) next (sub1 next))) - (ocm-set! ocm o:base (sub1 next)) - (ocm-set! ocm o:tentative next) - (ocm-set! ocm o:finished next)] - - ;; Third case: row i-1 does not supply a column minimum in - ;; any column up to tentative. We simply advance finished - ;; while maintaining the invariant. - [(>= ((ocm-ref ocm o:entry->value) ((ocm-ref ocm o:matrix-proc) (sub1 next) (ocm-ref ocm o:tentative))) - ((ocm-ref ocm o:entry->value) (vector-ref (ocm-ref ocm o:min-values) (ocm-ref ocm o:tentative)))) - (log-ocm-debug "advance: third case because row i-1 does not suppply a column minimum") - (ocm-set! ocm o:finished next)] - - ;; Fourth and final case: a new column minimum at self._tentative. - ;; This allows us to make progress by incorporating rows - ;; prior to finished into the base. The base invariant holds - ;; because these rows cannot supply any later column minima. - ;; The work done when we last advanced tentative (and undone by - ;; this step) can be amortized against the increase in base. - [else - (log-ocm-debug "advance: fourth case because new column minimum") - (ocm-set! ocm o:base (sub1 next)) - (ocm-set! ocm o:tentative next) - (ocm-set! ocm o:finished next)])])) - -(define (print ocm) - (displayln (ocm-ref ocm o:min-values)) - (displayln (ocm-ref ocm o:min-row-indices))) - -(define (smawky? m) - (define (position-of-minimum xs) - ;; put each element together with its list index - (let ([xs (map cons (range (length xs)) xs)]) - ;; find the first one with the min value, and grab the list index - (car (argmin cdr (filter (compose1 not negative? cdr) xs))))) - ;; tests if penalty matrix is monotone for non-negative values. - (define increasing-minima? (apply <= (map position-of-minimum m))) - (define monotone? - (for*/and ([ridx (in-range 1 (length m))] - [cidx (in-range (sub1 (length (car m))))]) - (let* ([prev-row (list-ref m (sub1 ridx))] - [row (list-ref m ridx)] - [a (list-ref prev-row cidx)] - [b (list-ref prev-row (add1 cidx))] - [c (list-ref row cidx)] - [d (list-ref row (add1 cidx))]) - (if (andmap (compose1 not negative?) (list a b c d)) ;; smawk disregards negative values - (cond - [(< c d) (if (< a b) #t (error (format "Submatrix ~a not monotone in ~a" (list (list a b) (list c d)) m)))] - [(= c d) (if (<= a b) #t (error (format "Submatrix ~a not monotone in ~a" (list (list a b) (list c d)) m)))] - [else #t]) - #t)))) - (and increasing-minima? monotone?)) - - -(module+ test - - (require rackunit) - - - (define m '((25 42 57 78 90 103 123 142 151) - (21 35 48 65 76 85 105 123 130) - (13 26 35 51 58 67 86 100 104) - (10 20 28 42 48 56 75 86 88) - (20 29 33 44 49 55 73 82 80) - (13 21 24 35 39 44 59 65 59) - (19 25 28 38 42 44 57 61 52) - (35 37 40 48 48 49 62 62 49) - (37 36 37 42 39 39 51 50 37) - (41 39 37 42 35 33 44 43 29) - (58 56 54 55 47 41 50 47 29) - (66 64 61 61 51 44 52 45 24) - (82 76 72 70 56 49 55 46 23) - (99 91 83 80 63 56 59 46 20) - (124 116 107 100 80 71 72 58 28) - (133 125 113 106 86 75 74 59 25) - (156 146 131 120 97 84 80 65 31) - (178 164 146 135 110 96 92 73 39))) - (define m2 (apply map list m)) - (check-true (smawky? m)) - (check-true (smawky? m2)) - ;; proc must return a value even for out-of-bounds i and j - (define (simple-proc i j) (with-handlers [(exn:fail? (λ(exn) (* -1 i)))] - (list-ref (list-ref m i) j))) - (define (simple-proc2 i j) (with-handlers [(exn:fail? (λ(exn) (* -1 i)))] - (list-ref (list-ref m2 i) j))) - (check-equal? (simple-proc 0 2) 57) ; 0th row, 2nd col - (check-equal? (simple-proc2 2 0) 57) ; flipped - (define o (make-ocm simple-proc)) - (define row-indices (list->vector (range (length m)))) - (define col-indices (list->vector (range (length (car m))))) - (define result (concave-minima row-indices col-indices simple-proc identity)) - (check-equal? - (for/list ([j (in-vector col-indices)]) - (define h (hash-ref result j)) - (list (hash-ref h 'value) (hash-ref h 'row-idx))) - '((10 3) (20 3) (24 5) (35 5) (35 9) (33 9) (44 9) (43 9) (20 13))) ; checked against SMAWK.py - (check-equal? - (for/list ([j (in-vector col-indices)]) - (list (min-value o j) (min-index o j))) - '((0 none) (42 0) (48 1) (51 2) (48 3) (55 4) (59 5) (61 6) (49 7))) ; checked against SMAWK.py - - (define o2 (make-ocm simple-proc2)) - (define row-indices2 (list->vector (range (length m2)))) - (define col-indices2 (list->vector (range (length (car m2))))) - (define result2 (concave-minima row-indices2 col-indices2 simple-proc2 identity)) - (check-equal? - (for/list ([j (in-vector col-indices2)]) - (define h (hash-ref result2 j)) - (list (hash-ref h 'value) (hash-ref h 'row-idx))) - '((25 0) (21 0) (13 0) (10 0) (20 0) (13 0) (19 0) (35 0) (36 1) (29 8) (29 8) (24 8) (23 8) (20 8) (28 8) (25 8) (31 8) (39 8))) ; checked against SMAWK.py - (check-equal? - (for/list ([j (in-vector col-indices2)]) - (list (min-value o2 j) (min-index o2 j))) - '((0 none) (21 0) (13 0) (10 0) (20 0) (13 0) (19 0) (35 0) (36 1) (29 8) (-9 9) (-10 10) (-11 11) (-12 12) (-13 13) (-14 14) (-15 15) (-16 16))) ; checked against SMAWK.py - - ) \ No newline at end of file diff --git a/quad/quad/old-master/py/SMAWK.py b/quad/quad/old-master/py/SMAWK.py deleted file mode 100644 index 0bf770e7..00000000 --- a/quad/quad/old-master/py/SMAWK.py +++ /dev/null @@ -1,192 +0,0 @@ -"""SMAWK.py - -Totally monotone matrix searching algorithms. - -The offline algorithm in ConcaveMinima is from Agarwal, Klawe, Moran, -Shor, and Wilbur, Geometric applications of a matrix searching algorithm, -Algorithmica 2, pp. 195-208 (1987). - -The online algorithm in OnlineConcaveMinima is from Galil and Park, -A linear time algorithm for concave one-dimensional dynamic programming, -manuscript, 1989, which simplifies earlier work on the same problem -by Wilbur (J. Algorithms 1988) and Eppstein (J. Algorithms 1990). - -D. Eppstein, March 2002, significantly revised August 2005 -""" - -def ConcaveMinima(RowIndices,ColIndices,Matrix): - """ - Search for the minimum value in each column of a matrix. - The return value is a dictionary mapping ColIndices to pairs - (value,rowindex). We break ties in favor of earlier rows. - - The matrix is defined implicitly as a function, passed - as the third argument to this routine, where Matrix(i,j) - gives the matrix value at row index i and column index j. - The matrix must be concave, that is, satisfy the property - Matrix(i,j) > Matrix(i',j) => Matrix(i,j') > Matrix(i',j') - for every i= 1 and \ - Matrix(stack[-1], ColIndices[len(stack)-1]) \ - > Matrix(r, ColIndices[len(stack)-1]): - stack.pop() - if len(stack) != len(ColIndices): - stack.append(r) - RowIndices = stack - - # Recursive call to search for every odd column - minima = ConcaveMinima(RowIndices, - [ColIndices[i] for i in range(1,len(ColIndices),2)], - Matrix) - - # Go back and fill in the even rows - r = 0 - for c in range(0,len(ColIndices),2): - col = ColIndices[c] - row = RowIndices[r] - if c == len(ColIndices) - 1: - lastrow = RowIndices[-1] - else: - lastrow = minima[ColIndices[c+1]][1] - pair = (Matrix(row,col),row) - while row != lastrow: - r += 1 - row = RowIndices[r] - pair = min(pair,(Matrix(row,col),row)) - minima[col] = pair - - return minima - -class OnlineConcaveMinima: - """ - Online concave minimization algorithm of Galil and Park. - - OnlineConcaveMinima(Matrix,initial) creates a sequence of pairs - (self.value(j),self.index(j)), where - self.value(0) = initial, - self.value(j) = min { Matrix(i,j) | i < j } for j > 0, - and where self.index(j) is the value of j that provides the minimum. - Matrix(i,j) must be concave, in the same sense as for ConcaveMinima. - - We never call Matrix(i,j) until value(i) has already been computed, - so that the Matrix function may examine previously computed values. - Calling value(i) for an i that has not yet been computed forces - the sequence to be continued until the desired index is reached. - Calling iter(self) produces a sequence of (value,index) pairs. - - Matrix(i,j) should always return a value, rather than raising an - exception, even for j larger than the range we expect to compute. - If j is out of range, a suitable value to return that will not - violate concavity is Matrix(i,j) = -i. It will not work correctly - to return a flag value such as None for large j, because the ties - formed by the equalities among such flags may violate concavity. - """ - - def __init__(self,Matrix,initial): - """Initialize a OnlineConcaveMinima object.""" - - # State used by self.value(), self.index(), and iter(self) - self._values = [initial] # tentative solution values... - self._indices = [None] # ...and their indices - self._finished = 0 # index of last non-tentative value - - # State used by the internal algorithm - # - # We allow self._values to be nonempty for indices > finished, - # keeping invariant that - # (1) self._values[i] = Matrix(self._indices[i], i), - # (2) if the eventual correct value of self.index(i) < base, - # then self._values[i] is nonempty and correct. - # - # In addition, we keep a column index self._tentative, such that - # (3) if i <= tentative, and the eventual correct value of - # self.index(i) <= finished, then self._values[i] is correct. - # - self._matrix = Matrix - self._base = 0 - self._tentative = 0 - - def __str__(self): - return "%s" % self._values - - def __iter__(self): - """Loop through (value,index) pairs.""" - i = 0 - while True: - yield self.value(i),self.index(i) - i += 1 - - def value(self,j): - """Return min { Matrix(i,j) | i < j }.""" - while self._finished < j: - self._advance() - return self._values[j] - - def index(self,j): - """Return argmin { Matrix(i,j) | i < j }.""" - while self._finished < j: - self._advance() - return self._indices[j] - - def _advance(self): - """Finish another value,index pair.""" - # First case: we have already advanced past the previous tentative - # value. We make a new tentative value by applying ConcaveMinima - # to the largest square submatrix that fits under the base. - i = self._finished + 1 - if i > self._tentative: - rows = range(self._base,self._finished+1) - self._tentative = self._finished+len(rows) - cols = range(self._finished+1,self._tentative+1) - minima = ConcaveMinima(rows,cols,self._matrix) - for col in cols: - if col >= len(self._values): - self._values.append(minima[col][0]) - self._indices.append(minima[col][1]) - elif minima[col][0] < self._values[col]: - self._values[col],self._indices[col] = minima[col] - self._finished = i - return - - # Second case: the new column minimum is on the diagonal. - # All subsequent ones will be at least as low, - # so we can clear out all our work from higher rows. - # As in the fourth case, the loss of tentative is - # amortized against the increase in base. - diag = self._matrix(i-1,i) - if diag < self._values[i]: - self._values[i] = diag - self._indices[i] = self._base = i-1 - self._tentative = self._finished = i - return - - # Third case: row i-1 does not supply a column minimum in - # any column up to tentative. We simply advance finished - # while maintaining the invariant. - if self._matrix(i-1,self._tentative) >= self._values[self._tentative]: - self._finished = i - return - - # Fourth and final case: a new column minimum at self._tentative. - # This allows us to make progress by incorporating rows - # prior to finished into the base. The base invariant holds - # because these rows cannot supply any later column minima. - # The work done when we last advanced tentative (and undone by - # this step) can be amortized against the increase in base. - self._base = i-1 - self._tentative = self._finished = i - return \ No newline at end of file diff --git a/quad/quad/old-master/py/SMAWK.pyc b/quad/quad/old-master/py/SMAWK.pyc deleted file mode 100644 index 1ccfb4ef..00000000 Binary files a/quad/quad/old-master/py/SMAWK.pyc and /dev/null differ diff --git a/quad/quad/old-master/py/smawktest.py b/quad/quad/old-master/py/smawktest.py deleted file mode 100644 index cba897a7..00000000 --- a/quad/quad/old-master/py/smawktest.py +++ /dev/null @@ -1,66 +0,0 @@ -import SMAWK - -m1 = [ -[25, 42, 57, 78, 90, 103, 123, 142, 151], -[21, 35, 48, 65, 76, 85, 105, 123, 130], -[13, 26, 35, 51, 58, 67, 86, 100, 104], -[10, 20, 28, 42, 48, 56, 75, 86, 88], -[20, 29, 33, 44, 49, 55, 73, 82, 80], -[13, 21, 24, 35, 39, 44, 59, 65, 59], -[19, 25, 28, 38, 42, 44, 57, 61, 52], -[35, 37, 40, 48, 48, 49, 62, 62, 49], -[37, 36, 37, 42, 39, 39, 51, 50, 37], -[41, 39, 37, 42, 35, 33, 44, 43, 29], -[58, 56, 54, 55, 47, 41, 50, 47, 29], -[66, 64, 61, 61, 51, 44, 52, 45, 24], -[82, 76, 72, 70, 56, 49, 55, 46, 23], -[99, 91, 83, 80, 63, 56, 59, 46, 20], -[124, 116, 107, 100, 80, 71, 72, 58, 28], -[133, 125, 113, 106, 86, 75, 74, 59, 25], -[156, 146, 131, 120, 97, 84, 80, 65, 31], -[178, 164, 146, 135, 110, 96, 92, 73, 39]] - - -num_rows = len(m1) -row_indices = range(num_rows) -num_cols = len(m1[0]) -col_indices = range(num_cols) - - -def matrix_func1(i, j): - try: - return m1[i][j] - except: - return -1 * i - -def matrix_func2(i, j): - try: - return m1[j][i] - except: - return -1 * i - - -cm_hash = SMAWK.ConcaveMinima(row_indices, col_indices, matrix_func1) -cm_hash2 = SMAWK.ConcaveMinima(col_indices, row_indices, matrix_func2) - -print cm_hash2 - -''' -{0: (10, 3), 1: (20, 3), 2: (24, 5), 3: (35, 5), 4: (35, 9), 5: (33, 9), 6: (44, 9), 7: (43, 9), 8: (20, 13)} -''' - -ocm = SMAWK.OnlineConcaveMinima(matrix_func1, 0) -ocm2 = SMAWK.OnlineConcaveMinima(matrix_func2, 0) - -ocm_hash = dict() -for j in col_indices: - ocm_hash[j] = (ocm.value(j), ocm.index(j)) - -ocm_hash2 = dict() -for j in row_indices: - ocm_hash2[j] = (ocm2.value(j), ocm2.index(j)) - -print ocm_hash2 - -''' -{0: (0, None), 1: (42, 0), 2: (48, 1), 3: (51, 2), 4: (48, 3), 5: (55, 4), 6: (59, 5), 7: (61, 6), 8: (49, 7)}''' \ No newline at end of file diff --git a/quad/quad/old-master/quads.rkt b/quad/quad/old-master/quads.rkt deleted file mode 100644 index 028f8a55..00000000 --- a/quad/quad/old-master/quads.rkt +++ /dev/null @@ -1,239 +0,0 @@ -#lang racket/base -(require (for-syntax racket/base racket/syntax racket/string) racket/string racket/contract racket/serialize sugar/list racket/format racket/list sugar/debug sugar/coerce racket/bool racket/function sugar/unstable/string) -(require "world.rkt") -(provide (all-defined-out)) - -;; struct implementation - -(serializable-struct quad (name attrs list) #:transparent - #:methods gen:custom-write - [(define write-proc (λ(b port mode) - (display (format "(~a)" (string-join (filter-not void? (list - (~a (quad-name b)) - (if (and (hash? (quad-attrs b)) (> (length (hash-keys (quad-attrs b))) 0)) (~v (flatten (hash->list (quad-attrs b)))) "#f") - (if (> (length (quad-list b)) 0) (~a (string-join (map ~v (quad-list b)) " ")) (void)))) " ")) port)))] - #:property prop:sequence (λ(q) (quad-list q))) - - - -;; vector implementation -#| -(define (quad-name q) (vector-ref q 0)) -(define (quad-attrs q) (vector-ref q 1)) -(define (quad-list q) (vector-ref q 2)) - -(define (quad? x) - (and (vector? x) - (symbol? (quad-name x)) - (or (false? (quad-attrs x)) (hash? (quad-attrs x))) - (list? (quad-list x)))) - -(define (quad name attrs xs) - (vector name attrs xs)) -|# -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -;; hash implementation -#| -(define (quad-name q) (hash-ref q 'name)) -(define (quad-attrs q) (hash-ref q 'attrs)) -(define (quad-list q) (hash-ref q 'list)) - -(define (quad? x) - (and (hash? x) - (andmap (λ(k) (hash-has-key? x k)) (list 'name 'attrs 'list)) - (symbol? (quad-name x)) - (ormap (λ(pred) (pred (quad-attrs x))) (list false? hash?)) - (list? (quad-list x)))) - -(define (quad name attrs xs) - (hash 'name name 'attrs attrs 'list xs)) -|# - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -(define (quad-name? x) (symbol? x)) -(define (hashable-list? x) (and (list? x) (even? (length x)))) -(define (quad-attrs? x) (or (false? x) (hash? x))) -(define (quad-list? x) (and (list? x) (andmap (λ(xi) (or (quad? xi) (and (string? xi) (< 0 (string-length xi))))) x))) -(define (quads? x) (and (list? x) (andmap quad? x))) -(define (lists-of-quads? x) (and (list? x) (andmap quads? x))) - -(define quad= equal?) - -(define token? quad?) - -(define (quad/c x) (λ(x) (and (quad? x) (symbol? (quad-name x)) (hash? (quad-attrs x)) - (andmap (λ(xi) (or (quad/c xi) (string? xi))) (quad-list x))))) - -(define quad-attr-ref - (case-lambda - [(q key) - (if (quad-attrs q) - (hash-ref (quad-attrs q) key) - (error 'quad-attr-ref (format "no attrs in quad ~a" q)))] - [(q key default) - (if (quad-attrs q) - (hash-ref (quad-attrs q) key default) - default)])) - -(define-syntax (quad-attr-ref/parameter stx) - (syntax-case stx () - [(_ q key) - (with-syntax ([world:key-default (format-id stx "~a-default" (string-trim (symbol->string (syntax->datum #'key)) "-key"))]) - #'(quad-attr-ref q key (world:key-default)))])) - - -(define (quad-has-attr? q key) - (define qa (quad-attrs q)) - (and qa (hash-has-key? qa key))) - -(define-syntax (define-quad-list-function stx) - (syntax-case stx () - [(_ proc) - (with-syntax ([quad-proc (format-id stx "quad-~a" #'proc)]) - #'(define (quad-proc q) (proc (quad-list q))))])) - -(define-quad-list-function first) -(define-quad-list-function car) -(define-quad-list-function cdr) -(define-quad-list-function last) -(define (quad-cons item q) - (quad (quad-name q) (quad-attrs q) (cons item (quad-list q)))) - -(define-syntax-rule (quad-ref q r) - (list-ref (quad-list q) r)) - -(define (quad-ends-with? q str) - (quad? string? . -> . boolean?) - (cond - [(not (empty? (quad-list q))) - (define last-item (last (quad-list q))) - (cond - [(string? last-item) (ends-with? last-item str)] - [(quad? last-item) (quad-ends-with? last-item str)])] - [else #f])) - - -(define (quad-append q new-item) - (quad? (or/c quad? string?) . -> . quad?) - (quad (quad-name q) (quad-attrs q) (append (quad-list q) (list new-item)))) - -(define (quad->string x) - (quad? . -> . string?) - (cond - [(quad? x) (string-append* (map quad->string (quad-list x)))] - [(string? x) x] - [else ""])) - -(define-syntax-rule (report-quadstring q) - (begin - (report (quad->string q) 'q) - q)) - -(define cannot-be-common-attrs '(width x y page)) ;; todo: how to specify these better? this-* prefix? - -;; make this a macro because qs-in is often huge -;; and the macro avoids allocation + garbage collection -(define attr-missing (gensym)) -(define (gather-common-attrs qs) - (let loop ([qs qs] - [common-attrs (if (quad-attrs (car qs)) - (for/list ([kv-pair (in-hash-pairs (quad-attrs (car qs)))] - #:unless (member (car kv-pair) cannot-be-common-attrs)) - kv-pair) - empty)]) - (cond - [(empty? common-attrs) empty] - [(empty? qs) (flatten common-attrs)] - [else (loop (cdr qs) - (filter (λ(ca) (equal? (quad-attr-ref (car qs) (car ca) attr-missing) (cdr ca))) - common-attrs))]))) - - -(define-syntax (define-box-type stx) - (syntax-case stx () - [(_ id) - (with-syntax ([id? (format-id #'id "~a?" #'id)] - [ids? (format-id #'id "~as?" #'id)] - [lists-of-ids? (format-id #'id "list-of-~as?" #'id)] - [quads->id (format-id #'id "quads->~a" #'id)] - [inline/quads->id (format-id #'id "inline/quads->~a" #'id)]) - #'(begin - ;; quad predicate - ok to be relaxed here if we're strict when making the struct - (define (id? x) - (and (quad? x) (equal? (quad-name x) 'id))) - ;; quad constructor - ;; put contract here rather than on struct, because this is the main interface - ;; and this contract is more liberal. - ;; but don't put a separate contract on struct, because it's superfluous. - (define (id [attrs empty] . xs) - (() ((or/c quad-attrs? hashable-list?)) #:rest quad-list? . ->* . id?) - (quad 'id (and attrs (if (hash? attrs) attrs (apply hash attrs))) xs)) - ;; quad list predicate and list-of-list predicate. - ;; These are faster than the listof contract combinator. - (define (ids? x) - (and (list? x) (andmap id? x))) - (define (lists-of-ids? x) - (and (list? x) (andmap ids? x))) - ;; quad converter macro - (define (quads->id qs) - (apply id (gather-common-attrs qs) qs))))])) - - -;; do not treat empty string as whitespace. -;; throws off tests that rely on adjacency to positive whitespace. -(define (whitespace? x [nbsp? #f]) - ((any/c)(boolean?) . ->* . coerce/boolean?) - (cond - [(quad? x) (whitespace? (quad-list x) nbsp?)] - [(string? x) (or (and (regexp-match #px"\\p{Zs}" x) ; Zs = unicode whitespace category - (or nbsp? (not (regexp-match #px"\u00a0" x)))))] ; 00a0: nbsp - [(list? x) (and (not (empty? x)) (andmap (curryr whitespace? nbsp?) x))] ; andmap returns #t for empty lists - [else #f])) - -(define (whitespace/nbsp? x) - (whitespace? x #t)) - - -(define-syntax (define-break-type stx) - (syntax-case stx () - [(_ id) - (with-syntax ([split-on-id-breaks (format-id #'id "split-on-~a-breaks" #'id)] - [id-break (format-id #'id "~a-break" #'id)] - [id-break? (format-id #'id "~a-break?" #'id)] - [multi-id (format-id #'id "multi~a" #'id)] - [multi-id? (format-id #'id "multi~a?" #'id)] - [quads->multi-id (format-id #'id "quads->multi~a" #'id)]) - #'(begin - (define-box-type id) - (define-box-type id-break) - (define-box-type multi-id) - ;; breaker - (define (split-on-id-breaks x) - (quads? . -> . lists-of-quads?) - ;; omit leading & trailing whitespace, because they're superfluous next to a break - (map (curryr trimf whitespace?) (filter-split x id-break?)))))])) - -(define-box-type box) - -(define-break-type word) -(define (word-string c) (car (quad-list c))) - -(define-box-type spacer) -(define-box-type kern) -(define-box-type optical-kern) -(define-box-type flag) -(define-box-type doc) -(define-box-type input) -(define-box-type piece) -(define-box-type run) - -(define-break-type page) -(define-break-type column) -(define-break-type block) -(define-break-type line) - -(define (->input q) (input empty q)) -(define coerce/input? (make-coercion-contract input)) - diff --git a/quad/quad/old-master/quick-sample.rkt b/quad/quad/old-master/quick-sample.rkt deleted file mode 100644 index 9cc33a0a..00000000 --- a/quad/quad/old-master/quick-sample.rkt +++ /dev/null @@ -1,6 +0,0 @@ -#lang typed/racket/base/no-check -(require "quads.rkt" racket/file racket/string racket/function racket/list racket/include) -(provide quick-sample) - -(define quick-sample - (block '(measure 480.0 font "Times New Roman" leading 16.0 vmeasure 300.0 size 13.5 x-align justify x-align-last-line left) (box '(width 15.0)) (block '() (block '(weight bold) "Hot " (word '(size 22.0) "D") "ang, My Fellow Americans.") " This " (block '(no-break #t) "is some truly") " nonsense generated from my typesetting system, which is called Quad. I’m writing this in a source file in DrRacket. When I click [Run], a PDF pops out. Not bad\u200a—\u200aand no LaTeX needed. Quad, however, does use the fancy linebreaking algorithm developed for TeX. (It also includes a faster linebreaking algorithm for when speed is more important than quality.) Of course, it can also handle " (block '(font "Courier") "different fonts,") (block '(style italic) " styles, ") (word '(size 14.0 weight bold) "and sizes-") " within the same line. As you can see, it can also justify paragraphs." (block-break) (box '(width 15.0)) (block '() "“Each horizontal row represents " (box '(color "Red" background "Yellow") "an OS-level thread,") " and the colored dots represent important events in the execution of the program (they are color-coded to distinguish one event type from another). The upper-left blue dot in the timeline represents the future’s creation. The future executes for a brief period (represented by a green bar in the second line) on thread 1, and then pauses to allow the runtime thread to perform a future-unsafe operation.") (column-break) (box '(width 15.0))(block '() "In the Racket implementation, future-unsafe operations fall into one of two categories. A blocking operation halts the evaluation of the future, and will not allow it to continue until it is touched. After the operation completes within touch, the remainder of the future’s work will be evaluated sequentially by the runtime thread. A synchronized operation also halts the future, but the runtime thread may perform the operation at any time and, once completed, the future may continue running in parallel. Memory allocation and JIT compilation are two common examples of synchronized operations." (page-break) "another page")))) \ No newline at end of file diff --git a/quad/quad/old-master/quick-sample.rktd b/quad/quad/old-master/quick-sample.rktd deleted file mode 100644 index 3c1f937e..00000000 --- a/quad/quad/old-master/quick-sample.rktd +++ /dev/null @@ -1,2 +0,0 @@ -(define (quick-sample) - (block '(measure 240.0 font "Times New Roman" leading 16.0 vmeasure 300.0 size 13.5 x-align justify x-align-last-line left) (box '(width 15.0)) (block '() (block '(weight bold) "Hot " (word '(size 22.0) "D") "ang, My Fellow Americans.") " This " (block '(no-break #t) "is some truly") " nonsense generated from my typesetting system, which is called Quad. I’m writing this in a source file in DrRacket. When I click [Run], a PDF pops out. Not bad\u200a—\u200aand no LaTeX needed. Quad, however, does use the fancy linebreaking algorithm developed for TeX. (It also includes a faster linebreaking algorithm for when speed is more important than quality.) Of course, it can also handle " (block '(font "Courier") "different fonts,") (block '(style italic) " styles, ") (word '(size 14.0 weight bold) "and sizes-") " within the same line. As you can see, it can also justify paragraphs." (block-break) (box '(width 15.0)) (block '() "“Each horizontal row represents " (box '(color "Red" background "Yellow") "an OS-level thread,") " and the colored dots represent important events in the execution of the program (they are color-coded to distinguish one event type from another). The upper-left blue dot in the timeline represents the future’s creation. The future executes for a brief period (represented by a green bar in the second line) on thread 1, and then pauses to allow the runtime thread to perform a future-unsafe operation.") (column-break) (box '(width 15.0))(block '() "In the Racket implementation, future-unsafe operations fall into one of two categories. A blocking operation halts the evaluation of the future, and will not allow it to continue until it is touched. After the operation completes within touch, the remainder of the future’s work will be evaluated sequentially by the runtime thread. A synchronized operation also halts the future, but the runtime thread may perform the operation at any time and, once completed, the future may continue running in parallel. Memory allocation and JIT compilation are two common examples of synchronized operations." (page-break) "another page")))) \ No newline at end of file diff --git a/quad/quad/old-master/quick-test.rkt b/quad/quad/old-master/quick-test.rkt deleted file mode 100644 index 91a97fc2..00000000 --- a/quad/quad/old-master/quick-test.rkt +++ /dev/null @@ -1,10 +0,0 @@ -#lang racket/base - -(require "typeset.rkt" "world.rkt" "quick-sample.rkt" - "render.rkt" racket/class quad/quads) - (parameterize ([world:quality-default world:draft-quality]) - (displayln "Untyped Quad") - (displayln "Typesetting:") - (define to (time (typeset (dynamic-require "foo.rkt" 'ts)))) - (displayln "PDF rendering:") - (time (send (new pdf-renderer%) render-to-file to "quick-test-untyped.pdf"))) \ No newline at end of file diff --git a/quad/quad/old-master/render.rkt b/quad/quad/old-master/render.rkt deleted file mode 100644 index 096f3cec..00000000 --- a/quad/quad/old-master/render.rkt +++ /dev/null @@ -1,106 +0,0 @@ -#lang racket/base -(require racket/class racket/contract sugar/debug sugar/cache racket/list racket/file racket/draw data/gvector) -(require "utils.rkt" "quads.rkt" "world.rkt") -(provide (all-defined-out)) - -(define abstract-renderer% - #;(class/c [render (quad? . ->m . any/c)] - [render-element (quad? . ->m . quad?)]) - - (class object% - (super-new) - - (define renderable-quads '(word box)) - - ;; hash implementation - (define/public (render0 doc-quad) - (finalize - (let ([rendering-input (flatten-quad (setup doc-quad))]) - (define page-quad-hash (make-hash)) - (for ([q (in-list rendering-input)]) - (when (member (quad-name q) renderable-quads) - (hash-update! page-quad-hash (quad-attr-ref q world:page-key) (λ(v) (cons q v)) null))) - (map (λ(k) (render-page (hash-ref page-quad-hash k))) (sort (hash-keys page-quad-hash) <))))) - - - ;; gvector implementation - (define/public (render doc-quad) - (finalize - (let ([rendering-input (flatten-quad (setup doc-quad))]) - (define page-quad-vector (make-gvector)) - (for ([q (in-list rendering-input)] #:when (member (quad-name q) renderable-quads)) - (define p (quad-attr-ref q world:page-key)) - (gvector-set! page-quad-vector p (cons q (gvector-ref page-quad-vector p null)))) - (for/list ([pq (in-gvector page-quad-vector)]) - (render-page pq))))) - - - (define/public (render-element q) - (cond - [(word? q) (render-word q)] - [else q])) - - (define/public (setup q) q) - (abstract render-page) - (abstract render-word) - (define/public (finalize q) q))) - - -(define-syntax-rule (map/send method xs) - (map (λ(x) (method x)) xs)) - - -(define pdf-renderer% - (class abstract-renderer% - (super-new) - - (send* (current-ps-setup) (set-margin 0 0) (set-scaling 1.0 1.0)) - (define dc-output-port (open-output-bytes)) - (define dc (new pdf-dc% [interactive #f][use-paper-bbox #f][as-eps #f] - [output dc-output-port] - [width (world:paper-width-default)][height (world:paper-height-default)])) - - (define/override (setup tx) - (send* dc - (start-doc "boing") - (set-pen "black" 1 'solid) - (set-brush "black" 'transparent)) ; no fill by default - tx) - - (inherit render-element) - - (define/caching (make-font/caching font size style weight) - (make-font #:face font #:size size #:style style #:weight weight)) - - (define/override-final (render-word w) - (define word-font (quad-attr-ref/parameter w world:font-name-key)) - (define word-size (quad-attr-ref/parameter w world:font-size-key)) - (define word-style (quad-attr-ref/parameter w world:font-style-key)) - (define word-weight (quad-attr-ref/parameter w world:font-weight-key)) - (define word-color (quad-attr-ref/parameter w world:font-color-key)) - (define word-background (quad-attr-ref/parameter w world:font-background-key)) - (send dc set-font (make-font/caching word-font word-size word-style word-weight)) - (send dc set-text-foreground (send the-color-database find-color word-color)) - (define background-color (send the-color-database find-color word-background)) - (if background-color ; all invalid color-string values will return #f - (send* dc (set-text-mode 'solid) (set-text-background background-color)) - (send dc set-text-mode 'transparent)) - - (define word-text (quad-car w)) - (send dc draw-text word-text (quad-attr-ref w world:x-position-key) - ;; we want to align by baseline rather than top of box - ;; thus, subtract ascent from y to put baseline at the y coordinate - (- (quad-attr-ref w world:y-position-key) (quad-attr-ref w world:ascent-key 0)) #t)) - - (define/override-final (render-page elements) - (send dc start-page) - (map/send render-element (filter-not whitespace/nbsp? elements)) - (send dc end-page)) - - (define/override-final (finalize xs) - (send dc end-doc) - (get-output-bytes dc-output-port)) - - (define/public (render-to-file doc-quad path) - (define result-bytes (send this render doc-quad)) - (display-to-file result-bytes path #:exists 'replace #:mode 'binary)))) diff --git a/quad/quad/old-master/samples-base.rktd b/quad/quad/old-master/samples-base.rktd deleted file mode 100644 index 9fd5dd51..00000000 --- a/quad/quad/old-master/samples-base.rktd +++ /dev/null @@ -1,30 +0,0 @@ -;(define ti (block '(measure 54.0 leading 18.0) "Meg is an ally.")) -(define (ti2) (block '(leading 10.0 measure 400.0 size 13.0 x-align left x-align-last-line left font "Equity Text B") (block '() "Foo-d" (word '(size 13.0) "og ") "and " (box) "Zu" (word-break '(nb "c" bb "k-")) "kerman’s. Instead of a circle, the result is a picture of the code that, if it were used as an expression, would produce a circle. In other words, code is not a function, but instead a " (block '(style italic) "new syntactic form") " for creating pictures; the bit between the opening " (block '(weight bold) "parenthesis") " with code is not an expression, but instead manipulated by the code syntactic form. " (word '(font "Triplicate T4" size 22.5 color "Orchid" background "Yellow") "Bangazoom!") " This helps explain what we meant in the previous section when we said that racket provides require and the function-calling syntax.") (block-break) (block '() "Libraries are not restricted to exporting values, such as functions; they can also define new syntactic forms. In this sense, Racket isn’t exactly a language at all; it’s more of an idea for how to structure a language so that you can extend it or create entirely new ones."))) - -(define (ti3) (block '(measure 54.0 leading 18.0) "Meg is an ally.")) - -(define (ti4) (block '(measure 300.0 x-align justify x-align-last-line right leading 18.0) "In this Madagascarian hoo-ha, Racket isn’t exactly a language at all")) - - -(define (ti5) (block '(measure 240.0 font "Equity Text B" leading 16.0 vmeasure 300.0 size 13.5 x-align justify x-align-last-line left) (box '(width 15.0)) (block '() (block '(weight bold font "Equity Caps B") "Hot" (word '(size 22.0) "Z") "ogs, My Fellow Americans.") " This " (block '(no-break #t) "is some truly") " bullshit generated from my typesetting system, which is called Quad. I’m writing this in a source file in DrRacket. When I click [Run], a PDF pops out. Not bad\u200a—\u200aand no LaTeX needed. Quad, however, does use the fancy linebreaking algorithm developed for TeX. (It also includes a faster linebreaking algorithm for when speed is more important than quality.) Of course, it can also handle " (block '(font "Triplicate C4") "different fonts,") (block '(style italic) " styles, ") (word '(size 14.0 weight bold) "and sizes-") " within the same line. As you can see, it can also justify paragraphs." (block-break) (box '(width 15.0)) (block '() "“Each horizontal row represents an OS-level thread, and the colored dots represent important events in the execution of the program (they are color-coded to distinguish one event type from another). The upper-left blue dot in the timeline represents the future’s creation. The future executes for a brief period (represented by a green bar in the second line) on thread 1, and then pauses to allow the runtime thread to perform a future-unsafe operation.") (column-break) (box '(width 15.0))(block '() "In the Racket implementation, future-unsafe operations fall into one of two categories. A blocking operation halts the evaluation of the future, and will not allow it to continue until it is touched. After the operation completes within touch, the remainder of the future’s work will be evaluated sequentially by the runtime thread. A synchronized operation also halts the future, but the runtime thread may perform the operation at any time and, once completed, the future may continue running in parallel. Memory allocation and JIT compilation are two common examples of synchronized operations." (page-break) "another page")))) - -(define (ti6) (block '(font "Equity Text B" measure 210.0 leading 14.0 size 20.0 x-align justify x-align-last-line left) - "Firstlinerhere" (column-break) "Secondlinerhere" (column-break) "Thirdlinerhere")) - - -(: make-sample : ((String) ((Option Integer)) . ->* . Quad)) -(define (make-sample jude-text [line-limit #f]) - (define sample-string : String - (if line-limit - (let ([lines : (Listof String) (file->lines jude-text)]) - (string-join (take lines (min line-limit (length lines))) "\n")) - (file->string jude-text))) - (define jude-blocks ((inst map String String) (λ(s) (regexp-replace* #rx"\n" s " ")) (string-split sample-string "\n\n"))) - (apply block '(font "Equity Text B" measure 360.0 leading 14.0 column-count 1 column-gutter 10.0 size 11.5 x-align justify x-align-last-line left) (add-between (map (λ([jb : String]) (block '() (box '(width 10.0)) (optical-kern) jb)) (filter (λ([jb : String]) (< 0 (string-length jb))) jude-blocks)) (block-break)))) - -(define (jude) (make-sample "texts/jude.txt")) -(define (jude0) (make-sample "texts/jude0.txt")) -(define (judebig) (make-sample "texts/judebig.txt")) -(define (segfault) (make-sample "texts/segfault.txt")) - -(define (jude1) (block '(font "Equity Text B" measure 150.0 leading 14.0 column-count 4 size 11.0 x-align justify x-align-last-line left) "this—is—a—test—of—em—dashes—breakable—or—not?")) \ No newline at end of file diff --git a/quad/quad/old-master/samples.rkt b/quad/quad/old-master/samples.rkt deleted file mode 100644 index adbee5db..00000000 --- a/quad/quad/old-master/samples.rkt +++ /dev/null @@ -1,4 +0,0 @@ -#lang typed/racket/base/no-check -(require "quads.rkt" racket/file racket/string racket/function racket/list racket/include) -(provide (all-defined-out)) -(include "samples-base.rktd") \ No newline at end of file diff --git a/quad/quad/old-master/scribblings/manual-fonts.css b/quad/quad/old-master/scribblings/manual-fonts.css deleted file mode 100644 index 39656bb4..00000000 --- a/quad/quad/old-master/scribblings/manual-fonts.css +++ /dev/null @@ -1,343 +0,0 @@ -@font-face { -font-family: Miso; -font-style: normal; -font-weight: bold; -font-stretch: normal; -src: url('data:application/font-woff;charset=utf-8;base64,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') format('woff'); -} - -/* Miso license */ -/* - M M I SSS OOO - MM MM I S S O O - M M M M I S O O - M M M I S O O - M M I S O O - M M I S S O O - M M I SSS OOO - ---------------------------------------- -MISO is an architectural lettering font -completed in 2006 by Mårten Nettelbladt. ---------------------------------------- -MISO is available in three weights -(Light, Regular, Bold) -in TrueType and OpenType format. ---------------------------------------- - - L I C E N S E I N F O R M A T I O N ---------------------------------------- -MISO is a free typeface. However, -there is one important limitation: - -MISO MUST ALWAYS REMAIN COMPLETELY FREE - -You can use MISO for personal and commercial work. -You can share MISO with your friends -as long as you include this text file. - -You must not sell MISO. -You must not charge someone else for using MISO. -You must not bundle MISO with a sold product. - -Use it, share it, but keep it free. ---------------------------------------- - -Mårten Nettelbladt -Omkrets arkitektur -www.omkrets.se - -Stockholm, Sweden -July 9th 2009 - ---------------------------------------- -If you have any comments about MISO -please let me know: -miso (a) omkrets.se ---------------------------------------- - -November 27th 2008 -Converted to OpenType by Torin Hill. - -June 24th 2007 -Some small adjustments - -October 23rd 2006 -Released -*/ - -@font-face { -font-family: Charter; -font-style: normal; -font-weight: normal; -font-stretch: normal; -src: url('data:application/font-woff;charset=utf-8;base64,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') format('woff'); -} -@font-face { -font-family: Charter; -font-style: italic; -font-weight: normal; -font-stretch: normal; -src: url('data:application/font-woff;charset=utf-8;base64,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') format('woff'); -} -@font-face { -font-family: Charter; -font-style: normal; -font-weight: bold; -font-stretch: normal; -src: url('data:application/font-woff;charset=utf-8;base64,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') format('woff'); -} - -/* Charter license */ -/* (c) Copyright 1989-1992, Bitstream Inc., Cambridge, MA. You are hereby granted permission under all Bitstream propriety rights to use, copy, modify, sublicense, sell, and redistribute the 4 Bitstream Charter (r) Type 1 outline fonts and the 4 Courier Type 1 outline fonts for any purpose and without restriction; provided, that this notice is left intact on all copies of such fonts and that Bitstream's trademark is acknowledged as shown below on all unmodified copies of the 4 Charter Type 1 fonts. BITSTREAM CHARTER is a registered trademark of Bitstream Inc. */ - - - -@font-face { -font-family: Fira; -font-style: normal; -font-weight: 300; /* "Light" */ -font-stretch: normal; - src: url(data:application/x-font-woff;charset=utf-8;base64,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) format('woff'); -} - -@font-face { -font-family: Fira; -font-style: italic; -font-weight: 300; /* "Light" */ -font-stretch: normal; - src: url(data:application/x-font-woff;charset=utf-8;base64,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) format('woff'); -} - -@font-face { -font-family: Fira; -font-style: normal; -font-weight: 400; /* "Regular" */ -font-stretch: normal; - src: url(data:application/x-font-woff;charset=utf-8;base64,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) format('woff'); -} - -@font-face { -font-family: Fira; -font-style: normal; -font-weight: 600; /* "Medium" */ -font-stretch: normal; - src: url(data:application/x-font-woff;charset=utf-8;base64,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) format('woff'); -} - - -/* Fira license */ -/* This Font Software is licensed under the SIL Open Font License, Version 1.1. -This license is copied below, and is also available with a FAQ at: -http://scripts.sil.org/OFL - - ------------------------------------------------------------ -SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ------------------------------------------------------------ - -PREAMBLE -The goals of the Open Font License (OFL) are to stimulate worldwide -development of collaborative font projects, to support the font creation -efforts of academic and linguistic communities, and to provide a free and -open framework in which fonts may be shared and improved in partnership -with others. - -The OFL allows the licensed fonts to be used, studied, modified and -redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, -redistributed and/or sold with any software provided that any reserved -names are not used by derivative works. The fonts and derivatives, -however, cannot be released under any other type of license. The -requirement for fonts to remain under this license does not apply -to any document created using the fonts or their derivatives. - -DEFINITIONS -"Font Software" refers to the set of files released by the Copyright -Holder(s) under this license and clearly marked as such. This may -include source files, build scripts and documentation. - -"Reserved Font Name" refers to any names specified as such after the -copyright statement(s). - -"Original Version" refers to the collection of Font Software components as -distributed by the Copyright Holder(s). - -"Modified Version" refers to any derivative made by adding to, deleting, -or substituting -- in part or in whole -- any of the components of the -Original Version, by changing formats or by porting the Font Software to a -new environment. - -"Author" refers to any designer, engineer, programmer, technical -writer or other person who contributed to the Font Software. - -PERMISSION & CONDITIONS -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, modify, -redistribute, and sell modified and unmodified copies of the Font -Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, -in Original or Modified Versions, may be sold by itself. - -2) Original or Modified Versions of the Font Software may be bundled, -redistributed and/or sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s) unless explicit written permission is granted by the corresponding -Copyright Holder. This restriction only applies to the primary font name as -presented to the users. - -4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder(s) and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed entirely under this license, and must not be -distributed under any other license. The requirement for fonts to -remain under this license does not apply to any document created -using the Font Software. - -TERMINATION -This license becomes null and void if any of the above conditions are -not met. - -DISCLAIMER -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE -COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. */ - - - -@font-face { -font-family: Source Code Pro; -font-style: normal; -font-weight: 300; -font-stretch: normal; -src: url('data:application/font-woff;charset=utf-8;base64,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') format('woff'); -}@font-face { -font-family: Source Code Pro; -font-style: normal; -font-weight: 400; -font-stretch: normal; -src: url('data:application/font-woff;charset=utf-8;base64,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') format('woff'); -}@font-face { -font-family: Source Code Pro; -font-style: normal; -font-weight: 500; -font-stretch: normal; -src: url('data:application/font-woff;charset=utf-8;base64,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') format('woff'); -}@font-face { -font-family: Source Code Pro; -font-style: normal; -font-weight: 600; -font-stretch: normal; -src: url('data:application/font-woff;charset=utf-8;base64,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') format('woff'); -} - -/* Source Code Pro license */ -/* Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries. - -This Font Software is licensed under the SIL Open Font License, Version 1.1. - -This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL - - ------------------------------------------------------------ -SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ------------------------------------------------------------ - -PREAMBLE -The goals of the Open Font License (OFL) are to stimulate worldwide -development of collaborative font projects, to support the font creation -efforts of academic and linguistic communities, and to provide a free and -open framework in which fonts may be shared and improved in partnership -with others. - -The OFL allows the licensed fonts to be used, studied, modified and -redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, -redistributed and/or sold with any software provided that any reserved -names are not used by derivative works. The fonts and derivatives, -however, cannot be released under any other type of license. The -requirement for fonts to remain under this license does not apply -to any document created using the fonts or their derivatives. - -DEFINITIONS -"Font Software" refers to the set of files released by the Copyright -Holder(s) under this license and clearly marked as such. This may -include source files, build scripts and documentation. - -"Reserved Font Name" refers to any names specified as such after the -copyright statement(s). - -"Original Version" refers to the collection of Font Software components as -distributed by the Copyright Holder(s). - -"Modified Version" refers to any derivative made by adding to, deleting, -or substituting -- in part or in whole -- any of the components of the -Original Version, by changing formats or by porting the Font Software to a -new environment. - -"Author" refers to any designer, engineer, programmer, technical -writer or other person who contributed to the Font Software. - -PERMISSION & CONDITIONS -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, modify, -redistribute, and sell modified and unmodified copies of the Font -Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, -in Original or Modified Versions, may be sold by itself. - -2) Original or Modified Versions of the Font Software may be bundled, -redistributed and/or sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s) unless explicit written permission is granted by the corresponding -Copyright Holder. This restriction only applies to the primary font name as -presented to the users. - -4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder(s) and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed entirely under this license, and must not be -distributed under any other license. The requirement for fonts to -remain under this license does not apply to any document created -using the Font Software. - -TERMINATION -This license becomes null and void if any of the above conditions are -not met. - -DISCLAIMER -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE -COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. */ \ No newline at end of file diff --git a/quad/quad/old-master/scribblings/manual-racket.css b/quad/quad/old-master/scribblings/manual-racket.css deleted file mode 100644 index 18c93607..00000000 --- a/quad/quad/old-master/scribblings/manual-racket.css +++ /dev/null @@ -1,319 +0,0 @@ -/* See the beginning of "manual.css". */ - -/* Monospace: */ - -.RktIn, .RktRdr, .RktPn, .RktMeta, -.RktMod, .RktKw, .RktVar, .RktSym, -.RktRes, .RktOut, .RktCmt, .RktVal, -.RktBlk, .RktErr { - font-family: 'Source Code Pro', monospace; - white-space: inherit; - font-size: 1rem; -} - -/* this selctor grabs the first linked Racket symbol -in a definition box (i.e., the symbol being defined) */ -a.RktValDef, a.RktStxDef, a.RktSymDef, -span.RktValDef, span.RktStxDef, span.RktSymDef -{ - font-size: 1.15rem; - color: black; - font-weight: 600; -} - - -.inheritedlbl { - font-family: 'Fira', sans; -} - -.RBackgroundLabelInner { - font-family: inherit; -} - -/* ---------------------------------------- */ -/* Inherited methods, left margin */ - -.inherited { - width: 95%; - margin-top: 0.5em; - text-align: left; - background-color: inherit; -} - -.inherited td { - font-size: 82%; - padding-left: 0.5rem; - line-height: 1.3; - text-indent: 0; - padding-right: 0; -} - -.inheritedlbl { - font-style: normal; -} - -/* ---------------------------------------- */ -/* Racket text styles */ - -.RktIn { - color: #cc6633; - background-color: #eee; -} - -.RktInBG { - background-color: #eee; -} - - -.refcolumn .RktInBG { - background-color: white; -} - -.RktRdr { -} - -.RktPn { - color: #843c24; -} - -.RktMeta { - color: black; -} - -.RktMod { - color: inherit; -} - -.RktOpt { - color: black; -} - -.RktKw { - color: black; -} - -.RktErr { - color: red; - font-style: italic; - font-weight: 400; -} - -.RktVar { - position: relative; - left: -1px; font-style: italic; - color: #444; -} - -.SVInsetFlow .RktVar { - font-weight: 400; - color: #444; -} - - -.RktSym { - color: inherit; -} - - - -.RktValLink, .RktStxLink, .RktModLink { - text-decoration: none; - color: #07A; - font-weight: 500; - font-size: 1rem; -} - -/* for syntax links within headings */ -h2 a.RktStxLink, h3 a.RktStxLink, h4 a.RktStxLink, h5 a.RktStxLink, -h2 a.RktValLink, h3 a.RktValLink, h4 a.RktValLink, h5 a.RktValLink, -h2 .RktSym, h3 .RktSym, h4 .RktSym, h5 .RktSym, -h2 .RktMod, h3 .RktMod, h4 .RktMod, h5 .RktMod, -h2 .RktVal, h3 .RktVal, h4 .RktVal, h5 .RktVal, -h2 .RktPn, h3 .RktPn, h4 .RktPn, h5 .RktPn { - color: #333; - font-size: 1.65rem; - font-weight: 400; -} - -.toptoclink .RktStxLink, .toclink .RktStxLink, -.toptoclink .RktValLink, .toclink .RktValLink, -.toptoclink .RktModLink, .toclink .RktModLink { - color: inherit; -} - -.tocset .RktValLink, .tocset .RktStxLink, .tocset .RktModLink { - color: black; - font-weight: 400; - font-size: 0.9rem; -} - -.tocset td a.tocviewselflink .RktValLink, -.tocset td a.tocviewselflink .RktStxLink, -.tocset td a.tocviewselflink .RktMod, -.tocset td a.tocviewselflink .RktSym { - font-weight: lighter; - color: white; -} - - -.RktRes { - color: #0000af; -} - -.RktOut { - color: #960096; -} - -.RktCmt { - color: #c2741f; -} - -.RktVal { - color: #228b22; -} - -/* ---------------------------------------- */ -/* Some inline styles */ - -.together { /* for definitions grouped together in one box */ - width: 100%; - border-top: 2px solid white; -} - -tbody > tr:first-child > td > .together { - border-top: 0px; /* erase border on first instance of together */ -} - -.RktBlk { - white-space: pre; - text-align: left; -} - -.highlighted { - font-size: 1rem; - background-color: #fee; -} - -.defmodule { - font-family: 'Source Code Pro'; - padding: 0.25rem 0.75rem 0.25rem 0.5rem; - margin-bottom: 1rem; - width: 100%; - background-color: hsl(60, 29%, 94%); -} - -.defmodule a { - color: #444; -} - - -.defmodule td span.hspace:first-child { - position: absolute; - width: 0; - display: inline-block; -} - -.defmodule .RpackageSpec .Smaller, -.defmodule .RpackageSpec .stt { - font-size: 1rem; -} - - -.specgrammar { - float: none; - padding-left: 1em; -} - - -.RBibliography td { - vertical-align: text-top; - padding-top: 1em; -} - -.leftindent { - margin-left: 2rem; - margin-right: 0em; -} - -.insetpara { - margin-left: 1em; - margin-right: 1em; -} - -.SCodeFlow .Rfilebox { - margin-left: -1em; /* see 17.2 of guide, module languages */ -} - -.Rfiletitle { - text-align: right; - background-color: #eee; -} - -.SCodeFlow .Rfiletitle { - border-top: 1px dotted gray; - border-right: 1px dotted gray; -} - - -.Rfilename { - border-top: 0; - border-right: 0; - padding-left: 0.5em; - padding-right: 0.5em; - background-color: inherit; -} - -.Rfilecontent { - margin: 0.5em; -} - -.RpackageSpec { - padding-right: 0; -} - -/* ---------------------------------------- */ -/* For background labels */ - -.RBackgroundLabel { - float: right; - width: 0px; - height: 0px; -} - -.RBackgroundLabelInner { - position: relative; - width: 25em; - left: -25.5em; - top: 0.20rem; /* sensitive to monospaced font choice */ - text-align: right; - z-index: 0; - font-weight: 300; - font-family: 'Source Code Pro'; - font-size: 0.9rem; - color: gray; -} - - -.RpackageSpec .Smaller { - font-weight: 300; - font-family: 'Source Code Pro'; - font-size: 0.9rem; -} - -.RForeground { - position: relative; - left: 0px; - top: 0px; - z-index: 1; -} - -/* ---------------------------------------- */ -/* For section source modules & tags */ - -.RPartExplain { - background: #eee; - font-size: 0.9rem; - margin-top: 0.2rem; - padding: 0.2rem; - text-align: left; -} diff --git a/quad/quad/old-master/scribblings/manual-racket.js b/quad/quad/old-master/scribblings/manual-racket.js deleted file mode 100644 index 203d6d30..00000000 --- a/quad/quad/old-master/scribblings/manual-racket.js +++ /dev/null @@ -1,98 +0,0 @@ -/* For the Racket manual style */ - -AddOnLoad(function() { - /* Look for header elements that have x-source-module and x-part tag. - For those elements, add a hidden element that explains how to - link to the section, and set the element's onclick() to display - the explanation. */ - var tag_names = ["h1", "h2", "h3", "h4", "h5"]; - for (var j = 0; j < tag_names.length; j++) { - elems = document.getElementsByTagName(tag_names[j]); - for (var i = 0; i < elems.length; i++) { - var elem = elems.item(i); - AddPartTitleOnClick(elem); - } - } -}) - -function AddPartTitleOnClick(elem) { - var mod_path = elem.getAttribute("x-source-module"); - var tag = elem.getAttribute("x-part-tag"); - if (mod_path && tag) { - // Might not be present: - var prefixes = elem.getAttribute("x-part-prefixes"); - - var info = document.createElement("div"); - info.className = "RPartExplain"; - - /* The "top" tag refers to a whole document: */ - var is_top = (tag == "\"top\""); - info.appendChild(document.createTextNode("Link to this " - + (is_top ? "document" : "section") - + " with ")); - - /* Break `secref` into two lines if the module path and tag - are long enough: */ - var is_long = (is_top ? false : ((mod_path.length - + tag.length - + (prefixes ? (16 + prefixes.length) : 0)) - > 60)); - - var line1 = document.createElement("div"); - var line1x = ((is_long && prefixes) ? document.createElement("div") : line1); - var line2 = (is_long ? document.createElement("div") : line1); - - function add(dest, str, cn) { - var s = document.createElement("span"); - s.className = cn; - s.style.whiteSpace = "nowrap"; - s.appendChild(document.createTextNode(str)); - dest.appendChild(s); - } - /* Construct a `secref` call with suitable syntax coloring: */ - add(line1, "\xA0@", "RktRdr"); - add(line1, (is_top ? "other-doc" : "secref"), "RktSym"); - add(line1, "[", "RktPn"); - if (!is_top) - add(line1, tag, "RktVal"); - if (is_long) { - /* indent additional lines: */ - if (prefixes) - add(line1x, "\xA0\xA0\xA0\xA0\xA0\xA0\xA0\xA0", "RktPn"); - add(line2, "\xA0\xA0\xA0\xA0\xA0\xA0\xA0\xA0", "RktPn"); - } - if (prefixes) { - add(line1x, " #:tag-prefixes ", "RktPn"); - add(line1x, "'", "RktVal"); - add(line1x, prefixes, "RktVal"); - } - if (!is_top) - add(line2, " #:doc ", "RktPn"); - add(line2, "'", "RktVal"); - add(line2, mod_path, "RktVal"); - add(line2, "]", "RktPn"); - - info.appendChild(line1); - if (is_long) - info.appendChild(line1x); - if (is_long) - info.appendChild(line2); - - info.style.display = "none"; - - /* Add the new element afterthe header: */ - var n = elem.nextSibling; - if (n) - elem.parentNode.insertBefore(info, n); - else - elem.parentNode.appendChild(info); - - /* Clicking the header shows the explanation element: */ - elem.onclick = function () { - if (info.style.display == "none") - info.style.display = "block"; - else - info.style.display = "none"; - } - } -} diff --git a/quad/quad/old-master/scribblings/manual-style.css b/quad/quad/old-master/scribblings/manual-style.css deleted file mode 100644 index fa7e8cc8..00000000 --- a/quad/quad/old-master/scribblings/manual-style.css +++ /dev/null @@ -1,743 +0,0 @@ - -/* See the beginning of "scribble.css". - This file is used by the `scribble/manual` language, along with - "manual-racket.css". */ - -@import url("manual-fonts.css"); - -* { - margin: 0; - padding: 0; -} - -@media all {html {font-size: 15px;}} -@media all and (max-width:940px){html {font-size: 14px;}} -@media all and (max-width:850px){html {font-size: 13px;}} -@media all and (max-width:830px){html {font-size: 12px;}} -@media all and (max-width:740px){html {font-size: 11px;}} - -/* CSS seems backward: List all the classes for which we want a - particular font, so that the font can be changed in one place. (It - would be nicer to reference a font definition from all the places - that we want it.) - - As you read the rest of the file, remember to double-check here to - see if any font is set. */ - -/* Monospace: */ -.maincolumn, .refpara, .refelem, .tocset, .stt, .hspace, .refparaleft, .refelemleft { - font-family: 'Source Code Pro', monospace; - white-space: inherit; - font-size: 1rem; -} - -.stt { - font-weight: 500; -} - -h2 .stt { - font-size: 2.7rem; -} - -.toptoclink .stt { - font-size: inherit; -} -.toclink .stt { - font-size: 90%; -} - -.RpackageSpec .stt { - font-weight: 300; - font-family: 'Source Code Pro'; - font-size: 0.9rem; -} - -h3 .stt, h4 .stt, h5 .stt { - color: #333; - font-size: 1.65rem; - font-weight: 400; -} - - -/* Serif: */ -.main, .refcontent, .tocview, .tocsub, .sroman, i { - font-family: 'Charter', serif; - font-size: 1.18rem; -} - - -/* Sans-serif: */ -.version, .versionNoNav, .ssansserif { - font-family: 'Fira', sans-serif; -} -.ssansserif { - font-family: 'Fira'; - font-weight: 500; - font-size: 0.9em; -} - -.tocset .ssansserif { - font-size: 100%; -} - -/* ---------------------------------------- */ - -p, .SIntrapara { - display: block; - margin: 0 0 1em 0; - line-height: 1.4; -} - -.compact { - padding: 0 0 1em 0; -} - -li { - list-style-position: outside; - margin-left: 1.2em; -} - -h1, h2, h3, h4, h5, h6, h7, h8 { - font-family: 'Fira'; - font-weight: 300; - font-size: 1.6rem; - color: #333; - margin-top: inherit; - margin-bottom: 1rem; - line-height: 1.25; - -moz-font-feature-settings: 'tnum=1'; - -moz-font-feature-settings: 'tnum' 1; - -webkit-font-feature-settings: 'tnum' 1; - -o-font-feature-settings: 'tnum' 1; - -ms-font-feature-settings: 'tnum' 1; - font-feature-settings: 'tnum' 1; - -} - -h3, h4, h5, h6, h7, h8 { - border-top: 1px solid black; -} - - - -h2 { /* per-page main title */ - font-family: 'Miso'; - font-weight: bold; - margin-top: 4rem; - font-size: 3rem; - line-height: 1.1; - width: 90%; -} - -h3, h4, h5, h6, h7, h8 { - margin-top: 2em; - padding-top: 0.1em; - margin-bottom: 0.75em; -} - -/* ---------------------------------------- */ -/* Main */ - -body { - color: black; - background-color: white; -} - -.maincolumn { - width: auto; - margin-top: 4rem; - margin-left: 17rem; - margin-right: 2rem; - margin-bottom: 10rem; /* to avoid fixed bottom nav bar */ - max-width: 700px; - min-width: 370px; /* below this size, code samples don't fit */ -} - -a { - text-decoration: inherit; -} - -a, .toclink, .toptoclink, .tocviewlink, .tocviewselflink, .tocviewtoggle, .plainlink, -.techinside, .techoutside:hover, .techinside:hover { - color: #07A; -} - -a:hover { - text-decoration: underline; -} - - -/* ---------------------------------------- */ -/* Navigation */ - -.navsettop, .navsetbottom { - left: 0; - width: 15rem; - height: 6rem; - font-family: 'Fira'; - font-size: 0.9rem; - border-bottom: 0px solid hsl(216, 15%, 70%); - background-color: inherit; - padding: 0; -} - -.navsettop { - position: absolute; - top: 0; - left: 0; - margin-bottom: 0; - border-bottom: 0; -} - -.navsettop a, .navsetbottom a { - color: black; -} - -.navsettop a:hover, .navsetbottom a:hover { - background: hsl(216, 78%, 95%); - text-decoration: none; -} - -.navleft, .navright { - position: static; - float: none; - margin: 0; - white-space: normal; -} - - -.navleft a { - display: inline-block; -} - -.navright a { - display: inline-block; - text-align: center; -} - -.navleft a, .navright a, .navright span { - display: inline-block; - padding: 0.5rem; - min-width: 1rem; -} - - -.navright { - height: 2rem; - white-space: nowrap; -} - - -.navsetbottom { - display: none; -} - -.nonavigation { - color: #889; -} - -.searchform { - display: block; - margin: 0; - padding: 0; - border-bottom: 1px solid #eee; - height: 4rem; -} - -.nosearchform { - margin: 0; - padding: 0; - height: 4rem; -} - -.searchbox { - font-size: 1rem; - width: 12rem; - margin: 1rem; - padding: 0.25rem; - vertical-align: middle; - background-color: white; -} - -#search_box { - font-size: 0.8rem; -} - -/* ---------------------------------------- */ -/* Version */ - -.versionbox { - position: absolute; - float: none; - top: 0.25rem; - left: 17rem; - z-index: 11000; - height: 2em; - font-size: 70%; - font-weight: lighter; - width: inherit; - margin: 0; -} -.version, .versionNoNav { - font-size: inherit; -} -.version:before, .versionNoNav:before { - content: "v."; -} - - -/* ---------------------------------------- */ -/* Margin notes */ - -/* cancel scribble.css styles: */ -.refpara, .refelem { - position: static; - float: none; - height: auto; - width: auto; - margin: 0; -} - -.refcolumn { - position: static; - display: block; - width: auto; - font-size: inherit; - margin: 2rem; - margin-left: 2rem; - padding: 0.5em; - padding-left: 0.75em; - padding-right: 1em; - background: hsl(60, 29%, 94%); - border: 1px solid #ccb; - border-left: 0.4rem solid #ccb; -} - - -/* slightly different handling for margin-note* on narrow screens */ -@media all and (max-width:1260px) { - span.refcolumn { - float: right; - width: 50%; - margin-left: 1rem; - margin-bottom: 0.8rem; - margin-top: 1.2rem; - } - -} - -.refcontent, .refcontent p { - line-height: 1.5; - margin: 0; -} - -.refcontent p + p { - margin-top: 1em; -} - -.refcontent a { - font-weight: 400; -} - -.refpara, .refparaleft { - top: -1em; -} - - -@media all and (max-width:600px) { - .refcolumn { - margin-left: 0; - margin-right: 0; - } -} - - -@media all and (min-width:1260px) { - .refcolumn { - position: absolute; - left: 66rem; right: 3em; - margin: 0; - float: right; - max-width: 18rem; - } -} - -.refcontent { - font-family: 'Fira'; - font-size: 1rem; - line-height: 1.6; - margin: 0 0 0 0; -} - - -.refparaleft, .refelemleft { - position: relative; - float: left; - right: 2em; - height: 0em; - width: 13em; - margin: 0em 0em 0em -13em; -} - -.refcolumnleft { - background-color: hsl(60, 29%, 94%); - display: block; - position: relative; - width: 13em; - font-size: 85%; - border: 0.5em solid hsl(60, 29%, 94%); - margin: 0 0 0 0; -} - - -/* ---------------------------------------- */ -/* Table of contents, left margin */ - -.tocset { - position: absolute; - float: none; - left: 0; - top: 0rem; - width: 14rem; - padding: 7rem 0.5rem 0.5rem 0.5rem; - background-color: hsl(216, 15%, 70%); - margin: 0; - -} - -.tocset td { - vertical-align: text-top; - padding-bottom: 0.4rem; - padding-left: 0.2rem; - line-height: 1.1; - font-family: 'Fira'; - -moz-font-feature-settings: 'tnum=1'; - -moz-font-feature-settings: 'tnum' 1; - -webkit-font-feature-settings: 'tnum' 1; - -o-font-feature-settings: 'tnum' 1; - -ms-font-feature-settings: 'tnum' 1; - font-feature-settings: 'tnum' 1; - -} - -.tocset td a { - color: black; - font-weight: 400; -} - - -.tocview { - text-align: left; - background-color: inherit; -} - - -.tocview td, .tocsub td { - line-height: 1.3; -} - - -.tocview table, .tocsub table { - width: 90%; -} - -.tocset td a.tocviewselflink { - font-weight: lighter; - font-size: 110%; /* monospaced styles below don't need to enlarge */ - color: white; -} - -.tocviewselflink { - text-decoration: none; -} - -.tocsub { - text-align: left; - margin-top: 0.5em; - background-color: inherit; -} - -.tocviewlist, .tocsublist { - margin-left: 0.2em; - margin-right: 0.2em; - padding-top: 0.2em; - padding-bottom: 0.2em; -} -.tocviewlist table { - font-size: 82%; -} - -.tocviewlisttopspace { - margin-bottom: 1em; -} - -.tocviewsublist, .tocviewsublistonly, .tocviewsublisttop, .tocviewsublistbottom { - margin-left: 0.4em; - border-left: 1px solid #99a; - padding-left: 0.8em; -} -.tocviewsublist { - margin-bottom: 1em; -} -.tocviewsublist table, -.tocviewsublistonly table, -.tocviewsublisttop table, -.tocviewsublistbottom table, -table.tocsublist { - font-size: 1rem; -} - -.tocviewsublist td, .tocviewsublistbottom td, .tocviewsublisttop td, .tocsub td, -.tocviewsublistonly td { - font-size: 90%; -} - - -.tocviewtoggle { - font-size: 75%; /* looks better, and avoids bounce when toggling sub-sections due to font alignments */ -} - -.tocsublist td { - padding-left: 0.5rem; - padding-top: 0.25rem; - text-indent: 0; -} - -.tocsublinknumber { - font-size: 100%; -} - -.tocsublink { - font-size: 82%; - text-decoration: none; -} - -.tocsubseclink { - font-size: 100%; - text-decoration: none; -} - -.tocsubnonseclink { - font-size: 82%; - text-decoration: none; - margin-left: 1rem; - padding-left: 0; - display: inline-block; -} - -/* the label "on this page" */ -.tocsubtitle { - display: block; - font-size: 62%; - font-family: 'Fira'; - font-weight: bolder; - font-style: normal; - letter-spacing: 2px; - text-transform: uppercase; - margin: 0.5em; -} - -.toptoclink { - font-weight: bold; - font-size: 110%; - margin-bottom: 0.5rem; - margin-top: 1.5rem; - display: inline-block; -} - -.toclink { - font-size: inherit; -} - -/* ---------------------------------------- */ -/* Some inline styles */ - -.indexlink { - text-decoration: none; -} - -pre { - margin-left: 2em; -} - -blockquote { - margin-left: 2em; - margin-right: 2em; - margin-bottom: 1em; -} - -.SCodeFlow { - border-left: 1px dotted black; - padding-left: 1em; - padding-right: 1em; - margin-top: 1em; - margin-bottom: 1em; - margin-left: 0em; - margin-right: 2em; - white-space: nowrap; - line-height: 1.5; -} - -.SCodeFlow img { - margin-top: 0.5em; - margin-bottom: 0.5em; -} - -.boxed { - margin: 0; - margin-top: 2em; - padding: 0.25em; - padding-bottom: 0.5em; - background: #f3f3f3; - box-sizing:border-box; - border-top: 1px solid #99b; - background: hsl(216, 78%, 95%); - background: -moz-linear-gradient(to bottom left, hsl(0, 0%, 99%) 0%, hsl(216, 78%, 95%) 100%); - background: -webkit-linear-gradient(to bottom left, hsl(0, 0%, 99%) 0%, hsl(216, 78%, 95%) 100%); - background: -o-linear-gradient(to bottom left, hsl(0, 0%, 99%) 0%, hsl(216, 78%, 95%) 100%); - background: -ms-linear-gradient(to bottom left, hsl(0, 0%, 99%) 0%, hsl(216, 78%, 95%) 100%); - background: linear-gradient(to bottom left, hsl(0, 0%, 99%) 0%, hsl(216, 78%, 95%) 100%); -} - -blockquote > blockquote.SVInsetFlow { -/* resolves issue in e.g. /reference/notation.html */ - margin-top: 0em; -} - -.leftindent .SVInsetFlow { /* see e.g. section 4.5 of Racket Guide */ - margin-top: 1em; - margin-bottom: 1em; -} - -.SVInsetFlow a, .SCodeFlow a { - color: #07A; - font-weight: 500; -} - -.SubFlow { - display: block; - margin: 0em; -} - -.boxed { - width: 100%; - background-color: inherit; -} - -.techoutside { text-decoration: none; } - -.SAuthorListBox { - position: static; - float: none; - font-family: 'Fira'; - font-weight: 300; - font-size: 110%; - margin-top: 1rem; - margin-bottom: 3rem; - width: 30rem; - height: auto; -} - -.author > a { /* email links within author block */ - font-weight: inherit; - color: inherit; -} - -.SAuthorList { - font-size: 82%; -} -.SAuthorList:before { - content: "by "; -} -.author { - display: inline; - white-space: nowrap; -} - -/* phone + tablet styles */ - -@media all and (max-width:720px){ - - - @media all and (max-width:720px){ - - @media all {html {font-size: 15px;}} - @media all and (max-width:700px){html {font-size: 14px;}} - @media all and (max-width:630px){html {font-size: 13px;}} - @media all and (max-width:610px){html {font-size: 12px;}} - @media all and (max-width:550px){html {font-size: 11px;}} - @media all and (max-width:520px){html {font-size: 10px;}} - - .navsettop, .navsetbottom { - display: block; - position: absolute; - width: 100%; - height: 4rem; - border: 0; - background-color: hsl(216, 15%, 70%); - } - - .searchform { - display: inline; - border: 0; - } - - .navright { - position: absolute; - right: 1.5rem; - margin-top: 1rem; - border: 0px solid red; - } - - .navsetbottom { - display: block; - margin-top: 8rem; - } - - .tocset { - display: none; - } - - .tocset table, .tocset tbody, .tocset tr, .tocset td { - display: inline; - } - - .tocview { - display: none; - } - - .tocsub .tocsubtitle { - display: none; - } - - .versionbox { - top: 4.5rem; - left: 1rem; /* same distance as main-column */ - z-index: 11000; - height: 2em; - font-size: 70%; - font-weight: lighter; - } - - - .maincolumn { - margin-left: 1em; - margin-top: 7rem; - margin-bottom: 0rem; - } - - } - -} - -/* print styles : hide the navigation elements */ -@media print { - .tocset, - .navsettop, - .navsetbottom { display: none; } - .maincolumn { - width: auto; - margin-right: 13em; - margin-left: 0; - } -} \ No newline at end of file diff --git a/quad/quad/old-master/scribblings/quad.html b/quad/quad/old-master/scribblings/quad.html deleted file mode 100644 index 99e0b897..00000000 --- a/quad/quad/old-master/scribblings/quad.html +++ /dev/null @@ -1,10 +0,0 @@ - -Quad: document processor
6.4.0.7

Quad: document processor

Matthew Butterick <mb@mbtype.com>

 #lang quad package: quad

This documentation explains software that is under development. It is therefore rife with optimistic claims and wishful thinking.

1 Installing Quad

At the command line: -

raco pkg install quad

After that, you can update the package like so: -

raco pkg update quad

Quad is not usable software. It is currently in “documented demo” mode. There is no need to submit issues or bug reports. Fiddle with it at your own risk.

2 Why care about document processors?

A document processor is a rule-driven typesetter. It takes a text-based source file as input and converts it into a page layout.

For instance, LaTeX is a document processor. So are web browsers. Quad borrows from both traditions — it’s an attempt to modernize the good ideas in LaTeX, and generalize the good ideas in web browsers.

Document processors sit opposite WYSIWYG tools like Word and InDesign. There, the user controls the layout by manipulating a representation of the page on the screen. This is fine as far as it goes. But changes to the layout — for instance, a new page size — often require a new round of manual adjustments.

A document processor, by contrast, relies on markup codes within the text to determine the layout programmatically. Compared to WYSIWYG, this approach offers less granular control. But it also creates a more flexible relationship between the source and its possible layouts.

Another benefit of document processors is that it permits every document to have a high-level, text-based source file that’s independent of any particular output format (rather than the opaque binary formats endemic to Word, InDesign, et al.)

2.1 Why not keep using LaTeX?

I wouldn’t want to criticize software merely for being old. It’s a great compliment to LaTeX that it’s endured this long. But 1) it’s never made much headway beyond its original audience of scientific & technical writers; 2) the last 25 years of advances in digital typesetting have been implemented as a huge (occasionally tenuous) tower of patches; 3) the core codebase is increasingly opaque to today’s programmers. Meaning, if LaTeX were plausibly rewritable, it would’ve been rewritten by now.

Instead, let’s take its good ideas — there are many — and terraform a new planet.

2.2 Why not use more HTML/CSS?

In principle, it’s possible to generate PDF documents from a web browser. Support for paper-based layouts has been part of the CSS concept since the beginning (though it’s been lightly used).

But web browsers have a few limitations. First, web browsers only render HTML, and many typesetting concepts (e.g., footnotes) don’t correspond to any HTML entity. So there is a narrowing of possiblities. Second, browsers are built for speed, so high-quality typesetting (e.g., the Knuth–Plass linebreaking algorithm) is off the table. Third, browsers are inconsistent in how they render pages. Fourth — taking off my typography-snob tiara here — browsers are unstable. What seems well supported today can be broken or removed tomorrow. So browsers can’t be a part of a dependable publishing workflow that yields reproducible results.

3 What does Quad do?

Quad produces finished document layouts using three ingredients:

  1. A markup-based language for embedding high-level typsetting instructions in a text document. (Sort of like XML/HTML.)

  2. A typesetting engine that converts these typesetting instructions into an output-independent layout — e.g., putting characters into lines, and lines into pages.

  3. A rendering engine that takes this layout and prepares it for a particular output format (e.g., PDF, SVG).

While there’s no reason Quad couldn’t produce an HTML layout, that’s an easier problem, because most of the document-layout chores can (and should) be delegated to the web browser. For now, most of Quad’s apparatus is devoted to its typesetting engine so it can produce layouts for PDF.

4 What doesn’t Quad do?

  1. Quad is not a WYSIWYG or interactive previewing tool.

  2. Quad does not have user-level representations of formatting, à la Word style sheets.

  3. Quad does not handle semantic or configurable markup. Its markup is limited to its specific, layout-based vocabulary.

Rather, it is designed to cooperate with tools that offer these facilities.

5 Theory of operation

A document processor starts with input that we can think of as one giant line of text. It breaks this into smaller lines, and then distributes these lines across pages. Conceptually, it’s a bin-packing problem.

  1. Quad starts with an input file written in the #lang quad markup language. For the most part, it’s text with markup codes (though it may also include things like diagrams and images).

  2. Each markup entity is called a quad. A quad roughly corresponds to a box. “Roughly” because quads can have zero or negative dimension. Also, at the input stage, the contents of some quads may end up being spread across multiple non-overlapping boxes (e.g., a quad containing a word might be hyphenated to appear on two lines). The more precise description of a quad is therefore “contiguous formatting region.” Quads can be recursively nested inside other quads, thus the input file is tree-shaped.

  3. This tree-shaped input file is flattened into a list of atomic quads. “Atomic” because these are the smallest items the typesetter can manipulate. (For instance, the word bar would become three one-character quads. An image or other indivisible box would remain as is.) During the flattening, tags from higher in the tree are propagated downward by copying them into the atomic quads. The result is a “stateless” representation of the input, in the sense that all the information needed to typeset an atomic quad is contained within the quad itself.

    The input is flattened because typesetting operations are easier to think about as a linear sequence (i.e., an imperative model). To see why, consider how you’d handle a page-break instruction within a tree model. No matter how deep you were in your typesetting tree, you’d have to jump back to the top level to handle your page break (because it affects the positioning of all subsequent items). Then you’d have to jump back to where you were, deep in the tree. That’s not a natural way to traverse any tree. This is also why, to my mind, typesetting does not lend itself to a class- or object-based approach, as these create hierarchies that just lead you back to this tree problem.

  4. Atomic quads are composed into lines using one of three algorithms. (A line is just a quad of a certain width.) The first-fit algorithm puts as many quads onto a line as it can before moving on to the next. The best-fit algorithm minimizes the total looseness of all the lines in a paragraph (aka the Knuth–Plass linebreaking algorithm developed for TeX). Because best-fit is more expensive, Quad also has an adaptive-fit algorithm that uses a statistical heuristic to guess whether the paragraph will benefit from best-fit; if not, it uses first-fit.

  5. If a typeset paragraph still exceeds certain looseness tolerances, it is hyphenated and the lines recalculated.

  6. Once the lines are broken, extra space is distributed within each line according to whether the line should appear centered, left-aligned, justified, etc. The result is a list of quads that fills the full column width.

  7. Lines are composed into columns. (A column is just a quad of a certain height.) To support things like footnotes, columns are composed using a backtracking constraint-satisfaction algorithm.

  8. Columns are composed into pages.

  9. This completes the typesetting phase. Note that at every step in the process, the document is represented in the Quad markup language. There isn’t a distinction between the public and private markup interface, or the high- and low-level markup entities. Thus, external tools that generate Quad markup have some latitude.

  10. Before the typeset markup is passed to the renderer, it goes through a simplification phase — a lot of adjacent quads will have the same formatting characteristics, and these can be consolidated into runs of text.

  11. The renderer walks through the markup and draws each quad, using information in the markup attributes to determine position, color, font, size, style, etc.

6 Enough talk — let’s rock

Open DrRacket and start a new document with #lang quad as the first line:

#lang quad
Brennan and Dale like fancy sauce.

Save the document. Any place, any name is fine.

Run the document. You’ll get output like this:

(block '(measure 360.0 font "Times New Roman" x-align justify leading 14.0 size 11.5 x-align-last-line left column-count 1 column-gutter 10.0) "\n" "Brennan and Dale like fancy sauce. ")

This is the compiled Quad markup, showing what will get sent to the typesetting engine. This output is itself valid Quad markup (meaning you could put it back in the definitions window and it would compile again).

#lang quad uses the @-expression reader for ease of use. But these @-expressions become S-expressions in the usual manner. Also as usual, you can prefix any S-expressionized Quad markup with a @ in the definitions window to turn it back into an @-expression.

(part ("(lib scribblings/scribble/scribble.scrbl)" "how-to:reader")) introduces @-expressions.

Now click the Render and Open PDF button. After a moment, this should open your PDF previewing program with the Quad-generated PDF, which will say, unsurprisingly, “Brennan and Dale like fancy sauce.”

As you work through the demo, you can alternatively use the Render PDF button to regenerate the PDF without opening your previewer. (The Preview app on OS X, for instance, will automatically refresh when it detects the PDF has changed, which prevents a welter of windows.)

#lang quad is a Racket-implemented DSL (= domain-specific language). It’s not a language in the sense of Turing-complete. Rather, a #lang quad “program” resembles text annotated with high-level layout-description commands (not unlike XML/HTML). #lang quad programs can be written directly, or generated as the output of other programs.

Each @-expression in #lang quad is interpreted as a quad (roughly a box; more precisely a contiguous formatting region). A quad has the following syntax:

@quad-name[(list 'attr-name attr-val ...)]{text-or-more-quads ...}

The (list 'attr-name attr-val ...) is an interleaved list of symbols and values, as you might provide to hash. The attribute list is mandatory. If a quad has no attributes of its own, this can be signaled with either empty or #f:

@quad-name[empty]{text-or-more-quads ...}
@quad-name[#f]{text-or-more-quads ...}

If you thought this resembled an X-expression, you wouldn’t be wrong. Like X-expressions, quads are recursively composable. Also like X-expressions, the attributes in a quad apply to all the text or quads within, unless superseded by another attribute declaration deeper down.

Let’s see how this works. The simplest kind of quad is a block. If we wrap our text in a block without attributes, what happens to the PDF?

#lang quad
@block[#f]{Brennan and Dale like fancy sauce.}

Right — nothing. A block without attributes just evaporates. Move the boundaries of the block:

#lang quad
@block[#f]{Brennan and Dale} like fancy sauce.

Still the same. Let’s add some bold formatting with the weight attribute:

#lang quad
@block['(weight bold)]{Brennan and Dale} like fancy sauce.

What an accomplishment. To show you that attributes are additive, we’ll put a quad inside our quad:

#lang quad
@block['(weight bold)]{Brennan and @block['(color "red")]{Dale}} like fancy sauce.

You’re getting the idea. In terms of type styling, here are the attributes and values that Quad understands:

'weight = 'normal (default) or 'bold -
'style = 'normal (default) or 'italic -
'font = family name as string -
'size = point size as floating-point number -
leading = baseline-to-baseline measure in points -
'color = color string from color-database<%>

Feel free to impose these on your demo program.

Though we’re using @-expressions, a #lang quad source file doesn’t imply any formatting characteristics as it would in Scribble or Pollen. For instance, see what happens if you add two line break and some more text:

#lang quad
@block['(size 16)]{Brennan and @block['(color "red")]{Dale}} like fancy sauce.
 
Derek does not.

The text “Derek does not” appears flush against the first sentence. In Scribble those linebreaks would suggest a paragraph break. In HTML they would suggest a word space. In #lang quad they suggest neither. Why not? Because #lang quad is strictly a language for describing explicit typesetting. Newlines have no meaning.

OK, so how do we create a paragraph? Quad supports a special set of quads called breaks that move the typesetting position. For instance, @(block-break) will act like a carriage return, moving the next typeset item below the previous item and all the way to the left edge of the column:

#lang quad
@block['(size 16)]{Brennan and @block['(color "red")]{Dale}} like fancy sauce.
@(block-break)
Derek does not.

Now “Derek does not” appears on its own line. What about things like paragraph spacing and first-line indents? Again, because #lang quad is about explicit typesetting, all these things need to be inserted explicitly in the code. For instance, to make an indent, we add a box with a 'width attribute:

#lang quad
@block['(size 16)]{Brennan and @block['(color "red")]{Dale}} like fancy sauce.
@(block-break)
@box['(width 15)]
Derek does not.

Quad also handles @(line-break), @(column-break), and @(page-break). Try the last one:

#lang quad
@block['(size 16)]{Brennan and @block['(color "red")]{Dale}} like fancy sauce.
@(page-break)
@box['(width 15)]
Derek does not.

Next, let’s look at Quad’s linebreaking mechanism. For the next sample, please paste in a large block of plain text between the curly braces so you’ll get some linewrapping:

#lang quad
@block[#f]{A text that goes on for a while ...}

You will see a block of justified text. The demo is running at maximum quality, so two other things will also be true.

First, the lines are broken using the Knuth-Plass algorithm developed for TeX. This is a very nice algorithm that looks at all possible ways of breaking the lines in the paragraph and picks the one that leaves the smallest total gap at the right edge. (Quad will also hyphenate if necessary, but only if all the unhyphenated possibilities are bad.)

Second, notice that punctuation hangs a little outside the text block. This is an optical adjustment that makes for neater-looking blocks. Whether you literally care about this kind of optical adjustment is not the point. The point is that the Quad typesetting engine permits it. And that is really what we are going for here: a hackable typesetting engine. When you have fine control over all the page elements, then other things become possible (for instance, mathematical-equation typesetting, which is quite a bit more involved than just hanging punctuation off the edges).

Justification is the default setting for the demo. To override this setting, use these attributes:

'x-align = 'justify (default), 'left, 'center, or 'right -'x-align-last-line = 'justify (default), 'left, 'center, or 'right

#lang quad
@block['(x-align center x-align-last-line center)]{A text that goes on for a while ...}

Then you can combine blocks with different styles:

#lang quad
@block['(x-align center x-align-last-line center size 24)]{Very important headline}
@(block-break)
@block['(style italic)]{A subhead that maybe lasts a few lines}
@(block-break)
@box['(width 10)]@block[#f]{A text that goes on for a while ...}

In sum, you can build up complex typsetting with a relatively small vocabulary of typsetting commands.

You are welcome to shovel large quantities of plain text into your #lang quad window to see it broken into lines and paginated.

7 Bottlenecks, roadblocks, & unanswered questions

In no particular order.

  1. Flattening is wasteful. Exploding the input into atomic quads and copying the attributes works, but it creates an enormous data structure with a huge amount of repetition. But, how do you create a stateless representation of the input?

    Possible improvements: Put the attributes into a separate data structure that treats each attribute as having a scope. But this makes editing the input data more difficult & fragile, because you have two parallel structures to keep sychronized. Also, there’s probably no reason that the attributes have to allow arbitrary key–value pairs. If the keys and certain values were reduced to a fixed vocabulary, they could be encoded as (smaller, quicker) integers rather than symbols and strings.

  2. Allocation is wasteful. Many typesetting operations break bigger quads into smaller ones, or group smaller quads into bigger ones, etc. The result is that there’s a lot of allocation & garbage collection relative to the typical Racket program.

    Possible improvements: Perhaps the input can be fixed some structure and results of each typesetting operation stored as a set of edits (like a diff) rather than copying the whole structure.

  3. Pango text measuring is slow. The most cumulatively expensive operation is measuring text so linebreaks can be calculated. racket/draw relies on Pango, which is fine for occasional UI stuff, but not zillions of lookups. (BTW Pango does have higher-level text-layout facilities which are of course faster than measuring characters individually. But the point of Quad is to micromanage the typesetting and thereby make things possible that are not in Pango.)

    Possible improvements: First, use the FFI to measure text through the underlying FreeType library. This is a lot faster, but costs some functionality. Second, better caching (but see next note).

  4. Caching is tricky. Caching is an essential ingredient in a text-rendering system because so many measurements are reused. Two hard parts, however. First, simplifying the key logic so you don’t end up with immensely huge hashtables with commensurately costly lookups. Second, preserving caches between runs of the program. Sure, save it on disk, but a giant hashtable in a .rktd file is still going to take a moment to be reconstituted into memory.

    Possible improvements: Rely on disk-based hashtables, i.e., cache files that can be read & updated without having to reconstitute the whole file into a RAM-resident hashtable, and then write it all out again. I’m sure someone figured this out in 1972, I just haven’t researched it yet.

  5. Cairo’s PDFs are weak. Cairo’s PDF generator is missing key features (e.g., hyperlinks) and in general makes PDFs that are bigger and less capable than, say, tex2pdf. Since PDFs are undoubtedly the #1 target format for a document processor, this is a major liability. OTOH, the idea of writing a PostScript/PDF compiler is, for me anyhow, daunting.

    Possible improvements: Bite the bullet and make a PDF compiler. If one wants to be free of LaTeX, and have better-quality PDFs than Cairo allows, there’s not reallyi a second option.

  6. Overall performance is slow. Outside of text measurement, most of Quad consists of simple mathematical operations. It seems like it should be highly optimizable. (Using Typed Racket, however, wasn’t the answer.)

    Possible improvements: Use more unsafe math operations, gingerly.

  7. Dependencies are broad. One reason switching to Typed Racket did nothing for Quad is that it touches a lot of other pieces of Racket. In TR’s case, creating typed interfaces for untyped libraries consumed all the potential performance gains from static typing. But still, using a small slice of a lot of libraries adds a certain overhead.

  8. Glyph shaping is nowhere. A proper 21st-century typesetting engine needs OpenType glyph shaping, and the only open-source game in town is HarfBuzz. Haven’t used it, don’t know how to integrate it.

  9. Parallel processing is difficult. It’s unclear to me how to exploit Racket’s parallel-processing facilities to speed up typesetting. A typeset document is likely to have a lot of finely interdependent pieces (e.g., table of contents, table of authorities, footnotes, etc.)

  10. Run-to-run caching is difficult. By this I mean that a common workflow in typesetting is to edit the document, preview the typesetting, make adjustments, preview again, etc. At each step, potentially not that much of the document is changing. But the typesetter needs to run start to finish anyhow.

    Possible improvements: The most expensive operation is linebreaking. It would be nice to find a way to cache linebreaking between runs — e.g., “this paragraph hasn’t changed, so we can just reuse the linebreaks from last time.” But this would require some kind of checksumming of each paragraph and disk caching, which itself would get expensive.

8 Why is it called Quad?

In letterpress printing, a quad was a piece of metal used as spacing material within a line.

 
\ No newline at end of file diff --git a/quad/quad/old-master/scribblings/quad.scrbl b/quad/quad/old-master/scribblings/quad.scrbl deleted file mode 100644 index 51d0cc41..00000000 --- a/quad/quad/old-master/scribblings/quad.scrbl +++ /dev/null @@ -1,312 +0,0 @@ -#lang scribble/manual - -@(require (for-label racket/base racket/draw)) - -@title[#:style 'toc]{Quad: document processor} - -@author[(author+email "Matthew Butterick" "mb@mbtype.com")] - -@defmodulelang[quad] - -@italic{This documentation explains software that is under development. It is therefore rife with optimistic claims and wishful thinking.} - -@section{Installing Quad} - -At the command line: -@verbatim{raco pkg install quad} - -After that, you can update the package like so: -@verbatim{raco pkg update quad} - -Quad is not usable software. It is currently in ``documented demo'' mode. There is no need to submit issues or bug reports. Fiddle with it at your own risk. - - -@section{Why care about document processors?} - -A document processor is a rule-driven typesetter. It takes a text-based source file as input and converts it into a page layout. - -For instance, LaTeX is a document processor. So are web browsers. Quad borrows from both traditions — it's an attempt to modernize the good ideas in LaTeX, and generalize the good ideas in web browsers. - -Document processors sit opposite WYSIWYG tools like Word and InDesign. There, the user controls the layout by manipulating a representation of the page on the screen. This is fine as far as it goes. But changes to the layout — for instance, a new page size — often require a new round of manual adjustments. - -A document processor, by contrast, relies on markup codes within the text to determine the layout programmatically. Compared to WYSIWYG, this approach offers less granular control. But it also creates a more flexible relationship between the source and its possible layouts. - -Another benefit of document processors is that it permits every document to have a high-level, text-based source file that's independent of any particular output format (rather than the opaque binary formats endemic to Word, InDesign, et al.) - -@subsection{Why not keep using LaTeX?} - -I wouldn't want to criticize software merely for being old. It's a great compliment to LaTeX that it's endured this long. But 1) it's never made much headway beyond its original audience of scientific & technical writers; 2) the last 25 years of advances in digital typesetting have been implemented as a huge (occasionally tenuous) tower of patches; 3) the core codebase is increasingly opaque to today's programmers. Meaning, if LaTeX were plausibly rewritable, it would've been rewritten by now. - -Instead, let's take its good ideas — there are many — and terraform a new planet. - -@subsection{Why not use more HTML/CSS?} - -In principle, it's possible to generate PDF documents from a web browser. Support for paper-based layouts has been part of the CSS concept @link["https://www.w3.org/People/howcome/p/cascade.html"]{since the beginning} (though it's been lightly used). - -But web browsers have a few limitations. First, web browsers only render HTML, and many typesetting concepts (e.g., footnotes) don't correspond to any HTML entity. So there is a narrowing of possiblities. Second, browsers are built for speed, so high-quality typesetting (e.g., the Knuth–Plass linebreaking algorithm) is off the table. Third, browsers are inconsistent in how they render pages. Fourth — taking off my typography-snob tiara here — browsers are unstable. What seems well supported today can be broken or removed tomorrow. So browsers can't be a part of a dependable publishing workflow that yields reproducible results. - - -@section{What does Quad do?} - -Quad produces finished document layouts using three ingredients: - -@itemlist[#:style 'ordered - @item{A @bold{markup-based language} for embedding high-level typesetting instructions in a text document. (Sort of like XML/HTML.)} - - @item{A @bold{typesetting engine} that converts these typesetting instructions into an output-independent layout — e.g., putting characters into lines, and lines into pages.} - - @item{A @bold{rendering engine} that takes this layout and prepares it for a particular output format (e.g., PDF, SVG).} -] - -While there's no reason Quad couldn't produce an HTML layout, that's an easier problem, because most of the document-layout chores can (and should) be delegated to the web browser. For now, most of Quad's apparatus is devoted to its typesetting engine so it can produce layouts for PDF. - -@section{What doesn't Quad do?} - -@itemlist[#:style 'ordered -@item{Quad is not a WYSIWYG or interactive previewing tool.} - -@item{Quad does not have user-level representations of formatting, à la Word style sheets.} - -@item{Quad does not handle semantic or configurable markup. Its markup is limited to its specific, layout-based vocabulary.} -] -Rather, it is designed to cooperate with tools that offer these facilities. - -@section{Theory of operation} - -A document processor starts with input that we can think of as one giant line of text. It breaks this into smaller lines, and then distributes these lines across pages. Conceptually, it's a bin-packing problem. - -@itemlist[#:style 'ordered - @item{Quad starts with an input file written in the @code{#lang quad} markup language. For the most part, it's text with markup codes (though it may also include things like diagrams and images).} - - @item{Each markup entity is called a @defterm{quad}. A quad roughly corresponds to a box. ``Roughly'' because quads can have zero or negative dimension. Also, at the input stage, the contents of some quads may end up being spread across multiple non-overlapping boxes (e.g., a quad containing a word might be hyphenated to appear on two lines). The more precise description of a quad is therefore ``contiguous formatting region.'' Quads can be recursively nested inside other quads, thus the input file is tree-shaped.} - - @item{This tree-shaped input file is flattened into a list of atomic quads. ``Atomic'' because these are the smallest items the typesetter can manipulate. (For instance, the word @italic{bar} would become three one-character quads. An image or other indivisible box would remain as is.) During the flattening, tags from higher in the tree are propagated downward by copying them into the atomic quads. The result is a ``stateless'' representation of the input, in the sense that all the information needed to typeset an atomic quad is contained within the quad itself. - - @margin-note{The input is flattened because typesetting operations are easier to think about as a linear sequence (i.e., an imperative model). To see why, consider how you'd handle a page-break instruction within a tree model. No matter how deep you were in your typesetting tree, you'd have to jump back to the top level to handle your page break (because it affects the positioning of all subsequent items). Then you'd have to jump back to where you were, deep in the tree. That's not a natural way to traverse any tree. This is also why, to my mind, typesetting does not lend itself to a class- or object-based approach, as these create hierarchies that just lead you back to this tree problem.}} - - @item{Atomic quads are composed into lines using one of three algorithms. (A line is just a quad of a certain width.) The first-fit algorithm puts as many quads onto a line as it can before moving on to the next. The best-fit algorithm minimizes the total looseness of all the lines in a paragraph (aka the Knuth–Plass linebreaking algorithm developed for TeX). Because best-fit is more expensive, Quad also has an adaptive-fit algorithm that uses a statistical heuristic to guess whether the paragraph will benefit from best-fit; if not, it uses first-fit.} - - @item{If a typeset paragraph still exceeds certain looseness tolerances, it is hyphenated and the lines recalculated.} - - @item{Once the lines are broken, extra space is distributed within each line according to whether the line should appear centered, left-aligned, justified, etc. The result is a list of quads that fills the full column width.} - - @item{Lines are composed into columns. (A column is just a quad of a certain height.) To support things like footnotes, columns are composed using a backtracking constraint-satisfaction algorithm.} - - @item{Columns are composed into pages.} - - @item{This completes the typesetting phase. Note that at every step in the process, the document is represented in the Quad markup language. There isn't a distinction between the public and private markup interface, or the high- and low-level markup entities. Thus, external tools that generate Quad markup have some latitude.} - - @item{Before the typeset markup is passed to the renderer, it goes through a simplification phase — a lot of adjacent quads will have the same formatting characteristics, and these can be consolidated into runs of text.} - - @item{The renderer walks through the markup and draws each quad, using information in the markup attributes to determine position, color, font, size, style, etc.} - -] - - -@section{Enough talk — let's rock} - -Open DrRacket and start a new document with @code{#lang quad} as the first line: - -@codeblock|{ -#lang quad -Brennan and Dale like fancy sauce. -}| - -Save the document. Any place, any name is fine. - -Run the document. You'll get output like this: - -@racketvalfont{@code{(block '(measure 360.0 font "Times New Roman" x-align justify leading 14.0 size 11.5 x-align-last-line left column-count 1 column-gutter 10.0) "\n" "Brennan and Dale like fancy sauce. ")}} - -This is the compiled Quad markup, showing what will get sent to the typesetting engine. This output is itself valid Quad markup (meaning you could put it back in the definitions window and it would compile again). - -@code{#lang quad} uses the @"@"-expression reader for ease of use. But these @"@"-expressions become S-expressions in the usual manner. Also as usual, you can prefix any S-expressionized Quad markup with a @litchar{@"@"} in the definitions window to turn it back into an @"@"-expression. - -@margin-note{@secref["how-to:reader" #:doc '(lib "scribblings/scribble/scribble.scrbl")] introduces @"@"-expressions.} - -Now click the @onscreen{Render and Open PDF} button. After a moment, this should open your PDF previewing program with the Quad-generated PDF, which will say, unsurprisingly, ``Brennan and Dale like fancy sauce.'' - -As you work through the demo, you can alternatively use the @onscreen{Render PDF} button to regenerate the PDF without opening your previewer. (The Preview app on OS X, for instance, will automatically refresh when it detects the PDF has changed, which prevents a welter of windows.) - -@code{#lang quad} is a Racket-implemented DSL (= domain-specific language). It's not a language in the sense of Turing-complete. Rather, a @code{#lang quad} ``program'' resembles text annotated with high-level layout-description commands (not unlike XML/HTML). @code{#lang quad} programs can be written directly, or generated as the output of other programs. - -Each @"@"-expression in @code{#lang quad} is interpreted as a @italic{quad} (roughly a box; more precisely a contiguous formatting region). A quad has the following syntax: - -@code|{@quad-name[(list 'attr-name attr-val ...)]{text-or-more-quads ...}}| - -The @code{(list 'attr-name attr-val ...)} is an interleaved list of symbols and values, as you might provide to @racket[hash]. The attribute list is mandatory. If a quad has no attributes of its own, this can be signaled with either @racket[empty] or @racket[#f]: - -@codeblock|{ -@quad-name[empty]{text-or-more-quads ...} -@quad-name[#f]{text-or-more-quads ...} -}| - -If you thought this resembled an @link["http://docs.racket-lang.org/pollen/second-tutorial.html#%28part._.X-expressions%29"]{X-expression}, you wouldn't be wrong. Like X-expressions, quads are recursively composable. Also like X-expressions, the attributes in a quad apply to all the text or quads within, unless superseded by another attribute declaration deeper down. - -Let's see how this works. The simplest kind of quad is a @code{block}. If we wrap our text in a @code{block} without attributes, what happens to the PDF? - -@codeblock|{ -#lang quad -@block[#f]{Brennan and Dale like fancy sauce.} -}| - -Right — nothing. A block without attributes just evaporates. Move the boundaries of the block: - -@codeblock|{ -#lang quad -@block[#f]{Brennan and Dale} like fancy sauce. -}| - -Still the same. Let's add some bold formatting with the @code{weight} attribute: - -@codeblock|{ -#lang quad -@block['(weight bold)]{Brennan and Dale} like fancy sauce. -}| - -What an accomplishment. To show you that attributes are additive, we'll put a quad inside our quad: - -@codeblock|{ -#lang quad -@block['(weight bold)]{Brennan and @block['(color "red")]{Dale}} like fancy sauce. -}| - -You're getting the idea. In terms of type styling, here are the attributes and values that Quad understands: - -@code{'weight} = @code{'normal} (default) or @code{'bold} -@(linebreak)@code{'style} = @code{'normal} (default) or @code{'italic} -@(linebreak)@code{'font} = family name as string -@(linebreak)@code{'size} = point size as floating-point number -@(linebreak)@code{leading} = baseline-to-baseline measure in points -@(linebreak)@code{'color} = color string from @racket[color-database<%>] - -Feel free to impose these on your demo program. - -Though we're using @"@"-expressions, a @code{#lang quad} source file doesn't imply any formatting characteristics as it would in Scribble or Pollen. For instance, see what happens if you add two line breaks and some more text: - -@codeblock|{ -#lang quad -@block['(size 16)]{Brennan and @block['(color "red")]{Dale}} like fancy sauce. - -Derek does not. -}| - -The text ``Derek does not'' appears flush against the first sentence. In Scribble those linebreaks would suggest a paragraph break. In HTML they would suggest a word space. In @code{#lang quad} they suggest neither. Why not? Because @code{#lang quad} is strictly a language for describing explicit typesetting. Newlines have no meaning. - -OK, so how do we create a paragraph? Quad supports a special set of quads called @italic{breaks} that move the typesetting position. For instance, @code{@"@"(block-break)} will act like a carriage return, moving the next typeset item below the previous item and all the way to the left edge of the column: - -@codeblock|{ -#lang quad -@block['(size 16)]{Brennan and @block['(color "red")]{Dale}} like fancy sauce. -@(block-break) -Derek does not. -}| - -Now ``Derek does not'' appears on its own line. What about things like paragraph spacing and first-line indents? Again, because @code{#lang quad} is about explicit typesetting, all these things need to be inserted explicitly in the code. For instance, to make an indent, we add a @code{box} with a @code{'width} attribute: - -@codeblock|{ -#lang quad -@block['(size 16)]{Brennan and @block['(color "red")]{Dale}} like fancy sauce. -@(block-break) -@box['(width 15)] -Derek does not. -}| - -Quad also handles @code|{@(line-break)}|, @code|{@(column-break)}|, and @code|{@(page-break)}|. Try the last one: - -@codeblock|{ -#lang quad -@block['(size 16)]{Brennan and @block['(color "red")]{Dale}} like fancy sauce. -@(page-break) -@box['(width 15)] -Derek does not. -}| - -Next, let's look at Quad's linebreaking mechanism. For the next sample, please paste in a large block of plain text between the curly braces so you'll get some linewrapping: - -@codeblock|{ -#lang quad -@block[#f]{A text that goes on for a while ...} -}| - -You will see a block of justified text. The demo is running at maximum quality, so two other things will also be true. - -First, the lines are broken using the Knuth-Plass algorithm developed for TeX. This is a very nice algorithm that looks at all possible ways of breaking the lines in the paragraph and picks the one that leaves the smallest total gap at the right edge. (Quad will also hyphenate if necessary, but only if all the unhyphenated possibilities are bad.) - -Second, notice that punctuation hangs a little outside the text block. This is an optical adjustment that makes for neater-looking blocks. Whether you literally care about this kind of optical adjustment is not the point. The point is that the Quad typesetting engine @italic{permits} it. And that is really what we are going for here: a hackable typesetting engine. When you have fine control over all the page elements, then other things become possible (for instance, mathematical-equation typesetting, which is quite a bit more involved than just hanging punctuation off the edges). - -Justification is the default setting for the demo. To override this setting, use these attributes: - -@code{'x-align} = @code{'justify} (default), @code{'left}, @code{'center}, or @code{'right} -@code{'x-align-last-line} = @code{'justify} (default), @code{'left}, @code{'center}, or @code{'right} - - -@codeblock|{ -#lang quad -@block['(x-align center x-align-last-line center)]{A text that goes on for a while ...} -}| - -Then you can combine blocks with different styles: - -@codeblock|{ -#lang quad -@block['(x-align center x-align-last-line center size 24)]{Very important headline} -@(block-break) -@block['(style italic)]{A subhead that maybe lasts a few lines} -@(block-break) -@box['(width 10)]@block[#f]{A text that goes on for a while ...} -}| - -In sum, you can build up complex typesetting with a relatively small vocabulary of typesetting commands. - -You are welcome to shovel large quantities of plain text into your @code{#lang quad} window to see it broken into lines and paginated. - - -@section{Bottlenecks, roadblocks, & unanswered questions} - -In no particular order. - -@itemlist[#:style 'ordered - -@item{@bold{Flattening is wasteful.} Exploding the input into atomic quads and copying the attributes works, but it creates an enormous data structure with a huge amount of repetition. But, how do you create a stateless representation of the input? - -@italic{Possible improvements}: Put the attributes into a separate data structure that treats each attribute as having a scope. But this makes editing the input data more difficult & fragile, because you have two parallel structures to keep sychronized. Also, there's probably no reason that the attributes have to allow arbitrary key–value pairs. If the keys and certain values were reduced to a fixed vocabulary, they could be encoded as (smaller, quicker) integers rather than symbols and strings.} - -@item{@bold{Allocation is wasteful.} Many typesetting operations break bigger quads into smaller ones, or group smaller quads into bigger ones, etc. The result is that there's a lot of allocation & garbage collection relative to the typical Racket program. - -@italic{Possible improvements}: Perhaps the input can be fixed some structure and results of each typesetting operation stored as a set of edits (like a diff) rather than copying the whole structure.} - -@item{@bold{Pango text measuring is slow.} The most cumulatively expensive operation is measuring text so linebreaks can be calculated. @racketmodname[racket/draw] relies on Pango, which is fine for occasional UI stuff, but not zillions of lookups. (BTW Pango does have higher-level text-layout facilities which are of course faster than measuring characters individually. But the point of Quad is to micromanage the typesetting and thereby make things possible that are not in Pango.) - -@italic{Possible improvements}: First, use the FFI to measure text through the underlying FreeType library. This is a lot faster, but costs some functionality. Second, better caching (but see next note). -} - -@item{@bold{Caching is tricky.} Caching is an essential ingredient in a text-rendering system because so many measurements are reused. Two hard parts, however. First, simplifying the key logic so you don't end up with immensely huge hashtables with commensurately costly lookups. Second, preserving caches between runs of the program. Sure, save it on disk, but a giant hashtable in a .rktd file is still going to take a moment to be reconstituted into memory. - -@italic{Possible improvements}: Rely on disk-based hashtables, i.e., cache files that can be read & updated without having to reconstitute the whole file into a RAM-resident hashtable, and then write it all out again. I'm sure someone figured this out in 1972, I just haven't researched it yet.} - - -@item{@bold{Cairo's PDFs are weak.} Cairo's PDF generator is missing key features (e.g., @link["http://cairographics.org/roadmap/"]{hyperlinks}) and in general makes PDFs that are bigger and less capable than, say, @tt{tex2pdf}. Since PDFs are undoubtedly the #1 target format for a document processor, this is a major liability. OTOH, the idea of writing a PostScript/PDF compiler is, for me anyhow, daunting. - -@italic{Possible improvements}: Bite the bullet and make a PDF compiler. If one wants to be free of LaTeX, and have better-quality PDFs than Cairo allows, there's not really a second option.} - -@item{@bold{Overall performance is slow.} Outside of text measurement, most of Quad consists of simple mathematical operations. It seems like it should be highly optimizable. (Using Typed Racket, however, wasn't the answer.) - -@italic{Possible improvements}: Use more unsafe math operations, gingerly.} - - -@item{@bold{Dependencies are broad.} One reason switching to Typed Racket did nothing for Quad is that it touches a lot of other pieces of Racket. In TR's case, creating typed interfaces for untyped libraries consumed all the potential performance gains from static typing. But still, using a small slice of a lot of libraries adds a certain overhead.} - -@item{@bold{Glyph shaping is nowhere.} A proper 21st-century typesetting engine needs OpenType glyph shaping, and the only open-source game in town is @link["https://www.freedesktop.org/wiki/Software/HarfBuzz/"]{HarfBuzz}. Haven't used it, don't know how to integrate it.} - -@item{@bold{Parallel processing is difficult.} It's unclear to me how to exploit Racket's parallel-processing facilities to speed up typesetting. A typeset document is likely to have a lot of finely interdependent pieces (e.g., table of contents, table of authorities, footnotes, etc.)} - -@item{@bold{Run-to-run caching is difficult.} By this I mean that a common workflow in typesetting is to edit the document, preview the typesetting, make adjustments, preview again, etc. At each step, potentially not that much of the document is changing. But the typesetter needs to run start to finish anyhow. - -@italic{Possible improvements}: The most expensive operation is linebreaking. It would be nice to find a way to cache linebreaking between runs — e.g., ``this paragraph hasn't changed, so we can just reuse the linebreaks from last time.'' But this would require some kind of checksumming of each paragraph and disk caching, which itself would get expensive.} - -] - -@section{Why is it called Quad?} - -In letterpress printing, a @italic{quad} was a piece of metal used as spacing material within a line. \ No newline at end of file diff --git a/quad/quad/old-master/scribblings/racket.css b/quad/quad/old-master/scribblings/racket.css deleted file mode 100644 index b44fef59..00000000 --- a/quad/quad/old-master/scribblings/racket.css +++ /dev/null @@ -1,249 +0,0 @@ - -/* See the beginning of "scribble.css". */ - -/* Monospace: */ -.RktIn, .RktRdr, .RktPn, .RktMeta, -.RktMod, .RktKw, .RktVar, .RktSym, -.RktRes, .RktOut, .RktCmt, .RktVal, -.RktBlk { - font-family: monospace; - white-space: inherit; -} - -/* Serif: */ -.inheritedlbl { - font-family: serif; -} - -/* Sans-serif: */ -.RBackgroundLabelInner { - font-family: sans-serif; -} - -/* ---------------------------------------- */ -/* Inherited methods, left margin */ - -.inherited { - width: 100%; - margin-top: 0.5em; - text-align: left; - background-color: #ECF5F5; -} - -.inherited td { - font-size: 82%; - padding-left: 1em; - text-indent: -0.8em; - padding-right: 0.2em; -} - -.inheritedlbl { - font-style: italic; -} - -/* ---------------------------------------- */ -/* Racket text styles */ - -.RktIn { - color: #cc6633; - background-color: #eeeeee; -} - -.RktInBG { - background-color: #eeeeee; -} - -.RktRdr { -} - -.RktPn { - color: #843c24; -} - -.RktMeta { - color: black; -} - -.RktMod { - color: black; -} - -.RktOpt { - color: black; -} - -.RktKw { - color: black; -} - -.RktErr { - color: red; - font-style: italic; -} - -.RktVar { - color: #262680; - font-style: italic; -} - -.RktSym { - color: #262680; -} - -.RktSymDef { /* used with RktSym at def site */ -} - -.RktValLink { - text-decoration: none; - color: blue; -} - -.RktValDef { /* used with RktValLink at def site */ -} - -.RktModLink { - text-decoration: none; - color: blue; -} - -.RktStxLink { - text-decoration: none; - color: black; -} - -.RktStxDef { /* used with RktStxLink at def site */ -} - -.RktRes { - color: #0000af; -} - -.RktOut { - color: #960096; -} - -.RktCmt { - color: #c2741f; -} - -.RktVal { - color: #228b22; -} - -/* ---------------------------------------- */ -/* Some inline styles */ - -.together { - width: 100%; -} - -.prototype, .argcontract, .RBoxed { - white-space: nowrap; -} - -.prototype td { - vertical-align: text-top; -} - -.RktBlk { - white-space: inherit; - text-align: left; -} - -.RktBlk tr { - white-space: inherit; -} - -.RktBlk td { - vertical-align: baseline; - white-space: inherit; -} - -.argcontract td { - vertical-align: text-top; -} - -.highlighted { - background-color: #ddddff; -} - -.defmodule { - width: 100%; - background-color: #F5F5DC; -} - -.specgrammar { - float: right; -} - -.RBibliography td { - vertical-align: text-top; -} - -.leftindent { - margin-left: 1em; - margin-right: 0em; -} - -.insetpara { - margin-left: 1em; - margin-right: 1em; -} - -.Rfilebox { -} - -.Rfiletitle { - text-align: right; - margin: 0em 0em 0em 0em; -} - -.Rfilename { - border-top: 1px solid #6C8585; - border-right: 1px solid #6C8585; - padding-left: 0.5em; - padding-right: 0.5em; - background-color: #ECF5F5; -} - -.Rfilecontent { - margin: 0em 0em 0em 0em; -} - -.RpackageSpec { - padding-right: 0.5em; -} - -/* ---------------------------------------- */ -/* For background labels */ - -.RBackgroundLabel { - float: right; - width: 0px; - height: 0px; -} - -.RBackgroundLabelInner { - position: relative; - width: 25em; - left: -25.5em; - top: 0px; - text-align: right; - color: white; - z-index: 0; - font-weight: bold; -} - -.RForeground { - position: relative; - left: 0px; - top: 0px; - z-index: 1; -} - -/* ---------------------------------------- */ -/* History */ - -.SHistory { - font-size: 82%; -} diff --git a/quad/quad/old-master/scribblings/scribble-common.js b/quad/quad/old-master/scribblings/scribble-common.js deleted file mode 100644 index 1ec7da58..00000000 --- a/quad/quad/old-master/scribblings/scribble-common.js +++ /dev/null @@ -1,170 +0,0 @@ -// Common functionality for PLT documentation pages - -// Page Parameters ------------------------------------------------------------ - -var page_query_string = location.search.substring(1); - -var page_args = - ((function(){ - if (!page_query_string) return []; - var args = page_query_string.split(/[&;]/); - for (var i=0; i= 0) args[i] = [a.substring(0,p), a.substring(p+1)]; - else args[i] = [a, false]; - } - return args; - })()); - -function GetPageArg(key, def) { - for (var i=0; i= 0 && cur.substring(0,eql) == key) - return unescape(cur.substring(eql+1)); - } - return def; - } -} - -function SetCookie(key, val) { - try { - localStorage[key] = val; - } catch(e) { - var d = new Date(); - d.setTime(d.getTime()+(365*24*60*60*1000)); - try { - document.cookie = - key + "=" + escape(val) + "; expires="+ d.toGMTString() + "; path=/"; - } catch (e) {} - } -} - -// note that this always stores a directory name, ending with a "/" -function SetPLTRoot(ver, relative) { - var root = location.protocol + "//" + location.host - + NormalizePath(location.pathname.replace(/[^\/]*$/, relative)); - SetCookie("PLT_Root."+ver, root); -} - -// adding index.html works because of the above -function GotoPLTRoot(ver, relative) { - var u = GetCookie("PLT_Root."+ver, null); - if (u == null) return true; // no cookie: use plain up link - // the relative path is optional, default goes to the toplevel start page - if (!relative) relative = "index.html"; - location = u + relative; - return false; -} - -// Utilities ------------------------------------------------------------------ - -var normalize_rxs = [/\/\/+/g, /\/\.(\/|$)/, /\/[^\/]*\/\.\.(\/|$)/]; -function NormalizePath(path) { - var tmp, i; - for (i = 0; i < normalize_rxs.length; i++) - while ((tmp = path.replace(normalize_rxs[i], "/")) != path) path = tmp; - return path; -} - -// `noscript' is problematic in some browsers (always renders as a -// block), use this hack instead (does not always work!) -// document.write(""); - -// Interactions --------------------------------------------------------------- - -function DoSearchKey(event, field, ver, top_path) { - var val = field.value; - if (event && event.keyCode == 13) { - var u = GetCookie("PLT_Root."+ver, null); - if (u == null) u = top_path; // default: go to the top path - u += "search/index.html?q=" + encodeURIComponent(val); - u = MergePageArgsIntoUrl(u); - location = u; - return false; - } - return true; -} - -function TocviewToggle(glyph, id) { - var s = document.getElementById(id).style; - var expand = s.display == "none"; - s.display = expand ? "block" : "none"; - glyph.innerHTML = expand ? "▼" : "►"; -} - -// Page Init ------------------------------------------------------------------ - -// Note: could make a function that inspects and uses window.onload to chain to -// a previous one, but this file needs to be required first anyway, since it -// contains utilities for all other files. -var on_load_funcs = []; -function AddOnLoad(fun) { on_load_funcs.push(fun); } -window.onload = function() { - for (var i=0; i - .techinside doesn't work with IE, so use both (and IE doesn't - work with inherit in the second one, so use blue directly) */ -.techinside { color: black; } -.techinside:hover { color: blue; } -.techoutside:hover>.techinside { color: inherit; } - -.SCentered { - text-align: center; -} - -.imageleft { - float: left; - margin-right: 0.3em; -} - -.Smaller { - font-size: 82%; -} - -.Larger { - font-size: 122%; -} - -/* A hack, inserted to break some Scheme ids: */ -.mywbr { - display: inline-block; - height: 0; - width: 0; - font-size: 1px; -} - -.compact li p { - margin: 0em; - padding: 0em; -} - -.noborder img { - border: 0; -} - -.SAuthorListBox { - position: relative; - float: right; - left: 2em; - top: -2.5em; - height: 0em; - width: 13em; - margin: 0em -13em 0em 0em; -} -.SAuthorList { - font-size: 82%; -} -.SAuthorList:before { - content: "by "; -} -.author { - display: inline; - white-space: nowrap; -} - -/* print styles : hide the navigation elements */ -@media print { - .tocset, - .navsettop, - .navsetbottom { display: none; } - .maincolumn { - width: auto; - margin-right: 13em; - margin-left: 0; - } -} diff --git a/quad/quad/old-master/segfault.rkt b/quad/quad/old-master/segfault.rkt deleted file mode 100644 index a4ea156c..00000000 --- a/quad/quad/old-master/segfault.rkt +++ /dev/null @@ -1,17 +0,0 @@ -#lang racket/base -(require "typeset.rkt" "samples.rkt" "render.rkt" "world.rkt" racket/class "logger.rkt") - -(module+ main - (define line-limit (with-handlers ([exn:fail? (λ(exn) #f)]) - (string->number (vector-ref (current-command-line-arguments) 0)))) - (activate-logger quad-logger) - (parameterize ([world:quality-default world:max-quality] - [world:paper-width-default 412] - [world:paper-height-default 600]) - (define path "texts/segfault.txt") - (displayln "Making text sample") - (define text-sample (time (make-sample path line-limit))) - (displayln "Typsetting sample") - (define typeset-sample (time (typeset text-sample))) - (displayln "Rendering sample to PDF") - (time (send (new pdf-renderer%) render-to-file typeset-sample "texts/segfault.pdf")))) \ No newline at end of file diff --git a/quad/quad/old-master/stats-data.txt b/quad/quad/old-master/stats-data.txt deleted file mode 100644 index 88985c19..00000000 --- a/quad/quad/old-master/stats-data.txt +++ /dev/null @@ -1 +0,0 @@ -((3) 0 () 0 () () (c (h - (equal) (text u . "The schoolmaster was leaving the village, and everybody seemed sorry. The miller at Cresscombe lent him the small white tilted cart and horse to carry his goods to the city of his destination, about twenty miles off, such a vehicle proving of quite sufficient size for the departing teacher’s effects. For the schoolhouse had been partly furnished by the managers, and the only cumbersome article possessed by the master, in addition to the packing-case of books, was a cottage piano that he had bought at an auction during the year in which he thought of learning instrumental music. But the enthusiasm having waned he had never acquired any skill in playing, and the purchased article had been a perpetual trouble to him ever since in moving house.") (measure . 150) (bh h - (equal) (time . 48) (line-count . 25) (looseness-spread . 0.1881) (bps q 6 13 18 24 30 37 44 51 60 65 71 77 84 91 99 106 113 121 128 135 141 148 156 164) (piece-count . 168) (avg-piece-length . 18.455788690476183) (avg-looseness . 0.087) (looseness-sd . 0.060070777554250304) (looseness-variance . 0.0036084983159722223) (looses q 0.1726 0.0897 0.1581 0.0578 0.1218 0.1354 0.116 0.1139 0.0016 0.0433 0.0164 0.1875 0.0837 0.1631 0.0683 0.1149 0.1381 0.0269 0.0058 0.0597 -0.0006 0.1708 0.0088 0.0355 0.4925)) (fu h - (equal) (time . 34) (line-count . 25) (looseness-spread . 0.196) (bps q 4 8 13 18 24 32 36 42 47 51 56 61 65 70 76 82 88 94 98 102 107 113 119 124) (piece-count . 128) (avg-piece-length . 24.223222656249998) (avg-looseness . 0.0982) (looseness-sd . 0.06536486576964214) (looseness-variance . 0.004272565677083334) (looses q 0.0811 0.2013 0.1581 0.0578 0.1218 0.0294 0.0415 0.1249 0.1912 0.0433 0.0164 0.0414 0.1304 0.1749 0.0667 0.0547 0.1593 0.1656 0.0058 0.1879 0.1726 0.0053 0.0165 0.108 0.3183)) (bu h - (equal) (time . 79) (line-count . 25) (looseness-spread . 0.196) (bps q 4 8 13 18 24 31 35 41 47 51 56 61 65 70 76 82 88 94 98 102 107 113 118 124) (piece-count . 128) (avg-piece-length . 24.223222656249998) (avg-looseness . 0.0982) (looseness-sd . 0.060810839305861696) (looseness-variance . 0.0036979581770833336) (looses q 0.0811 0.2013 0.1581 0.0578 0.1218 0.1354 0.116 0.0224 0.1132 0.0433 0.0164 0.0414 0.1304 0.1749 0.0667 0.0547 0.1593 0.1656 0.0058 0.1879 0.1726 0.0053 0.0664 0.0581 0.3183)) (fh h - (equal) (time . 23) (line-count . 25) (looseness-spread . 0.1865) (bps q 7 13 18 24 30 38 45 53 60 65 71 78 85 93 100 107 115 122 129 136 141 149 157 165) (piece-count . 168) (avg-piece-length . 18.455788690476183) (avg-looseness . 0.0847) (looseness-sd . 0.06252518770241496) (looseness-variance . 0.0039093990972222225) (looses q 0.0811 0.2013 0.1581 0.0578 0.1218 0.0294 0.0415 0.1249 0.1912 0.0433 0.0164 0.0414 0.1304 0.0218 0.1981 0.0547 0.0304 0.0148 0.0604 0.187 0.111 0.0419 0.0165 0.0578 0.5689)) (fh-improved . 471) (bu-improved . 4) (bh-improved . 19)) c (h - (equal) (text u . "The rector had gone away for the day, being a man who disliked the sight of changes. He did not mean to return till the evening, when the new school-teacher would have arrived and settled in, and everything would be smooth again.") (measure . 150) (bh h - (equal) (time . 8) (line-count . 8) (looseness-spread . 0.1032) (bps q 7 14 20 27 32 37 44) (piece-count . 47) (avg-piece-length . 20.3178085106383) (avg-looseness . 0.08) (looseness-sd . 0.033468949972248876) (looseness-variance . 0.001120170612244898) (looses q 0.1042 0.1203 0.1 0.0933 0.0784 0.0469 0.0171 0.5002)) (fu h - (equal) (time . 9) (line-count . 8) (looseness-spread . 0.22) (bps q 6 12 18 25 30 35 40) (piece-count . 43) (avg-piece-length . 22.20783720930233) (avg-looseness . 0.0831) (looseness-sd . 0.06898301476835159) (looseness-variance . 0.004758656326530613) (looses q 0.1042 0.231 0.011 0.0933 0.0784 0.0469 0.0171 0.5002)) (bu h - (equal) (time . 8) (line-count . 8) (looseness-spread . 0.22) (bps q 6 12 18 25 30 35 40) (piece-count . 43) (avg-piece-length . 22.20783720930233) (avg-looseness . 0.0831) (looseness-sd . 0.06898301476835159) (looseness-variance . 0.004758656326530613) (looses q 0.1042 0.231 0.011 0.0933 0.0784 0.0469 0.0171 0.5002)) (fh h - (equal) (time . 7) (line-count . 8) (looseness-spread . 0.1032) (bps q 7 14 20 27 32 37 44) (piece-count . 47) (avg-piece-length . 20.3178085106383) (avg-looseness . 0.08) (looseness-sd . 0.033468949972248876) (looseness-variance . 0.001120170612244898) (looses q 0.1042 0.1203 0.1 0.0933 0.0784 0.0469 0.0171 0.5002)) (fh-improved . 15) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "The blacksmith, the farm bailiff, and the schoolmaster himself were standing in perplexed attitudes in the parlour before the instrument. The master had remarked that even if he got it into the cart he should not know what to do with it on his arrival at Christminster, the city he was bound for, since he was only going into temporary lodgings just at first.") (measure . 150) (bh h - (equal) (time . 13) (line-count . 12) (looseness-spread . 0.1294) (bps q 6 13 20 27 33 40 47 55 63 69 76) (piece-count . 79) (avg-piece-length . 18.455898734177218) (avg-looseness . 0.0715) (looseness-sd . 0.0426730022844297) (looseness-variance . 0.0018209851239669422) (looses q 0.0332 0.1038 0.0566 0.0726 0.1409 0.0846 0.0119 0.0488 0.0115 0.1384 0.0844 0.6704)) (fu h - (equal) (time . 29) (line-count . 12) (looseness-spread . 0.1676) (bps q 5 9 13 18 23 30 37 45 51 57 61) (piece-count . 64) (avg-piece-length . 22.78150000000001) (avg-looseness . 0.0735) (looseness-sd . 0.05126816227260265) (looseness-variance . 0.0026284244628099174) (looses q 0.0332 0.1038 0.1791 0.0874 0.0253 0.0846 0.0119 0.0488 0.0115 0.1384 0.0844 0.6704)) (bu h - (equal) (time . 12) (line-count . 12) (looseness-spread . 0.1676) (bps q 5 9 13 18 23 30 37 45 51 57 61) (piece-count . 64) (avg-piece-length . 22.78150000000001) (avg-looseness . 0.0735) (looseness-sd . 0.05126816227260265) (looseness-variance . 0.0026284244628099174) (looses q 0.0332 0.1038 0.1791 0.0874 0.0253 0.0846 0.0119 0.0488 0.0115 0.1384 0.0844 0.6704)) (fh h - (equal) (time . 11) (line-count . 12) (looseness-spread . 0.1294) (bps q 6 13 20 27 33 40 47 55 63 69 76) (piece-count . 79) (avg-piece-length . 18.455898734177218) (avg-looseness . 0.0715) (looseness-sd . 0.0426730022844297) (looseness-variance . 0.0018209851239669422) (looses q 0.0332 0.1038 0.0566 0.0726 0.1409 0.0846 0.0119 0.0488 0.0115 0.1384 0.0844 0.6704)) (fh-improved . 100) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "A little boy of eleven, who had been thoughtfully assisting in the packing, joined the group of men, and as they rubbed their chins he spoke up, blushing at the sound of his own voice: “Aunt have got a great fuel-house, and it could be put there, perhaps, till you’ve found a place to settle in, sir.”") (measure . 150) (bh h - (equal) (time . 12) (line-count . 10) (looseness-spread . 0.165) (bps q 8 14 20 26 32 39 45 52 58) (piece-count . 65) (avg-piece-length . 18.452015384615382) (avg-looseness . 0.1032) (looseness-sd . 0.04867753556966296) (looseness-variance . 0.0023695024691358026) (looses q 0.0724 0.1062 0.1082 0.175 0.0859 0.1814 0.114 0.0697 0.0164 0.3213)) (fu h - (equal) (time . 12) (line-count . 10) (looseness-spread . 0.2201) (bps q 7 12 17 23 29 35 41 48 53) (piece-count . 58) (avg-piece-length . 20.678982758620695) (avg-looseness . 0.1081) (looseness-sd . 0.0691530669360851) (looseness-variance . 0.0047821466666666665) (looses q 0.0724 -0.0095 0.1459 0.0901 0.0851 0.185 0.2106 0.0298 0.1638 0.3712)) (bu h - (equal) (time . 24) (line-count . 10) (looseness-spread . 0.1808) (bps q 7 11 17 23 29 35 41 48 53) (piece-count . 58) (avg-piece-length . 20.678982758620695) (avg-looseness . 0.1081) (looseness-sd . 0.06133038036369541) (looseness-variance . 0.0037614155555555553) (looses q 0.0724 0.1062 0.0302 0.0901 0.0851 0.185 0.2106 0.0298 0.1638 0.3712)) (fh h - (equal) (time . 9) (line-count . 10) (looseness-spread . 0.2201) (bps q 8 15 21 27 34 40 46 53 59) (piece-count . 65) (avg-piece-length . 18.452015384615382) (avg-looseness . 0.1081) (looseness-sd . 0.0691530669360851) (looseness-variance . 0.0047821466666666665) (looses q 0.0724 -0.0095 0.1459 0.0901 0.0851 0.185 0.2106 0.0298 0.1638 0.3712)) (fh-improved . 38) (bu-improved . 1) (bh-improved . 9)) c (h - (equal) (text u . "It was decided that a deputation should wait on the boy’s aunt—an old maiden resident—and ask her if she would house the piano till Mr. Phillotson should send for it. The smith and the bailiff started to see about the practicability of the suggested shelter, and the boy and the schoolmaster were left standing alone.") (measure . 150) (bh h - (equal) (time . 14) (line-count . 10) (looseness-spread . 0.0936) (bps q 9 15 23 30 36 43 50 59 66) (piece-count . 72) (avg-piece-length . 17.800402777777776) (avg-looseness . 0.0417) (looseness-sd . 0.029121308646486863) (looseness-variance . 0.0008480506172839504) (looses q 0.0222 0.0233 -0.0026 0.011 0.074 0.0595 0.091 0.0403 0.0564 0.168)) (fu h - (equal) (time . 11) (line-count . 11) (looseness-spread . 0.2921) (bps q 6 12 18 25 30 37 42 46 52 56) (piece-count . 57) (avg-piece-length . 22.484719298245615) (avg-looseness . 0.0755) (looseness-sd . 0.08416478182708013) (looseness-variance . 0.007083710499999998) (looses q 0.0222 0.0233 -0.0026 0.011 0.074 0.0595 0.2895 0.0887 0.1583 0.0316 0.8314)) (bu h - (equal) (time . 11) (line-count . 11) (looseness-spread . 0.1361) (bps q 6 12 17 24 29 36 42 46 52 56) (piece-count . 57) (avg-piece-length . 22.484719298245615) (avg-looseness . 0.0755) (looseness-sd . 0.04183613868415679) (looseness-variance . 0.0017502625) (looses q 0.0222 0.0233 0.1129 0.0825 0.0476 0.089 0.0994 0.0887 0.1583 0.0316 0.8314)) (fh h - (equal) (time . 10) (line-count . 10) (looseness-spread . 0.1097) (bps q 9 15 23 30 36 43 51 59 66) (piece-count . 72) (avg-piece-length . 17.800402777777776) (avg-looseness . 0.0417) (looseness-sd . 0.03297628777706119) (looseness-variance . 0.0010874355555555556) (looses q 0.0222 0.0233 -0.0026 0.011 0.074 0.0595 0.0241 0.1071 0.0564 0.168)) (fh-improved . 64) (bu-improved . 4) (bh-improved . 1)) c (h - (equal) (text u . "Tears rose into the boy’s eyes, for he was not among the regular day scholars, who came unromantically close to the schoolmaster’s life, but one who had attended the night school only during the present teacher’s term of office. The regular scholars, if the truth must be told, stood at the present moment afar off, like certain historic disciples, indisposed to any enthusiastic volunteering of aid.") (measure . 150) (bh h - (equal) (time . 18) (line-count . 13) (looseness-spread . 0.1673) (bps q 6 15 21 28 35 40 45 53 60 65 72 79) (piece-count . 88) (avg-piece-length . 18.639670454545453) (avg-looseness . 0.0994) (looseness-sd . 0.051226813183028366) (looseness-variance . 0.002624186388888889) (looses q 0.0937 -0.003 0.1126 0.0963 0.0783 0.0761 0.1377 0.0106 0.1405 0.1229 0.1626 0.1643 0.039)) (fu h - (equal) (time . 16) (line-count . 14) (looseness-spread . 0.2908) (bps q 6 13 17 21 26 31 35 40 45 51 56 59 63) (piece-count . 65) (avg-piece-length . 25.235246153846152) (avg-looseness . 0.1454) (looseness-sd . 0.09075361730120976) (looseness-variance . 0.008236219053254439) (looses q 0.0937 -0.003 0.2786 0.1722 0.0086 0.0963 0.2878 0.1271 0.1465 0.2257 0.1216 0.2519 0.0836 0.4227)) (bu h - (equal) (time . 13) (line-count . 14) (looseness-spread . 0.2039) (bps q 5 11 16 20 24 29 34 39 44 50 55 59 63) (piece-count . 65) (avg-piece-length . 25.235246153846152) (avg-looseness . 0.1466) (looseness-sd . 0.05168919175590481) (looseness-variance . 0.002671772544378698) (looses q 0.2467 0.1765 0.1082 0.1094 0.1693 0.2106 0.1426 0.0428 0.174 0.1682 0.1469 0.1273 0.0836 0.4227)) (fh h - (equal) (time . 29) (line-count . 13) (looseness-spread . 0.1435) (bps q 6 15 21 28 35 40 45 53 60 65 73 80) (piece-count . 88) (avg-piece-length . 18.639670454545453) (avg-looseness . 0.081) (looseness-sd . 0.04424544860459912) (looseness-variance . 0.001957659722222222) (looses q 0.0937 -0.003 0.1126 0.0963 0.0783 0.0761 0.1377 0.0106 0.1405 0.1229 0.0519 0.0546 0.216)) (fh-improved . 121) (bu-improved . 14) (bh-improved . 2)) c (h - (equal) (text u . "The boy awkwardly opened the book he held in his hand, which Mr. Phillotson had bestowed on him as a parting gift, and admitted that he was sorry.") (measure . 150) (bh h - (equal) (time . 5) (line-count . 5) (looseness-spread . 0.0149) (bps q 6 13 19 27) (piece-count . 32) (avg-piece-length . 19.244890625000004) (avg-looseness . 0.0383) (looseness-sd . 0.005899576255969576) (looseness-variance . 3.4805e-05) (looses q 0.0422 0.0347 0.0307 0.0456 0.3648)) (fu h - (equal) (time . 4) (line-count . 5) (looseness-spread . 0.2132) (bps q 5 12 17 23) (piece-count . 28) (avg-piece-length . 21.99416071428572) (avg-looseness . 0.0879) (looseness-sd . 0.09017561685400327) (looseness-variance . 0.008131641875) (looses q 0.0422 0.0347 0.0307 0.2439 0.1881)) (bu h - (equal) (time . 5) (line-count . 5) (looseness-spread . 0.1146) (bps q 5 12 16 23) (piece-count . 28) (avg-piece-length . 21.99416071428572) (avg-looseness . 0.0879) (looseness-sd . 0.05021814288680934) (looseness-variance . 0.0025218618749999998) (looses q 0.0422 0.0347 0.1253 0.1493 0.1881)) (fh h - (equal) (time . 4) (line-count . 5) (looseness-spread . 0.0149) (bps q 6 13 19 27) (piece-count . 32) (avg-piece-length . 19.244890625000004) (avg-looseness . 0.0383) (looseness-sd . 0.005899576255969576) (looseness-variance . 3.4805e-05) (looses q 0.0422 0.0347 0.0307 0.0456 0.3648)) (fh-improved . 8) (bu-improved . 1) (bh-improved . 0)) c (h - (equal) (text u . "“Ah—that would be a long story. You wouldn’t understand my reasons, Jude. You will, perhaps, when you are older.”") (measure . 150) (bh h - (equal) (time . 4) (line-count . 4) (looseness-spread . 0.1815) (bps q 6 11 18) (piece-count . 23) (avg-piece-length . 21.266999999999996) (avg-looseness . 0.0967) (looseness-sd . 0.08206936090892873) (looseness-variance . 0.00673538) (looses q 0.2124 0.0309 0.0468 0.2213)) (fu h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.1815) (bps q 6 10 15) (piece-count . 20) (avg-piece-length . 24.457049999999995) (avg-looseness . 0.1433) (looseness-sd . 0.08017368645634301) (looseness-variance . 0.00642782) (looses q 0.2124 0.0309 0.1866 0.1195)) (bu h - (equal) (time . 4) (line-count . 4) (looseness-spread . 0.1815) (bps q 6 10 15) (piece-count . 20) (avg-piece-length . 24.457049999999995) (avg-looseness . 0.1433) (looseness-sd . 0.08017368645634301) (looseness-variance . 0.00642782) (looses q 0.2124 0.0309 0.1866 0.1195)) (fh h - (equal) (time . 4) (line-count . 4) (looseness-spread . 0.1815) (bps q 6 11 18) (piece-count . 23) (avg-piece-length . 21.266999999999996) (avg-looseness . 0.0967) (looseness-sd . 0.08206936090892873) (looseness-variance . 0.00673538) (looses q 0.2124 0.0309 0.0468 0.2213)) (fh-improved . 4) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Well—don’t speak of this everywhere. You know what a university is, and a university degree? It is the necessary hallmark of a man who wants to do anything in teaching. My scheme, or dream, is to be a university graduate, and then to be ordained. By going to live at Christminster, or near it, I shall be at headquarters, so to speak, and if my scheme is practicable at all, I consider that being on the spot will afford me a better chance of carrying it out than I should have elsewhere.”") (measure . 150) (bh h - (equal) (time . 21) (line-count . 16) (looseness-spread . 0.1794) (bps q 5 11 20 28 35 42 50 58 65 73 81 90 98 106 115) (piece-count . 119) (avg-piece-length . 16.541445378151263) (avg-looseness . 0.0896) (looseness-sd . 0.047395077100194) (looseness-variance . 0.0022462933333333335) (looses q 0.2092 0.085 0.1049 0.0662 0.1432 0.1459 0.0298 0.1286 0.0598 0.0385 0.0616 0.0485 0.0966 0.0664 0.0598 0.2918)) (fu h - (equal) (time . 16) (line-count . 16) (looseness-spread . 0.1799) (bps q 5 10 15 20 27 32 39 44 51 57 63 69 76 83 90) (piece-count . 93) (avg-piece-length . 21.165935483870978) (avg-looseness . 0.0925) (looseness-sd . 0.05659399811130348) (looseness-variance . 0.003202880622222222) (looses q 0.2092 0.085 0.1049 0.2 0.0311 0.1459 0.1508 0.0293 0.0598 0.0385 0.0616 0.0485 0.0966 0.0664 0.0598 0.2918)) (bu h - (equal) (time . 17) (line-count . 16) (looseness-spread . 0.1799) (bps q 5 10 15 20 26 32 39 44 51 57 63 69 76 83 90) (piece-count . 93) (avg-piece-length . 21.165935483870978) (avg-looseness . 0.0925) (looseness-sd . 0.05310518451358796) (looseness-variance . 0.002820160622222222) (looses q 0.2092 0.085 0.1049 0.2 0.1091 0.0679 0.1508 0.0293 0.0598 0.0385 0.0616 0.0485 0.0966 0.0664 0.0598 0.2918)) (fh h - (equal) (time . 29) (line-count . 16) (looseness-spread . 0.2106) (bps q 5 11 20 28 36 42 50 59 65 73 81 90 98 106 115) (piece-count . 119) (avg-piece-length . 16.541445378151263) (avg-looseness . 0.0896) (looseness-sd . 0.06079714905596588) (looseness-variance . 0.0036962933333333325) (looses q 0.2092 0.085 0.1049 0.0662 0.0487 0.2404 0.0298 0.0406 0.1478 0.0385 0.0616 0.0485 0.0966 0.0664 0.0598 0.2918)) (fh-improved . 198) (bu-improved . 1) (bh-improved . 2)) c (h - (equal) (text u . "The smith and his companion returned. Old Miss Fawley’s fuel-house was dry, and eminently practicable; and she seemed willing to give the instrument standing-room there. It was accordingly left in the school till the evening, when more hands would be available for removing it; and the schoolmaster gave a final glance round.") (measure . 150) (bh h - (equal) (time . 13) (line-count . 11) (looseness-spread . 0.1947) (bps q 7 12 18 25 31 37 44 49 55 62) (piece-count . 69) (avg-piece-length . 19.830333333333336) (avg-looseness . 0.1142) (looseness-sd . 0.056313306597996896) (looseness-variance . 0.0031711885000000003) (looses q 0.0854 0.1248 0.142 0.1824 0.2087 0.014 0.1367 0.1264 0.067 0.0551 0.0205)) (fu h - (equal) (time . 11) (line-count . 12) (looseness-spread . 0.264) (bps q 5 9 14 18 23 27 33 38 43 48 53) (piece-count . 54) (avg-piece-length . 25.338759259259252) (avg-looseness . 0.1283) (looseness-sd . 0.0869537998352293) (looseness-variance . 0.007560963305785124) (looses q 0.0854 0.1248 0.278 0.068 0.2087 0.014 0.1367 0.1264 0.067 0.2753 0.0268 0.812)) (bu h - (equal) (time . 11) (line-count . 12) (looseness-spread . 0.264) (bps q 5 9 14 18 23 27 33 38 43 48 53) (piece-count . 54) (avg-piece-length . 25.338759259259252) (avg-looseness . 0.1283) (looseness-sd . 0.0869537998352293) (looseness-variance . 0.007560963305785124) (looses q 0.0854 0.1248 0.278 0.068 0.2087 0.014 0.1367 0.1264 0.067 0.2753 0.0268 0.812)) (fh h - (equal) (time . 9) (line-count . 11) (looseness-spread . 0.1947) (bps q 7 12 18 25 31 37 44 49 55 62) (piece-count . 69) (avg-piece-length . 19.830333333333336) (avg-looseness . 0.1142) (looseness-sd . 0.056313306597996896) (looseness-variance . 0.0031711885000000003) (looses q 0.0854 0.1248 0.142 0.1824 0.2087 0.014 0.1367 0.1264 0.067 0.0551 0.0205)) (fh-improved . 82) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "The boy Jude assisted in loading some small articles, and at nine o’clock Mr. Phillotson mounted beside his box of books and other impedimenta, and bade his friends good-bye.") (measure . 150) (bh h - (equal) (time . 7) (line-count . 6) (looseness-spread . 0.1749) (bps q 7 14 19 25 32) (piece-count . 34) (avg-piece-length . 21.65077941176471) (avg-looseness . 0.0512) (looseness-sd . 0.06255653443086501) (looseness-variance . 0.00391332) (looses q 0.0149 0.0447 0.0263 0.1725 -0.0024 0.4854)) (fu h - (equal) (time . 6) (line-count . 6) (looseness-spread . 0.1872) (bps q 6 12 16 23 27) (piece-count . 29) (avg-piece-length . 25.383672413793107) (avg-looseness . 0.0512) (looseness-sd . 0.0660307322388598) (looseness-variance . 0.004360057599999999) (looses q 0.0149 0.0447 0.0263 -0.0085 0.1787 0.4854)) (bu h - (equal) (time . 6) (line-count . 6) (looseness-spread . 0.1749) (bps q 6 12 16 22 27) (piece-count . 29) (avg-piece-length . 25.383672413793107) (avg-looseness . 0.0512) (looseness-sd . 0.06255653443086501) (looseness-variance . 0.00391332) (looses q 0.0149 0.0447 0.0263 0.1725 -0.0024 0.4854)) (fh h - (equal) (time . 5) (line-count . 6) (looseness-spread . 0.1872) (bps q 7 14 19 26 32) (piece-count . 34) (avg-piece-length . 21.65077941176471) (avg-looseness . 0.0512) (looseness-sd . 0.0660307322388598) (looseness-variance . 0.004360057599999999) (looses q 0.0149 0.0447 0.0263 -0.0085 0.1787 0.4854)) (fh-improved . 14) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. “Be a good boy, remember; and be kind to animals and birds, and read all you can. And if ever you come to Christminster remember you hunt me out for old acquaintance’ sake.”") (measure . 150) (bh h - (equal) (time . 9) (line-count . 8) (looseness-spread . 0.1525) (bps q 7 14 21 29 36 43 50) (piece-count . 54) (avg-piece-length . 18.791) (avg-looseness . 0.0677) (looseness-sd . 0.04772551621469571) (looseness-variance . 0.002277724897959183) (looses q 0.1024 0.0407 0.0574 0.0137 0.1662 0.0325 0.0608 0.2883)) (fu h - (equal) (time . 9) (line-count . 8) (looseness-spread . 0.1667) (bps q 6 12 18 25 33 37 43) (piece-count . 46) (avg-piece-length . 22.059) (avg-looseness . 0.0677) (looseness-sd . 0.053631771728850336) (looseness-variance . 0.0028763669387755104) (looses q 0.1024 0.0407 0.0574 0.0137 0.0184 0.1804 0.0608 0.2883)) (bu h - (equal) (time . 21) (line-count . 8) (looseness-spread . 0.1525) (bps q 6 12 18 25 32 37 43) (piece-count . 46) (avg-piece-length . 22.059) (avg-looseness . 0.0677) (looseness-sd . 0.04772551621469571) (looseness-variance . 0.002277724897959183) (looses q 0.1024 0.0407 0.0574 0.0137 0.1662 0.0325 0.0608 0.2883)) (fh h - (equal) (time . 7) (line-count . 8) (looseness-spread . 0.1667) (bps q 7 14 21 29 37 43 50) (piece-count . 54) (avg-piece-length . 18.791) (avg-looseness . 0.0677) (looseness-sd . 0.053631771728850336) (looseness-variance . 0.0028763669387755104) (looses q 0.1024 0.0407 0.0574 0.0137 0.0184 0.1804 0.0608 0.2883)) (fh-improved . 27) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "The cart creaked across the green, and disappeared round the corner by the rectory-house. The boy returned to the draw-well at the edge of the greensward, where he had left his buckets when he went to help his patron and teacher in the loading. There was a quiver in his lip now and after opening the well-cover to begin lowering the bucket he paused and leant with his forehead and arms against the framework, his face wearing the fixity of a thoughtful child’s who has felt the pricks of life somewhat before his time. The well into which he was looking was as ancient as the village itself, and from his present position appeared as a long circular perspective ending in a shining disk of quivering water at a distance of a hundred feet down. There was a lining of green moss near the top, and nearer still the hart’s-tongue fern.") (measure . 150) (bh h - (equal) (time . 46) (line-count . 27) (looseness-spread . 0.2402) (bps q 5 11 18 24 31 36 43 49 56 64 71 77 84 90 99 105 112 119 127 133 141 150 159 166 174 181) (piece-count . 184) (avg-piece-length . 18.36781249999998) (avg-looseness . 0.073) (looseness-sd . 0.05628714959970146) (looseness-variance . 0.003168243210059172) (looses q 0.1597 0.092 0.2379 0.0492 0.1593 0.0828 0.141 0.0937 0.04 0.0404 0.1142 0.1165 0.0075 0.0558 0.002 0.0902 0.0228 0.0147 0.042 0.0351 0.0513 0.0541 0.0693 0.1069 -0.0023 0.023 0.4397)) (fu h - (equal) (time . 29) (line-count . 28) (looseness-spread . 0.3421) (bps q 5 9 15 21 27 32 39 45 51 58 64 70 75 80 86 93 98 104 110 115 120 125 131 137 143 149 154) (piece-count . 155) (avg-piece-length . 21.804370967741917) (avg-looseness . 0.0945) (looseness-sd . 0.07376065304008543) (looseness-variance . 0.0054406339368998635) (looses q 0.1597 0.092 0.0332 0.0959 0.3312 0.0828 -0.0095 0.1285 0.0793 0.001 0.0243 0.0226 0.0969 0.0295 0.0365 0.1232 0.0524 0.069 0.1536 0.1836 0.1754 0.044 -0.0109 0.1584 0.1531 0.1201 0.1265 0.8717)) (bu h - (equal) (time . 43) (line-count . 28) (looseness-spread . 0.2359) (bps q 5 9 14 20 27 32 38 44 50 57 63 69 74 79 85 91 96 102 108 114 119 123 129 136 142 149 154) (piece-count . 155) (avg-piece-length . 21.804370967741917) (avg-looseness . 0.094) (looseness-sd . 0.05616589404897769) (looseness-variance . 0.003154607654320988) (looses q 0.1597 0.092 0.2379 0.0492 0.1593 0.0828 0.141 0.0937 0.04 0.0404 0.0243 0.0606 0.1751 0.0558 0.002 0.0902 0.1825 0.1231 0.109 0.0987 0.0792 0.0208 0.1239 0.03 0.0985 0.0421 0.1265 0.8717)) (fh h - (equal) (time . 25) (line-count . 27) (looseness-spread . 0.3407) (bps q 5 11 19 25 31 36 44 50 57 65 73 79 85 92 100 107 113 120 127 133 141 150 159 166 174 181) (piece-count . 184) (avg-piece-length . 18.36781249999998) (avg-looseness . 0.0746) (looseness-sd . 0.06837548751489388) (looseness-variance . 0.004675207292899408) (looses q 0.1597 0.092 0.0332 0.0959 0.3312 0.0828 -0.0095 0.1285 0.0793 0.001 0.0243 0.0226 0.0969 0.0295 0.0365 0.1232 0.0524 0.069 0.1536 0.0351 0.0513 0.0541 0.0693 0.1069 -0.0023 0.023 0.4397)) (fh-improved . 341) (bu-improved . 27) (bh-improved . 18)) c (h - (equal) (text u . "He said to himself, in the melodramatic tones of a whimsical boy, that the schoolmaster had drawn at that well scores of times on a morning like this, and would never draw there any more. “I’ve seen him look down into it, when he was tired with his drawing, just as I do now, and when he rested a bit before carrying the buckets home! But he was too clever to bide here any longer—a small sleepy place like this!”") (measure . 150) (bh h - (equal) (time . 16) (line-count . 14) (looseness-spread . 0.164) (bps q 8 16 23 29 36 42 48 55 63 70 78 85 91) (piece-count . 93) (avg-piece-length . 18.083564516129027) (avg-looseness . 0.075) (looseness-sd . 0.05055206818353861) (looseness-variance . 0.0025555115976331364) (looses q 0.0599 0.0945 0.068 0.1683 0.1501 0.0246 0.0091 0.0756 0.1358 0.0497 0.037 0.0986 0.0043 0.7312)) (fu h - (equal) (time . 15) (line-count . 15) (looseness-spread . 0.2912) (bps q 6 10 14 19 25 30 35 41 48 55 61 66 73 79) (piece-count . 81) (avg-piece-length . 20.762611111111113) (avg-looseness . 0.1453) (looseness-sd . 0.08868851362481836) (looseness-variance . 0.007865652448979592) (looses q 0.2338 0.2676 0.2955 0.0444 0.2579 0.1286 0.1795 0.1061 0.1063 0.0958 0.1794 0.037 0.0986 0.0043 0.7312)) (bu h - (equal) (time . 15) (line-count . 15) (looseness-spread . 0.3452) (bps q 5 9 14 18 25 30 35 41 48 55 61 66 73 79) (piece-count . 81) (avg-piece-length . 20.762611111111113) (avg-looseness . 0.1454) (looseness-sd . 0.08404994051157919) (looseness-variance . 0.0070643925) (looses q 0.3495 0.2018 0.2456 0.1826 0.1198 0.1286 0.1795 0.1061 0.1063 0.0958 0.1794 0.037 0.0986 0.0043 0.7312)) (fh h - (equal) (time . 24) (line-count . 14) (looseness-spread . 0.1642) (bps q 8 16 23 29 37 42 48 55 63 70 78 85 91) (piece-count . 93) (avg-piece-length . 18.083564516129027) (avg-looseness . 0.0738) (looseness-sd . 0.052857939565858304) (looseness-variance . 0.002793961775147929) (looses q 0.0599 0.0945 0.068 0.1683 0.0041 0.1542 0.0091 0.0756 0.1358 0.0497 0.037 0.0986 0.0043 0.7312)) (fh-improved . 162) (bu-improved . 3) (bh-improved . 1)) c (h - (equal) (text u . "A tear rolled from his eye into the depths of the well. The morning was a little foggy, and the boy’s breathing unfurled itself as a thicker fog upon the still and heavy air. His thoughts were interrupted by a sudden outcry:") (measure . 150) (bh h - (equal) (time . 19) (line-count . 8) (looseness-spread . 0.1385) (bps q 7 13 21 26 33 39 46) (piece-count . 47) (avg-piece-length . 19.089265957446806) (avg-looseness . 0.0994) (looseness-sd . 0.04139088433607633) (looseness-variance . 0.0017132053061224488) (looses q 0.0891 0.1754 0.0685 0.1309 0.0862 0.0369 0.1085 0.7966)) (fu h - (equal) (time . 10) (line-count . 8) (looseness-spread . 0.1385) (bps q 7 13 19 23 30 36 41) (piece-count . 42) (avg-piece-length . 21.361797619047618) (avg-looseness . 0.0994) (looseness-sd . 0.04139088433607633) (looseness-variance . 0.0017132053061224488) (looses q 0.0891 0.1754 0.0685 0.1309 0.0862 0.0369 0.1085 0.7966)) (bu h - (equal) (time . 8) (line-count . 8) (looseness-spread . 0.1385) (bps q 7 13 19 23 30 36 41) (piece-count . 42) (avg-piece-length . 21.361797619047618) (avg-looseness . 0.0994) (looseness-sd . 0.04139088433607633) (looseness-variance . 0.0017132053061224488) (looses q 0.0891 0.1754 0.0685 0.1309 0.0862 0.0369 0.1085 0.7966)) (fh h - (equal) (time . 7) (line-count . 8) (looseness-spread . 0.1385) (bps q 7 13 21 26 33 39 46) (piece-count . 47) (avg-piece-length . 19.089265957446806) (avg-looseness . 0.0994) (looseness-sd . 0.04139088433607633) (looseness-variance . 0.0017132053061224488) (looses q 0.0891 0.1754 0.0685 0.1309 0.0862 0.0369 0.1085 0.7966)) (fh-improved . 16) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "It came from an old woman who had emerged from her door towards the garden gate of a green-thatched cottage not far off. The boy quickly waved a signal of assent, drew the water with what was a great effort for one of his stature, landed and emptied the big bucket into his own pair of smaller ones, and pausing a moment for breath, started with them across the patch of clammy greensward whereon the well stood—nearly in the centre of the little village, or rather hamlet of Marygreen.") (measure . 150) (bh h - (equal) (time . 19) (line-count . 16) (looseness-spread . 0.149) (bps q 6 12 19 25 32 38 45 51 58 64 70 75 79 84 94) (piece-count . 101) (avg-piece-length . 19.84581188118812) (avg-looseness . 0.0879) (looseness-sd . 0.04743593293415165) (looseness-variance . 0.0022501677333333333) (looses q 0.1626 0.0136 0.1456 0.0778 0.0224 0.1296 0.054 0.1016 0.0597 0.1055 0.1204 0.1355 0.1239 0.0234 0.0435 0.065)) (fu h - (equal) (time . 16) (line-count . 16) (looseness-spread . 0.1458) (bps q 7 12 18 23 29 35 42 48 54 60 65 70 74 79 86) (piece-count . 91) (avg-piece-length . 22.026670329670328) (avg-looseness . 0.0894) (looseness-sd . 0.04524518194116241) (looseness-variance . 0.002047126488888889) (looses q 0.0152 0.161 0.1456 0.0778 0.1286 0.0451 0.054 0.1016 0.0597 0.1055 0.1204 0.1355 0.1239 0.0234 0.0435 0.065)) (bu h - (equal) (time . 17) (line-count . 16) (looseness-spread . 0.149) (bps q 6 12 18 23 29 35 42 48 54 60 65 70 74 79 86) (piece-count . 91) (avg-piece-length . 22.026670329670328) (avg-looseness . 0.0894) (looseness-sd . 0.04559135688068762) (looseness-variance . 0.002078571822222222) (looses q 0.1626 0.0136 0.1456 0.0778 0.1286 0.0451 0.054 0.1016 0.0597 0.1055 0.1204 0.1355 0.1239 0.0234 0.0435 0.065)) (fh h - (equal) (time . 26) (line-count . 16) (looseness-spread . 0.1458) (bps q 7 12 19 25 32 38 45 51 58 64 70 75 79 84 94) (piece-count . 101) (avg-piece-length . 19.84581188118812) (avg-looseness . 0.0879) (looseness-sd . 0.0471033162314502) (looseness-variance . 0.0022187224) (looses q 0.0152 0.161 0.1456 0.0778 0.0224 0.1296 0.054 0.1016 0.0597 0.1055 0.1204 0.1355 0.1239 0.0234 0.0435 0.065)) (fh-improved . 51) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "It was as old-fashioned as it was small, and it rested in the lap of an undulating upland adjoining the North Wessex downs. Old as it was, however, the well-shaft was probably the only relic of the local history that remained absolutely unchanged. Many of the thatched and dormered dwelling-houses had been pulled down of late years, and many trees felled on the green. Above all, the original church, hump-backed, wood-turreted, and quaintly hipped, had been taken down, and either cracked up into heaps of road-metal in the lane, or utilized as pig-sty walls, garden seats, guard-stones to fences, and rockeries in the flower-beds of the neighbourhood. In place of it a tall new building of modern Gothic design, unfamiliar to English eyes, had been erected on a new piece of ground by a certain obliterator of historic records who had run down from London and back in a day. The site whereon so long had stood the ancient temple to the Christian divinities was not even recorded on the green and level grass-plot that had immemorially been the churchyard, the obliterated graves being commemorated by eighteen-penny cast-iron crosses warranted to last five years.") (measure . 150) (bh h - (equal) (time . 58) (line-count . 38) (looseness-spread . 0.277) (bps q 9 16 23 29 37 45 52 55 60 65 71 77 84 89 94 99 105 113 119 126 132 139 146 153 160 167 175 181 189 195 203 209 215 222 229 236 242) (piece-count . 248) (avg-piece-length . 19.40513709677419) (avg-looseness . 0.0793) (looseness-sd . 0.060622847645782116) (looseness-variance . 0.0036751296566837105) (looses q 0.0306 0.1209 0.0631 0.1173 0.0361 0.0191 -0.0128 0.1232 0.0908 0.0042 0.1147 0.032 0.0909 0.1594 0.0267 0.1346 0.1833 0.1025 0.0005 0.09 0.117 0.2642 0.0426 0.1229 0.0248 0.1554 0.1086 0.1191 0.0627 0.0703 0.0493 0.0148 0.1546 0.0048 0.0553 0.0369 0.0026 0.1812)) (fu h - (equal) (time . 41) (line-count . 39) (looseness-spread . 0.4604) (bps q 8 16 20 26 32 39 43 47 51 56 62 68 73 77 82 88 95 101 106 111 115 121 126 130 135 143 147 153 160 166 171 176 182 187 191 194 197 201) (piece-count . 206) (avg-piece-length . 23.361524271844665) (avg-looseness . 0.1061) (looseness-sd . 0.0985951230160421) (looseness-variance . 0.009720998282548476) (looses q 0.0306 0.0429 0.0512 0.0013 0.0785 -0.0072 0.1809 0.0452 0.1688 0.0042 0.1147 0.032 0.0909 0.1594 0.0267 -0.0022 0.0565 0.2069 0.1144 0.168 0.4497 0.0667 0.1582 0.1418 0.0644 0.0977 0.1245 0.0187 0.0627 0.0622 0.2374 0.0015 0.0396 -0.0107 0.2379 0.2793 0.1476 0.2871 0.1812)) (bu h - (equal) (time . 43) (line-count . 39) (looseness-spread . 0.2427) (bps q 8 16 20 25 31 36 42 45 50 54 60 66 71 75 79 84 89 96 102 107 112 117 124 128 133 140 145 151 156 162 168 173 178 184 188 192 196 201) (piece-count . 206) (avg-piece-length . 23.361524271844665) (avg-looseness . 0.1074) (looseness-sd . 0.06258230973437902) (looseness-variance . 0.00391654549168975) (looses q 0.0306 0.0429 0.0512 0.0808 0.1686 0.17 0.1415 0.0294 0.2128 0.0583 0.0739 0.1381 0.1216 0.1254 0.0997 0.206 0.1415 0.1508 0.0467 0.1249 0.1864 0.081 0.1275 0.2334 0.0604 0.0664 0.0759 0.0443 0.1216 0.1995 0.112 -0.0093 0.2201 0.1083 0.1433 0.0553 0.0369 0.0026 0.1812)) (fh h - (equal) (time . 49) (line-count . 38) (looseness-spread . 0.2168) (bps q 9 17 24 31 38 47 52 56 60 65 71 77 84 89 94 100 107 115 120 126 132 140 146 153 160 167 175 182 189 195 203 209 216 223 229 236 242) (piece-count . 248) (avg-piece-length . 19.40513709677419) (avg-looseness . 0.0797) (looseness-sd . 0.0660572759863572) (looseness-variance . 0.004363563710737765) (looses q 0.0306 0.0429 0.0512 0.0013 0.0785 -0.0072 0.1809 0.0452 0.1688 0.0042 0.1147 0.032 0.0909 0.1594 0.0267 -0.0022 0.0565 0.0729 0.2096 0.168 0.117 0.1209 0.1858 0.1229 0.0248 0.1554 0.1086 0.0064 0.1971 0.0703 0.0493 0.0148 0.0137 0.0276 0.171 0.0369 0.0026 0.1812)) (fh-improved . 684) (bu-improved . 92) (bh-improved . 18)) c (h - (equal) (text u . "Slender as was Jude Fawley’s frame he bore the two brimming house-buckets of water to the cottage without resting. Over the door was a little rectangular piece of blue board, on which was painted in yellow letters, “Drusilla Fawley, Baker.” Within the little lead panes of the window—this being one of the few old houses left—were five bottles of sweets, and three buns on a plate of the willow pattern.") (measure . 150) (bh h - (equal) (time . 28) (line-count . 14) (looseness-spread . 0.1526) (bps q 7 13 19 27 35 43 50 55 62 69 75 82 91) (piece-count . 92) (avg-piece-length . 17.89400000000001) (avg-looseness . 0.083) (looseness-sd . 0.040326293417922786) (looseness-variance . 0.0016262099408284024) (looses q 0.1034 0.1655 0.1237 0.0962 0.1128 0.037 0.0444 0.0948 0.0956 0.0623 0.0908 0.0395 0.0129 0.8708)) (fu h - (equal) (time . 13) (line-count . 14) (looseness-spread . 0.297) (bps q 5 11 17 22 27 33 38 41 47 53 59 65 72) (piece-count . 73) (avg-piece-length . 22.551342465753432) (avg-looseness . 0.1001) (looseness-sd . 0.07011069269925402) (looseness-variance . 0.004915509230769231) (looses q 0.1034 0.0151 0.1021 -0.0118 0.1511 0.1037 0.1331 0.2852 0.0956 0.0623 0.0908 0.0395 0.1312 0.7742)) (bu h - (equal) (time . 14) (line-count . 14) (looseness-spread . 0.2701) (bps q 5 11 17 21 27 33 38 41 47 53 59 65 72) (piece-count . 73) (avg-piece-length . 22.551342465753432) (avg-looseness . 0.1001) (looseness-sd . 0.06383021951299339) (looseness-variance . 0.004074296923076923) (looses q 0.1034 0.0151 0.1021 0.1038 0.0355 0.1037 0.1331 0.2852 0.0956 0.0623 0.0908 0.0395 0.1312 0.7742)) (fh h - (equal) (time . 12) (line-count . 14) (looseness-spread . 0.297) (bps q 7 14 21 29 38 44 51 55 62 69 75 82 91) (piece-count . 92) (avg-piece-length . 17.89400000000001) (avg-looseness . 0.091) (looseness-sd . 0.07309725870899147) (looseness-variance . 0.005343209230769231) (looses q 0.1034 0.0151 0.1021 -0.0118 0.1511 0.1037 0.1331 0.2852 0.0956 0.0623 0.0908 0.0395 0.0129 0.8708)) (fh-improved . 148) (bu-improved . 1) (bh-improved . 10)) c (h - (equal) (text u . "While emptying the buckets at the back of the house he could hear an animated conversation in progress within-doors between his great-aunt, the Drusilla of the sign-board, and some other villagers. Having seen the school-master depart, they were summing up particulars of the event, and indulging in predictions of his future.") (measure . 150) (bh h - (equal) (time . 13) (line-count . 11) (looseness-spread . 0.192) (bps q 8 15 24 28 33 39 46 52 61 67) (piece-count . 71) (avg-piece-length . 19.119154929577466) (avg-looseness . 0.0743) (looseness-sd . 0.0552142771391603) (looseness-variance . 0.0030486164) (looses q 0.0673 0.0747 -0.0096 0.0578 0.1824 0.1543 0.0336 0.0174 0.0795 0.0852 0.4552)) (fu h - (equal) (time . 13) (line-count . 11) (looseness-spread . 0.3106) (bps q 5 12 17 21 27 33 37 42 47 51) (piece-count . 55) (avg-piece-length . 24.681090909090905) (avg-looseness . 0.0958) (looseness-sd . 0.08861825150610905) (looseness-variance . 0.0078531945) (looses q 0.0673 0.0747 -0.0096 0.0578 0.1045 0.0512 0.2147 0.0174 0.0795 0.301 0.261)) (bu h - (equal) (time . 14) (line-count . 11) (looseness-spread . 0.192) (bps q 5 12 17 21 26 32 36 41 45 51) (piece-count . 55) (avg-piece-length . 24.681090909090905) (avg-looseness . 0.0958) (looseness-sd . 0.053674780856562423) (looseness-variance . 0.0028809821) (looses q 0.0673 0.0747 -0.0096 0.0578 0.1824 0.1543 0.1493 0.0657 0.1091 0.1073 0.261)) (fh h - (equal) (time . 12) (line-count . 11) (looseness-spread . 0.2243) (bps q 8 15 24 28 34 40 46 52 61 67) (piece-count . 71) (avg-piece-length . 19.119154929577466) (avg-looseness . 0.0743) (looseness-sd . 0.05648175014993781) (looseness-variance . 0.0031901881) (looses q 0.0673 0.0747 -0.0096 0.0578 0.1045 0.0512 0.2147 0.0174 0.0795 0.0852 0.4552)) (fh-improved . 83) (bu-improved . 6) (bh-improved . 2)) c (h - (equal) (text u . "“And who’s he?” asked one, comparatively a stranger, when the boy entered.") (measure . 150) (bh h - (equal) (time . 3) (line-count . 3) (looseness-spread . 0.1256) (bps q 5 12) (piece-count . 15) (avg-piece-length . 22.001033333333336) (avg-looseness . 0.1127) (looseness-sd . 0.0628) (looseness-variance . 0.00394384) (looses q 0.1755 0.0499 0.5219)) (fu h - (equal) (time . 15) (line-count . 3) (looseness-spread . 0.1256) (bps q 5 9) (piece-count . 12) (avg-piece-length . 27.50129166666667) (avg-looseness . 0.1127) (looseness-sd . 0.0628) (looseness-variance . 0.00394384) (looses q 0.1755 0.0499 0.5219)) (bu h - (equal) (time . 2) (line-count . 3) (looseness-spread . 0.1256) (bps q 5 9) (piece-count . 12) (avg-piece-length . 27.50129166666667) (avg-looseness . 0.1127) (looseness-sd . 0.0628) (looseness-variance . 0.00394384) (looses q 0.1755 0.0499 0.5219)) (fh h - (equal) (time . 2) (line-count . 3) (looseness-spread . 0.1256) (bps q 5 12) (piece-count . 15) (avg-piece-length . 22.001033333333336) (avg-looseness . 0.1127) (looseness-sd . 0.0628) (looseness-variance . 0.00394384) (looses q 0.1755 0.0499 0.5219)) (fh-improved . 3) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since you was last this way.” The old inhabitant who answered was a tall, gaunt woman, who spoke tragically on the most trivial subject, and gave a phrase of her conversation to each auditor in turn. “He come from Mellstock, down in South Wessex, about a year ago—worse luck for ‘n, Belinda” (turning to the right) “where his father was living, and was took wi’ the shakings for death, and died in two days, as you know, Caroline” (turning to the left). “It would ha’ been a blessing if Goddy-mighty had took thee too, wi’ thy mother and father, poor useless boy! But I’ve got him here to stay with me till I can see what’s to be done with un, though I am obliged to let him earn any penny he can. Just now he’s a-scaring of birds for Farmer Troutham. It keeps him out of mischty. Why do ye turn away, Jude?” she continued, as the boy, feeling the impact of their glances like slaps upon his face, moved aside.") (measure . 150) (bh h - (equal) (time . 53) (line-count . 32) (looseness-spread . 0.2755) (bps q 6 10 15 21 28 34 42 49 57 63 69 76 82 88 95 102 110 117 124 130 137 145 153 160 167 175 180 187 193 201 207) (piece-count . 212) (avg-piece-length . 18.828971698113204) (avg-looseness . 0.0903) (looseness-sd . 0.06354731929674366) (looseness-variance . 0.00403826178980229) (looses q 0.2674 0.2546 0.0809 0.1203 0.1053 0.0683 0.0436 0.1335 0.1709 0.015 0.0981 0.0991 0.0942 0.1743 0.0891 0.0598 0.0154 0.0639 0.0537 0.1025 0.0002 -0.0081 0.0795 0.0414 0.0837 0.0471 0.0632 0.1491 0.1114 0.1068 0.0138 0.1753)) (fu h - (equal) (time . 34) (line-count . 32) (looseness-spread . 0.3385) (bps q 6 10 15 20 25 30 35 42 47 52 58 64 69 75 81 88 93 100 105 111 117 125 133 140 147 154 159 166 170 176 182) (piece-count . 187) (avg-piece-length . 21.34621390374331) (avg-looseness . 0.091) (looseness-sd . 0.08726784263381591) (looseness-variance . 0.007615676357960458) (looses q 0.2674 0.2546 0.0809 0.3113 0.0536 0.0952 0.143 0.0116 0.0601 0.015 0.0482 0.149 0.0942 0.0282 0.114 0.0687 0.017 0.092 0.1036 0.1025 0.0002 -0.0081 0.0795 0.0414 0.0837 0.0471 0.0632 0.0634 0.3304 -0.004 0.0138 0.1753)) (bu h - (equal) (time . 48) (line-count . 32) (looseness-spread . 0.3194) (bps q 6 10 15 20 25 30 35 42 47 52 57 64 69 74 80 87 92 99 105 111 117 125 133 139 146 153 158 164 170 176 182) (piece-count . 187) (avg-piece-length . 21.34621390374331) (avg-looseness . 0.0915) (looseness-sd . 0.07634215779785145) (looseness-variance . 0.00582812505723205) (looses q 0.2674 0.2546 0.0809 0.3113 0.0536 0.0952 0.143 0.0116 0.0601 0.015 0.0981 0.0991 0.0942 0.1743 0.0891 0.0598 0.0154 0.0639 0.0537 0.1025 0.0002 -0.0081 0.0795 0.1194 0.1332 0.0736 0.0831 0.0542 0.1502 -0.004 0.0138 0.1753)) (fh h - (equal) (time . 30) (line-count . 32) (looseness-spread . 0.2755) (bps q 6 10 15 22 28 34 42 50 58 63 70 76 82 89 96 103 111 118 124 130 137 145 153 160 167 175 180 188 194 201 207) (piece-count . 212) (avg-piece-length . 18.828971698113204) (avg-looseness . 0.091) (looseness-sd . 0.06693806322274709) (looseness-variance . 0.0044807043080124865) (looses q 0.2674 0.2546 0.0809 0.1008 0.1248 0.0683 0.0436 0.0369 0.1157 0.2213 0.0482 0.149 0.0942 0.0282 0.114 0.0687 0.017 0.092 0.1036 0.1025 0.0002 -0.0081 0.0795 0.0414 0.0837 0.0471 0.0632 0.0634 0.1139 0.19 0.0138 0.1753)) (fh-improved . 439) (bu-improved . 12) (bh-improved . 11)) c (h - (equal) (text u . "The local washerwoman replied that it was perhaps a very good plan of Miss or Mrs. Fawley’s (as they called her indifferently) to have him with her—”to kip ‘ee company in your loneliness, fetch water, shet the winder-shetters o’ nights, and help in the bit o’ baking.”") (measure . 150) (bh h - (equal) (time . 10) (line-count . 9) (looseness-spread . 0.1253) (bps q 6 14 21 28 35 43 48 55) (piece-count . 60) (avg-piece-length . 18.324483333333337) (avg-looseness . 0.0792) (looseness-sd . 0.03302798056194172) (looseness-variance . 0.0010908475) (looses q 0.0207 0.0562 0.0867 0.0746 0.0831 0.0737 0.146 0.093 0.4833)) (fu h - (equal) (time . 9) (line-count . 9) (looseness-spread . 0.1253) (bps q 4 11 17 22 29 34 39 45) (piece-count . 49) (avg-piece-length . 22.438142857142854) (avg-looseness . 0.0792) (looseness-sd . 0.03302798056194172) (looseness-variance . 0.0010908475) (looses q 0.0207 0.0562 0.0867 0.0746 0.0831 0.0737 0.146 0.093 0.4833)) (bu h - (equal) (time . 9) (line-count . 9) (looseness-spread . 0.1253) (bps q 4 11 17 22 29 34 39 45) (piece-count . 49) (avg-piece-length . 22.438142857142854) (avg-looseness . 0.0792) (looseness-sd . 0.03302798056194172) (looseness-variance . 0.0010908475) (looses q 0.0207 0.0562 0.0867 0.0746 0.0831 0.0737 0.146 0.093 0.4833)) (fh h - (equal) (time . 24) (line-count . 9) (looseness-spread . 0.1253) (bps q 6 14 21 28 35 43 48 55) (piece-count . 60) (avg-piece-length . 18.324483333333337) (avg-looseness . 0.0792) (looseness-sd . 0.03302798056194172) (looseness-variance . 0.0010908475) (looses q 0.0207 0.0562 0.0867 0.0746 0.0831 0.0737 0.146 0.093 0.4833)) (fh-improved . 49) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a better one. The boy is crazy for books, that he is. It runs in our family rather. His cousin Sue is just the same—so I’ve heard; but I have not seen the child for years, though she was born in this place, within these four walls, as it happened. My niece and her husband, after they were married, didn’ get a house of their own for some year or more; and then they only had one till—Well, I won’t go into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the Fawleys to take that step any more. She, their only one, was like a child o’ my own, Belinda, till the split come! Ah, that a little maid should know such changes!”") (measure . 150) (bh h - (equal) (time . 47) (line-count . 26) (looseness-spread . 0.1345) (bps q 6 14 22 29 36 41 49 57 64 71 78 84 90 97 104 111 118 125 132 138 144 151 158 165 173) (piece-count . 177) (avg-piece-length . 18.84115819209039) (avg-looseness . 0.0567) (looseness-sd . 0.041105191107693444) (looseness-variance . 0.001689636736) (looses q -0.0008 -0.0011 0.0179 0.0483 0.1256 0.1334 0.0809 0.0706 0.1142 0.0351 0.0703 0.0754 0.1082 0.0391 0.0141 0.081 0.0007 0.021 0.0904 0.0684 0.0449 0.074 0.0951 0.0001 0.0105 0.1575)) (fu h - (equal) (time . 28) (line-count . 27) (looseness-spread . 0.3077) (bps q 5 11 17 24 27 31 37 44 52 58 65 71 77 83 89 93 99 106 113 120 126 132 138 146 152 158) (piece-count . 161) (avg-piece-length . 20.713571428571417) (avg-looseness . 0.0893) (looseness-sd . 0.08801779573963384) (looseness-variance . 0.007747132366863904) (looses q -0.0008 -0.0011 0.0179 0.0483 0.3036 0.2522 0.0934 0.0418 0.0126 0.2289 0.0246 0.1724 0.1636 0.0107 0.0708 0.2481 0.1193 0.0137 -0.0041 0.0565 0.0538 0.0981 0.0979 0.0481 0.0046 0.1459 0.3809)) (bu h - (equal) (time . 45) (line-count . 27) (looseness-spread . 0.2276) (bps q 5 10 15 21 26 30 36 43 51 57 64 71 77 82 88 93 99 106 113 120 126 132 138 146 152 158) (piece-count . 161) (avg-piece-length . 20.713571428571417) (avg-looseness . 0.0887) (looseness-sd . 0.05912104584773664) (looseness-variance . 0.0034952980621301777) (looses q -0.0008 0.0769 0.159 0.1844 0.2235 0.0518 0.135 0.048 0.0762 0.1274 0.067 0.0143 0.1636 0.1066 0.11 0.1294 0.1193 0.0137 -0.0041 0.0565 0.0538 0.0981 0.0979 0.0481 0.0046 0.1459 0.3809)) (fh h - (equal) (time . 25) (line-count . 26) (looseness-spread . 0.1378) (bps q 6 14 22 29 36 42 50 57 64 71 78 84 90 97 104 111 118 125 132 138 144 151 158 165 173) (piece-count . 177) (avg-piece-length . 18.84115819209039) (avg-looseness . 0.0576) (looseness-sd . 0.04368124100801166) (looseness-variance . 0.0019080508159999999) (looses q -0.0008 -0.0011 0.0179 0.0483 0.1256 0.0408 0.1308 0.1367 0.1142 0.0351 0.0703 0.0754 0.1082 0.0391 0.0141 0.081 0.0007 0.021 0.0904 0.0684 0.0449 0.074 0.0951 0.0001 0.0105 0.1575)) (fh-improved . 343) (bu-improved . 15) (bh-improved . 2)) c (h - (equal) (text u . "Jude, finding the general attention again centering on himself, went out to the bakehouse, where he ate the cake provided for his breakfast. The end of his spare time had now arrived, and emerging from the garden by getting over the hedge at the back he pursued a path northward, till he came to a wide and lonely depression in the general level of the upland, which was sown as a corn-field. This vast concave was the scene of his labours for Mr Troutham the farmer, and he descended into the midst of it.") (measure . 150) (bh h - (equal) (time . 20) (line-count . 17) (looseness-spread . 0.1929) (bps q 7 15 21 28 35 41 48 56 63 71 77 83 90 97 103 108) (piece-count . 111) (avg-piece-length . 18.720445945945947) (avg-looseness . 0.0831) (looseness-sd . 0.045243376155383236) (looseness-variance . 0.0020469630859375003) (looses q 0.0752 0.0553 0.1965 0.055 0.1384 0.0606 0.0765 0.0411 0.1072 0.0363 0.1428 0.0811 0.0843 0.0976 0.0036 0.0782 0.5675)) (fu h - (equal) (time . 17) (line-count . 17) (looseness-spread . 0.2684) (bps q 4 8 13 18 23 30 35 41 48 55 60 66 73 79 85 90) (piece-count . 94) (avg-piece-length . 22.1060585106383) (avg-looseness . 0.0957) (looseness-sd . 0.07445036281602326) (looseness-variance . 0.005542856523437499) (looses q 0.2514 0.1478 0.2749 0.1406 0.0656 0.091 0.0169 0.0893 0.0626 0.0065 0.0967 0.0751 0.0575 0.015 0.0413 0.0993 0.4307)) (bu h - (equal) (time . 18) (line-count . 17) (looseness-spread . 0.2599) (bps q 4 8 13 18 23 30 35 41 48 54 60 66 73 79 85 90) (piece-count . 94) (avg-piece-length . 22.1060585106383) (avg-looseness . 0.0957) (looseness-sd . 0.0727425960042498) (looseness-variance . 0.005291485273437499) (looses q 0.2514 0.1478 0.2749 0.1406 0.0656 0.091 0.0169 0.0893 0.0626 0.0564 0.0468 0.0751 0.0575 0.015 0.0413 0.0993 0.4307)) (fh h - (equal) (time . 28) (line-count . 17) (looseness-spread . 0.1758) (bps q 7 15 21 28 36 42 49 56 63 71 78 84 91 98 103 108) (piece-count . 111) (avg-piece-length . 18.720445945945947) (avg-looseness . 0.0834) (looseness-sd . 0.045222974923566236) (looseness-variance . 0.0020451174609375003) (looses q 0.0752 0.0553 0.1965 0.055 0.0324 0.0207 0.1176 0.1297 0.1072 0.0363 0.0338 0.0793 0.076 0.1323 0.1096 0.0782 0.5675)) (fh-improved . 222) (bu-improved . 1) (bh-improved . 7)) c (h - (equal) (text u . "The brown surface of the field went right up towards the sky all round, where it was lost by degrees in the mist that shut out the actual verge and accentuated the solitude. The only marks on the uniformity of the scene were a rick of last year’s produce standing in the midst of the arable, the rooks that rose at his approach, and the path athwart the fallow by which he had come, trodden now by he hardly knew whom, though once by many of his own dead family.") (measure . 150) (bh h - (equal) (time . 19) (line-count . 15) (looseness-spread . 0.1324) (bps q 7 13 20 26 32 39 47 54 62 68 74 81 88 93) (piece-count . 100) (avg-piece-length . 18.930609999999998) (avg-looseness . 0.08) (looseness-sd . 0.03621054996228901) (looseness-variance . 0.0013112039285714285) (looses q 0.0792 0.0976 0.0909 0.134 0.073 0.1141 0.0658 0.0756 0.0083 0.0968 0.1186 0.0659 0.0979 0.0016 0.0432)) (fu h - (equal) (time . 16) (line-count . 15) (looseness-spread . 0.1849) (bps q 6 13 19 26 31 37 43 49 55 62 67 73 79 84) (piece-count . 90) (avg-piece-length . 21.034011111111102) (avg-looseness . 0.0752) (looseness-sd . 0.06894998927054422) (looseness-variance . 0.004754101020408163) (looses q 0.0792 0.0086 0.1799 0.0151 0.0034 0.0277 0.0102 0.1597 0.1617 0.0328 0.047 0.1883 0.0159 0.1239 0.1317)) (bu h - (equal) (time . 29) (line-count . 15) (looseness-spread . 0.1927) (bps q 6 12 19 26 31 36 42 49 55 62 67 73 79 84) (piece-count . 90) (avg-piece-length . 21.034011111111102) (avg-looseness . 0.0752) (looseness-sd . 0.057854776406630636) (looseness-variance . 0.0033471751530612247) (looses q 0.0792 0.0976 0.0909 0.0151 0.0034 0.1223 0.0796 -0.0044 0.1617 0.0328 0.047 0.1883 0.0159 0.1239 0.1317)) (fh h - (equal) (time . 13) (line-count . 15) (looseness-spread . 0.1849) (bps q 7 14 20 27 34 41 49 56 63 70 75 82 89 94) (piece-count . 100) (avg-piece-length . 18.930609999999998) (avg-looseness . 0.0752) (looseness-sd . 0.06894998927054422) (looseness-variance . 0.004754101020408163) (looses q 0.0792 0.0086 0.1799 0.0151 0.0034 0.0277 0.0102 0.1597 0.1617 0.0328 0.047 0.1883 0.0159 0.1239 0.1317)) (fh-improved . 77) (bu-improved . 3) (bh-improved . 17)) c (h - (equal) (text u . "The fresh harrow-lines seemed to stretch like the channellings in a piece of new corduroy, lending a meanly utilitarian air to the expanse, taking away its gradations, and depriving it of all history beyond that of the few recent months, though to every clod and stone there really attached associations enough and to spare—echoes of songs from ancient harvest-days, of spoken words, and of sturdy deeds. Every inch of ground had been the site, first or last, of energy, gaiety, horse-play, bickerings, weariness. Groups of gleaners had squatted in the sun on every square yard. Love-matches that had populated the adjoining hamlet had been made up there between reaping and carrying. Under the hedge which divided the field from a distant plantation girls had given themselves to lovers who would not turn their heads to look at them by the next harvest; and in that ancient cornfield many a man had made love-promises to a woman at whose voice he had trembled by the next seed-time after fulfilling them in the church adjoining. But this neither Jude nor the rooks around him considered. For them it was a lonely place, possessing, in the one view, only the quality of a work-ground, and in the other that of a granary good to feed in.") (measure . 150) (bh h - (equal) (time . 52) (line-count . 40) (looseness-spread . 0.2056) (bps q 6 12 19 28 35 43 50 55 61 67 73 79 85 91 98 104 110 117 123 130 137 143 150 156 163 169 176 183 189 195 202 209 217 223 229 237 245 253 259) (piece-count . 267) (avg-piece-length . 19.004589887640453) (avg-looseness . 0.08) (looseness-sd . 0.046310639228150596) (looseness-variance . 0.002144675305719921) (looses q 0.0506 0.0677 0.1968 0.068 0.0768 0.0838 0.1248 0.1 0.0105 0.1111 0.0733 0.109 0.1403 0.013 0.151 0.0622 0.1324 0.1467 0.0464 0.04 0.0134 0.0962 -0.0088 0.1779 0.0929 0.027 0.0936 0.0908 0.0856 0.0585 0.095 0.0809 0.0604 0.0932 0.0603 0.0119 0.0137 0.0931 0.0818 0.0274)) (fu h - (equal) (time . 58) (line-count . 41) (looseness-spread . 0.2793) (bps q 5 11 17 23 27 33 39 44 49 52 58 63 68 74 81 85 89 95 100 105 110 115 120 126 130 135 142 149 154 160 167 173 178 182 187 191 197 203 209 217) (piece-count . 220) (avg-piece-length . 23.064661363636375) (avg-looseness . 0.093) (looseness-sd . 0.08006937616842034) (looseness-variance . 0.006411105) (looses q 0.0506 -0.0087 0.0115 0.1195 0.2705 -0.0053 0.088 0.0408 0.1955 0.1111 0.0733 0.109 0.1403 0.013 0.151 0.2248 0.0079 0.0204 0.1726 0.04 0.0134 0.0962 -0.0088 0.0614 0.231 0.027 0.0936 0.0144 0.112 0.0304 0.0442 0.0516 0.2162 0.2087 0.2005 0.1474 0.2138 0.0104 0.1305 -0.0017 0.5432)) (bu h - (equal) (time . 55) (line-count . 41) (looseness-spread . 0.1985) (bps q 5 10 16 21 27 32 38 43 49 52 58 63 68 73 80 85 88 94 100 104 109 114 119 125 130 135 141 147 152 158 164 170 175 180 186 190 197 203 209 217) (piece-count . 220) (avg-piece-length . 23.064661363636375) (avg-looseness . 0.0951) (looseness-sd . 0.04836744152836699) (looseness-variance . 0.0023394094) (looses q 0.0506 0.0677 0.1968 0.068 0.0768 0.0838 0.1248 0.1 0.0105 0.1111 0.0733 0.109 0.1403 0.1419 0.1165 0.1468 0.0859 0.0687 0.0464 0.1557 0.0815 0.0421 0.0645 0.0857 0.0039 0.027 0.1673 0.1656 0.1412 0.1707 0.069 0.1212 0.1169 0.1148 0.1258 0.1053 0.0873 0.0104 0.1305 -0.0017 0.5432)) (fh h - (equal) (time . 42) (line-count . 40) (looseness-spread . 0.225) (bps q 6 13 21 30 37 45 51 56 61 67 73 79 85 91 98 104 110 118 123 130 137 143 150 157 164 170 177 185 191 197 203 210 217 223 229 237 245 253 259) (piece-count . 267) (avg-piece-length . 19.004589887640453) (avg-looseness . 0.0784) (looseness-sd . 0.055659803283088984) (looseness-variance . 0.003098013701512163) (looses q 0.0506 -0.0087 0.0115 0.1195 0.0816 0.0503 0.1771 0.0408 0.1955 0.1111 0.0733 0.109 0.1403 0.013 0.151 0.0622 0.1324 0.0204 0.1726 0.04 0.0134 0.0962 -0.0088 0.0614 0.05 0.0672 0.0366 0.0525 0.0999 0.1308 0.0941 0.0516 0.2162 0.0932 0.0603 0.0119 0.0137 0.0931 0.0818 0.0274)) (fh-improved . 999) (bu-improved . 36) (bh-improved . 24)) c (h - (equal) (text u . "The boy stood under the rick before mentioned, and every few seconds used his clacker or rattle briskly. At each clack the rooks left off pecking, and rose and went away on their leisurely wings, burnished like tassets of mail, afterwards wheeling back and regarding him warily, and descending to feed at a more respectful distance.") (measure . 150) (bh h - (equal) (time . 12) (line-count . 11) (looseness-spread . 0.1471) (bps q 6 12 19 25 32 38 45 51 58 65) (piece-count . 69) (avg-piece-length . 19.823999999999995) (avg-looseness . 0.074) (looseness-sd . 0.04395066438633209) (looseness-variance . 0.0019316608999999998) (looses q 0.1117 -0.0004 0.0683 0.1467 0.0637 0.0194 0.0538 0.0564 0.0928 0.1277 0.4186)) (fu h - (equal) (time . 23) (line-count . 11) (looseness-spread . 0.1544) (bps q 6 11 17 23 29 34 39 43 48 54) (piece-count . 56) (avg-piece-length . 24.42600000000001) (avg-looseness . 0.0762) (looseness-sd . 0.05000496875311493) (looseness-variance . 0.0025004969000000004) (looses q 0.1117 -0.0004 -0.0053 0.0579 0.1182 0.1491 0.0538 0.0564 0.0928 0.1277 0.4186)) (bu h - (equal) (time . 11) (line-count . 11) (looseness-spread . 0.1083) (bps q 6 10 16 22 28 34 39 43 48 54) (piece-count . 56) (avg-piece-length . 24.42600000000001) (avg-looseness . 0.0762) (looseness-sd . 0.03444293251161985) (looseness-variance . 0.0011863156) (looses q 0.1117 0.1254 0.0478 0.0631 0.0637 0.0194 0.0538 0.0564 0.0928 0.1277 0.4186)) (fh h - (equal) (time . 10) (line-count . 11) (looseness-spread . 0.1544) (bps q 6 12 20 26 33 38 45 51 58 65) (piece-count . 69) (avg-piece-length . 19.823999999999995) (avg-looseness . 0.0762) (looseness-sd . 0.05000496875311493) (looseness-variance . 0.0025004969000000004) (looses q 0.1117 -0.0004 -0.0053 0.0579 0.1182 0.1491 0.0538 0.0564 0.0928 0.1277 0.4186)) (fh-improved . 50) (bu-improved . 4) (bh-improved . 3)) c (h - (equal) (text u . "He sounded the clacker till his arm ached, and at length his heart grew sympathetic with the birds’ thwarted desires. They seemed, like himself, to be living in a world which did not want them. Why should he frighten them away? They took upon more and more the aspect of gentle friends and pensioners—the only friends he could claim as being in the least degree interested in him, for his aunt had often told him that she was not. He ceased his rattling, and they alighted anew.") (measure . 150) (bh h - (equal) (time . 18) (line-count . 16) (looseness-spread . 0.1357) (bps q 6 12 19 23 31 38 43 48 54 61 67 74 81 88 95) (piece-count . 97) (avg-piece-length . 20.275092783505155) (avg-looseness . 0.0716) (looseness-sd . 0.04446584906794576) (looseness-variance . 0.0019772117333333333) (looses q 0.0731 0.1416 0.0139 0.0966 0.0059 0.0928 0.0823 0.1349 0.1288 0.0243 0.059 0.0169 0.1132 0.0526 0.0375 0.5804)) (fu h - (equal) (time . 16) (line-count . 16) (looseness-spread . 0.1768) (bps q 6 12 17 21 27 34 39 44 50 54 60 66 72 79 85) (piece-count . 88) (avg-piece-length . 22.34868181818182) (avg-looseness . 0.0821) (looseness-sd . 0.04895952977261481) (looseness-variance . 0.0023970355555555556) (looses q 0.0731 0.1416 0.0139 0.0966 0.0059 0.0928 0.0823 0.1349 0.1288 0.0243 0.059 0.1827 0.0988 0.0467 0.0496 0.4298)) (bu h - (equal) (time . 29) (line-count . 16) (looseness-spread . 0.1768) (bps q 6 12 17 21 27 34 39 44 50 54 60 66 72 79 85) (piece-count . 88) (avg-piece-length . 22.34868181818182) (avg-looseness . 0.0821) (looseness-sd . 0.04895952977261481) (looseness-variance . 0.0023970355555555556) (looses q 0.0731 0.1416 0.0139 0.0966 0.0059 0.0928 0.0823 0.1349 0.1288 0.0243 0.059 0.1827 0.0988 0.0467 0.0496 0.4298)) (fh h - (equal) (time . 14) (line-count . 16) (looseness-spread . 0.1357) (bps q 6 12 19 23 31 38 43 48 54 61 67 74 81 88 95) (piece-count . 97) (avg-piece-length . 20.275092783505155) (avg-looseness . 0.0716) (looseness-sd . 0.04446584906794576) (looseness-variance . 0.0019772117333333333) (looses q 0.0731 0.1416 0.0139 0.0966 0.0059 0.0928 0.0823 0.1349 0.1288 0.0243 0.059 0.0169 0.1132 0.0526 0.0375 0.5804)) (fh-improved . 74) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— you shall. There is enough for us all. Farmer Troutham can afford to let you have some. Eat, then my dear little birdies, and make a good meal!”") (measure . 150) (bh h - (equal) (time . 8) (line-count . 8) (looseness-spread . 0.174) (bps q 6 10 16 22 28 34 41) (piece-count . 42) (avg-piece-length . 21.47077380952381) (avg-looseness . 0.1114) (looseness-sd . 0.05560420994192172) (looseness-variance . 0.0030918281632653062) (looses q 0.1366 0.2016 0.0276 0.164 0.0626 0.0992 0.0879 0.8221)) (fu h - (equal) (time . 8) (line-count . 8) (looseness-spread . 0.2076) (bps q 5 10 15 20 26 32 38) (piece-count . 39) (avg-piece-length . 23.122371794871793) (avg-looseness . 0.1113) (looseness-sd . 0.06159445045237933) (looseness-variance . 0.0037938763265306127) (looses q 0.1366 0.0224 0.1406 0.23 0.0626 0.0992 0.0879 0.8221)) (bu h - (equal) (time . 18) (line-count . 8) (looseness-spread . 0.174) (bps q 5 9 14 20 26 32 38) (piece-count . 39) (avg-piece-length . 23.122371794871793) (avg-looseness . 0.1114) (looseness-sd . 0.05560420994192172) (looseness-variance . 0.0030918281632653062) (looses q 0.1366 0.2016 0.0276 0.164 0.0626 0.0992 0.0879 0.8221)) (fh h - (equal) (time . 8) (line-count . 8) (looseness-spread . 0.2161) (bps q 6 11 17 22 28 35 41) (piece-count . 42) (avg-piece-length . 21.47077380952381) (avg-looseness . 0.1082) (looseness-sd . 0.0726045396905281) (looseness-variance . 0.00527141918367347) (looses q 0.1366 0.0224 0.1406 0.23 0.0626 0.0139 0.1515 0.8221)) (fh-improved . 14) (bu-improved . 2) (bh-improved . 3)) c (h - (equal) (text u . "They stayed and ate, inky spots on the nut-brown soil, and Jude enjoyed their appetite. A magic thread of fellow-feeling united his own life with theirs. Puny and sorry as those lives were, they much resembled his own.") (measure . 150) (bh h - (equal) (time . 8) (line-count . 7) (looseness-spread . 0.0863) (bps q 6 13 18 25 31 37) (piece-count . 42) (avg-piece-length . 21.34755952380953) (avg-looseness . 0.0732) (looseness-sd . 0.034442447970813896) (looseness-variance . 0.0011862822222222223) (looses q 0.0418 0.0379 0.0447 0.0798 0.111 0.1242 0.0865)) (fu h - (equal) (time . 9) (line-count . 7) (looseness-spread . 0.0863) (bps q 6 13 18 23 29 35) (piece-count . 39) (avg-piece-length . 22.989679487179494) (avg-looseness . 0.0732) (looseness-sd . 0.034442447970813896) (looseness-variance . 0.0011862822222222223) (looses q 0.0418 0.0379 0.0447 0.0798 0.111 0.1242 0.0865)) (bu h - (equal) (time . 8) (line-count . 7) (looseness-spread . 0.0863) (bps q 6 13 18 23 29 35) (piece-count . 39) (avg-piece-length . 22.989679487179494) (avg-looseness . 0.0732) (looseness-sd . 0.034442447970813896) (looseness-variance . 0.0011862822222222223) (looses q 0.0418 0.0379 0.0447 0.0798 0.111 0.1242 0.0865)) (fh h - (equal) (time . 6) (line-count . 7) (looseness-spread . 0.0863) (bps q 6 13 18 25 31 37) (piece-count . 42) (avg-piece-length . 21.34755952380953) (avg-looseness . 0.0732) (looseness-sd . 0.034442447970813896) (looseness-variance . 0.0011862822222222223) (looses q 0.0418 0.0379 0.0447 0.0798 0.111 0.1242 0.0865)) (fh-improved . 6) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "His clacker he had by this time thrown away from him, as being a mean and sordid instrument, offensive both to the birds and to himself as their friend. All at once he became conscious of a smart blow upon his buttocks, followed by a loud clack, which announced to his surprised senses that the clacker had been the instrument of offence used. The birds and Jude started up simultaneously, and the dazed eyes of the latter beheld the farmer in person, the great Troutham himself, his red face glaring down upon Jude’s cowering frame, the clacker swinging in his hand.") (measure . 150) (bh h - (equal) (time . 34) (line-count . 19) (looseness-spread . 0.1949) (bps q 7 13 20 27 35 42 48 55 60 66 72 78 85 92 98 104 110 117) (piece-count . 120) (avg-piece-length . 19.57299999999999) (avg-looseness . 0.0782) (looseness-sd . 0.04911699719628885) (looseness-variance . 0.002412479413580247) (looses q 0.0631 0.0256 0.0817 0.0762 0.0487 0.0667 0.0991 0.0499 0.1728 0.0247 0.0613 0.0887 0.0799 0.1584 0.1857 0.0604 0.0738 -0.0092 0.661)) (fu h - (equal) (time . 31) (line-count . 19) (looseness-spread . 0.2195) (bps q 7 13 18 25 31 37 42 48 52 58 63 69 73 79 84 89 93 97) (piece-count . 101) (avg-piece-length . 23.255049504950488) (avg-looseness . 0.0954) (looseness-sd . 0.059623313445101654) (looseness-variance . 0.0035549395061728398) (looses q 0.0631 0.0256 0.0817 -0.0019 0.1268 0.0667 0.0991 0.0499 0.1728 0.0247 0.0613 0.0887 0.0799 0.1584 0.1857 0.0604 0.2176 0.1571 0.3721)) (bu h - (equal) (time . 20) (line-count . 19) (looseness-spread . 0.2003) (bps q 6 11 17 21 28 34 40 45 49 55 60 66 70 77 83 88 93 97) (piece-count . 101) (avg-piece-length . 23.255049504950488) (avg-looseness . 0.0946) (looseness-sd . 0.06112128324431759) (looseness-variance . 0.0037358112654320985) (looses q 0.2188 0.1485 0.18 0.114 0.0378 0.1093 0.0404 0.195 0.1122 0.0598 0.0209 0.0731 0.0554 0.0533 0.0185 0.0302 0.0778 0.1571 0.3721)) (fh h - (equal) (time . 17) (line-count . 19) (looseness-spread . 0.1949) (bps q 7 13 20 28 35 42 48 55 60 66 72 78 85 92 98 104 110 117) (piece-count . 120) (avg-piece-length . 19.57299999999999) (avg-looseness . 0.0782) (looseness-sd . 0.05340014016026365) (looseness-variance . 0.002851574969135803) (looses q 0.0631 0.0256 0.0817 -0.0019 0.1268 0.0667 0.0991 0.0499 0.1728 0.0247 0.0613 0.0887 0.0799 0.1584 0.1857 0.0604 0.0738 -0.0092 0.661)) (fh-improved . 152) (bu-improved . 38) (bh-improved . 1)) c (h - (equal) (text u . "“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear birdies,’ indeed! I’ll tickle your breeches, and see if you say, ‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s how you earn your sixpence a day for keeping the rooks off my corn!”") (measure . 150) (bh h - (equal) (time . 12) (line-count . 11) (looseness-spread . 0.1682) (bps q 6 12 17 23 29 35 41 48 54 61) (piece-count . 65) (avg-piece-length . 20.546430769230764) (avg-looseness . 0.104) (looseness-sd . 0.057470221854452594) (looseness-variance . 0.0033028264) (looses q 0.1387 0.1617 0.0512 0.1627 0.1485 0.0009 0.0485 0.0557 0.1034 0.1691 0.4347)) (fu h - (equal) (time . 12) (line-count . 11) (looseness-spread . 0.2268) (bps q 7 12 17 23 29 35 39 45 50 56) (piece-count . 60) (avg-piece-length . 22.25863333333333) (avg-looseness . 0.1038) (looseness-sd . 0.07354770220747893) (looseness-variance . 0.0054092645) (looses q 0.0492 0.2277 0.0512 0.1627 0.1485 0.0009 0.0485 0.0557 0.2096 0.0845 0.4347)) (bu h - (equal) (time . 12) (line-count . 11) (looseness-spread . 0.2281) (bps q 6 12 17 23 29 35 39 44 50 56) (piece-count . 60) (avg-piece-length . 22.25863333333333) (avg-looseness . 0.1078) (looseness-sd . 0.06704215390334652) (looseness-variance . 0.0044946504) (looses q 0.1387 0.1617 0.0512 0.1627 0.1485 0.0009 0.0485 0.229 0.0527 0.0845 0.4347)) (fh h - (equal) (time . 9) (line-count . 11) (looseness-spread . 0.2268) (bps q 7 12 17 23 29 35 41 48 54 61) (piece-count . 65) (avg-piece-length . 20.546430769230764) (avg-looseness . 0.1017) (looseness-sd . 0.0683712432240339) (looseness-variance . 0.004674626900000001) (looses q 0.0492 0.2277 0.0512 0.1627 0.1485 0.0009 0.0485 0.0557 0.1034 0.1691 0.4347)) (fh-improved . 14) (bu-improved . 2) (bh-improved . 1)) c (h - (equal) (text u . "Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham had seized his left hand with his own left, and swinging his slim frame round him at arm’s-length, again struck Jude on the hind parts with the flat side of Jude’s own rattle, till the field echoed with the blows, which were delivered once or twice at each revolution.") (measure . 150) (bh h - (equal) (time . 12) (line-count . 11) (looseness-spread . 0.1796) (bps q 5 10 15 21 27 32 38 45 52 58) (piece-count . 67) (avg-piece-length . 20.503298507462688) (avg-looseness . 0.1078) (looseness-sd . 0.0578776329854634) (looseness-variance . 0.0033498204000000005) (looses q 0.1822 0.0679 0.1255 0.1722 0.0799 0.2005 0.1132 0.0561 0.06 0.0209 0.0235)) (fu h - (equal) (time . 27) (line-count . 11) (looseness-spread . 0.2007) (bps q 5 8 13 19 24 29 35 42 48 53) (piece-count . 59) (avg-piece-length . 23.283406779661018) (avg-looseness . 0.1078) (looseness-sd . 0.06753500129562448) (looseness-variance . 0.0045609764) (looses q 0.0285 0.2216 0.1255 0.1722 0.0799 0.2005 0.1132 0.0561 0.06 0.0209 0.0235)) (bu h - (equal) (time . 12) (line-count . 11) (looseness-spread . 0.1796) (bps q 4 8 13 19 24 29 35 42 48 53) (piece-count . 59) (avg-piece-length . 23.283406779661018) (avg-looseness . 0.1078) (looseness-sd . 0.0578776329854634) (looseness-variance . 0.0033498204000000005) (looses q 0.1822 0.0679 0.1255 0.1722 0.0799 0.2005 0.1132 0.0561 0.06 0.0209 0.0235)) (fh h - (equal) (time . 10) (line-count . 11) (looseness-spread . 0.2007) (bps q 6 10 15 21 27 32 38 45 52 58) (piece-count . 67) (avg-piece-length . 20.503298507462688) (avg-looseness . 0.1078) (looseness-sd . 0.06753500129562448) (looseness-variance . 0.0045609764) (looses q 0.0285 0.2216 0.1255 0.1722 0.0799 0.2005 0.1132 0.0561 0.06 0.0209 0.0235)) (fh-improved . 28) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as helpless under the centrifugal tendency of his person as a hooked fish swinging to land, and beholding the hill, the rick, the plantation, the path, and the rooks going round and round him in an amazing circular race. “I—I sir—only meant that—there was a good crop in the ground—I saw ‘em sow it—and the rooks could have a little bit for dinner—and you wouldn’t miss it, sir—and Mr. Phillotson said I was to be kind to ‘em—oh, oh, oh!”") (measure . 150) (bh h - (equal) (time . 23) (line-count . 17) (looseness-spread . 0.1344) (bps q 5 10 17 25 32 39 47 52 61 67 74 81 89 95 102 111) (piece-count . 112) (avg-piece-length . 17.802) (avg-looseness . 0.0804) (looseness-sd . 0.04442460607591248) (looseness-variance . 0.0019735456250000003) (looses q 0.1301 0.1269 0.0965 0.1252 0.0788 0.0623 0.0187 0.1164 0.0435 0.1343 0.143 0.0193 0.0648 0.0811 0.0365 0.0086 0.7767)) (fu h - (equal) (time . 32) (line-count . 17) (looseness-spread . 0.1714) (bps q 5 11 15 21 26 32 38 43 49 55 62 69 76 81 87 96) (piece-count . 97) (avg-piece-length . 20.554886597938147) (avg-looseness . 0.0807) (looseness-sd . 0.051238596292248285) (looseness-variance . 0.0026253937499999998) (looses q 0.1301 0.0309 0.093 0.18 0.1287 0.0623 0.0187 0.1164 0.0435 0.1343 0.143 0.0193 0.0648 0.0811 0.0365 0.0086 0.7767)) (bu h - (equal) (time . 18) (line-count . 17) (looseness-spread . 0.1714) (bps q 5 10 15 21 26 32 38 43 49 55 62 69 76 81 87 96) (piece-count . 97) (avg-piece-length . 20.554886597938147) (avg-looseness . 0.0817) (looseness-sd . 0.05362382538049202) (looseness-variance . 0.0028755146484375003) (looses q 0.1301 0.1269 0.0135 0.18 0.1287 0.0623 0.0187 0.1164 0.0435 0.1343 0.143 0.0193 0.0648 0.0811 0.0365 0.0086 0.7767)) (fh h - (equal) (time . 15) (line-count . 17) (looseness-spread . 0.1714) (bps q 5 11 18 26 32 39 47 52 61 67 74 81 89 95 102 111) (piece-count . 112) (avg-piece-length . 17.802) (avg-looseness . 0.0807) (looseness-sd . 0.051238596292248285) (looseness-variance . 0.0026253937499999998) (looses q 0.1301 0.0309 0.093 0.18 0.1287 0.0623 0.0187 0.1164 0.0435 0.1343 0.143 0.0193 0.0648 0.0811 0.0365 0.0086 0.7767)) (fh-improved . 144) (bu-improved . 1) (bh-improved . 3)) c (h - (equal) (text u . "This truthful explanation seemed to exasperate the farmer even more than if Jude had stoutly denied saying anything at all, and he still smacked the whirling urchin, the clacks of the instrument continuing to resound all across the field and as far as the ears of distant workers—who gathered thereupon that Jude was pursuing his business of clacking with great assiduity—and echoing from the brand-new church tower just behind the mist, towards the building of which structure the farmer had largely subscribed, to testify his love for God and man.") (measure . 150) (bh h - (equal) (time . 35) (line-count . 18) (looseness-spread . 0.2277) (bps q 6 13 19 25 32 37 45 51 60 66 74 80 86 91 96 103 109) (piece-count . 116) (avg-piece-length . 19.530073275862062) (avg-looseness . 0.0902) (looseness-sd . 0.06587581059953136) (looseness-variance . 0.004339622422145328) (looses q 0.2289 0.0121 0.1802 0.0733 0.0859 0.1138 0.1212 0.0602 0.0222 0.0828 0.0473 0.1984 0.0016 0.1224 0.1272 0.0554 0.0012 0.0198)) (fu h - (equal) (time . 18) (line-count . 19) (looseness-spread . 0.2674) (bps q 3 8 14 19 25 31 34 40 47 50 54 59 63 68 73 78 83 88) (piece-count . 92) (avg-piece-length . 24.624875) (avg-looseness . 0.1267) (looseness-sd . 0.09267488306233401) (looseness-variance . 0.008588633950617285) (looses q 0.2289 0.0121 0.1802 -0.0003 0.1596 -0.0019 0.2369 0.0602 0.1953 0.2655 0.2549 0.0021 0.2162 0.1347 0.1232 0.1251 0.0491 0.0384 0.3339)) (bu h - (equal) (time . 20) (line-count . 19) (looseness-spread . 0.2361) (bps q 3 7 12 17 23 27 32 37 44 49 53 58 62 67 72 78 83 88) (piece-count . 92) (avg-piece-length . 24.624875) (avg-looseness . 0.1268) (looseness-sd . 0.0752899598589052) (looseness-variance . 0.0056685780555555555) (looses q 0.2289 0.2346 0.2438 0.0712 0.1992 0.1277 0.1499 0.0332 0.2455 0.1031 0.1031 0.1367 0.0621 0.1506 0.0956 0.0094 0.0491 0.0384 0.3339)) (fh h - (equal) (time . 18) (line-count . 18) (looseness-spread . 0.2388) (bps q 6 13 19 26 32 38 45 51 60 66 74 80 86 91 96 103 109) (piece-count . 116) (avg-piece-length . 19.530073275862062) (avg-looseness . 0.0902) (looseness-sd . 0.08223403558744116) (looseness-variance . 0.006762436608996539) (looses q 0.2289 0.0121 0.1802 -0.0003 0.1596 -0.0019 0.2369 0.0602 0.0222 0.0828 0.0473 0.1984 0.0016 0.1224 0.1272 0.0554 0.0012 0.0198)) (fh-improved . 246) (bu-improved . 25) (bh-improved . 2)) c (h - (equal) (text u . "Presently Troutham grew tired of his punitive task, and depositing the quivering boy on his legs, took a sixpence from his pocket and gave it him in payment for his day’s work, telling him to go home and never let him see him in one of those fields again.") (measure . 150) (bh h - (equal) (time . 10) (line-count . 8) (looseness-spread . 0.056) (bps q 4 11 20 27 35 42 49) (piece-count . 55) (avg-piece-length . 18.821527272727277) (avg-looseness . 0.0375) (looseness-sd . 0.01852997571504075) (looseness-variance . 0.00034335999999999997) (looses q 0.0562 0.0258 0.0165 0.0388 0.0725 0.0269 0.0258 0.1881)) (fu h - (equal) (time . 9) (line-count . 9) (looseness-spread . 0.2763) (bps q 4 9 14 21 27 32 39 47) (piece-count . 49) (avg-piece-length . 21.126204081632654) (avg-looseness . 0.1043) (looseness-sd . 0.10113470518941557) (looseness-variance . 0.010228228593750001) (looses q 0.0562 0.273 0.0368 -0.002 0.2382 0.1694 -0.0033 0.0662 0.6545)) (bu h - (equal) (time . 9) (line-count . 9) (looseness-spread . 0.2763) (bps q 4 9 14 20 27 32 39 47) (piece-count . 49) (avg-piece-length . 21.126204081632654) (avg-looseness . 0.1043) (looseness-sd . 0.08167757399525283) (looseness-variance . 0.0066712260937500005) (looses q 0.0562 0.273 0.0368 0.1041 0.1321 0.1694 -0.0033 0.0662 0.6545)) (fh h - (equal) (time . 8) (line-count . 8) (looseness-spread . 0.056) (bps q 4 11 20 27 35 42 49) (piece-count . 55) (avg-piece-length . 18.821527272727277) (avg-looseness . 0.0375) (looseness-sd . 0.01852997571504075) (looseness-variance . 0.00034335999999999997) (looses q 0.0562 0.0258 0.0165 0.0388 0.0725 0.0269 0.0258 0.1881)) (fh-improved . 42) (bu-improved . 1) (bh-improved . 0)) c (h - (equal) (text u . "Jude leaped out of arm’s reach, and walked along the trackway weeping—not from the pain, though that was keen enough; not from the perception of the flaw in the terrestrial scheme, by which what was good for God’s birds was bad for God’s gardener; but with the awful sense that he had wholly disgraced himself before he had been a year in the parish, and hence might be a burden to his great-aunt for life.") (measure . 150) (bh h - (equal) (time . 15) (line-count . 14) (looseness-spread . 0.1549) (bps q 6 12 18 23 31 39 45 51 57 63 70 76 84) (piece-count . 87) (avg-piece-length . 19.24425862068965) (avg-looseness . 0.0898) (looseness-sd . 0.04317174728122096) (looseness-variance . 0.0018637997633136091) (looses q 0.0675 0.0681 0.1303 0.1037 0.0755 0.0065 0.0374 0.1614 0.0444 0.1291 0.1314 0.1226 0.0897 0.6435)) (fu h - (equal) (time . 26) (line-count . 14) (looseness-spread . 0.2725) (bps q 6 11 16 21 27 33 39 44 49 54 59 66 73) (piece-count . 77) (avg-piece-length . 21.743512987012977) (avg-looseness . 0.105) (looseness-sd . 0.07737524411830224) (looseness-variance . 0.0059869284023668645) (looses q 0.0675 0.0681 0.1303 0.1037 0.0755 0.0065 0.0374 0.279 0.134 0.2524 0.0354 0.1097 0.0654 0.4661)) (bu h - (equal) (time . 15) (line-count . 14) (looseness-spread . 0.217) (bps q 6 11 16 21 27 32 38 44 49 54 59 66 73) (piece-count . 77) (avg-piece-length . 21.743512987012977) (avg-looseness . 0.1062) (looseness-sd . 0.05313946259802691) (looseness-variance . 0.002823802485207101) (looses q 0.0675 0.0681 0.1303 0.1037 0.0755 0.1114 0.1542 0.0736 0.134 0.2524 0.0354 0.1097 0.0654 0.4661)) (fh h - (equal) (time . 12) (line-count . 14) (looseness-spread . 0.1549) (bps q 6 12 18 23 31 39 45 51 57 63 70 76 84) (piece-count . 87) (avg-piece-length . 19.24425862068965) (avg-looseness . 0.0898) (looseness-sd . 0.04317174728122096) (looseness-variance . 0.0018637997633136091) (looses q 0.0675 0.0681 0.1303 0.1037 0.0755 0.0065 0.0374 0.1614 0.0444 0.1291 0.1314 0.1226 0.0897 0.6435)) (fh-improved . 77) (bu-improved . 2) (bh-improved . 0)) c (h - (equal) (text u . "With this shadow on his mind he did not care to show himself in the village, and went homeward by a roundabout track behind a high hedge and across a pasture. Here he beheld scores of coupled earthworms lying half their length on the surface of the damp ground, as they always did in such weather at that time of the year. It was impossible to advance in regular steps without crushing some of them at each tread.") (measure . 150) (bh h - (equal) (time . 17) (line-count . 14) (looseness-spread . 0.1216) (bps q 7 15 22 28 35 41 47 54 60 67 76 84 91) (piece-count . 92) (avg-piece-length . 18.551874999999995) (avg-looseness . 0.0569) (looseness-sd . 0.03881497453974059) (looseness-variance . 0.00150660224852071) (looses q -0.0032 0.0624 0.0286 0.108 0.1049 0.0828 0.0732 0.1184 0.0067 0.0352 0.0416 0.011 0.0702 0.8383)) (fu h - (equal) (time . 26) (line-count . 14) (looseness-spread . 0.2477) (bps q 7 14 19 25 31 36 40 47 53 60 66 71 77) (piece-count . 78) (avg-piece-length . 21.881698717948716) (avg-looseness . 0.0598) (looseness-sd . 0.06353426881305449) (looseness-variance . 0.004036603313609468) (looses q -0.0032 0.0624 0.0286 0.0581 0.0303 0.2445 0.0732 0.0027 0.0064 0.0733 0.1196 0.011 0.0702 0.8383)) (bu h - (equal) (time . 15) (line-count . 14) (looseness-spread . 0.2339) (bps q 7 14 19 24 30 35 40 46 52 59 66 71 77) (piece-count . 78) (avg-piece-length . 21.881698717948716) (avg-looseness . 0.0586) (looseness-sd . 0.061874890950833324) (looseness-variance . 0.003828502130177515) (looses q -0.0032 0.0624 0.0286 0.108 0.2291 0.0582 -0.0048 0.1184 0.0067 0.0352 0.0416 0.011 0.0702 0.8383)) (fh h - (equal) (time . 15) (line-count . 14) (looseness-spread . 0.1688) (bps q 7 15 22 29 36 42 48 55 61 68 76 84 91) (piece-count . 92) (avg-piece-length . 18.551874999999995) (avg-looseness . 0.0581) (looseness-sd . 0.048192218675097355) (looseness-variance . 0.0023224899408284022) (looses q -0.0032 0.0624 0.0286 0.0581 0.0303 0.1114 0.0217 0.1656 0.0064 0.0733 0.1196 0.011 0.0702 0.8383)) (fh-improved . 88) (bu-improved . 6) (bh-improved . 7)) c (h - (equal) (text u . "Though Farmer Troutham had just hurt him, he was a boy who could not himself bear to hurt anything. He had never brought home a nest of young birds without lying awake in misery half the night after, and often reinstating them and the nest in their original place the next morning. He could scarcely bear to see trees cut down or lopped, from a fancy that it hurt them; and late pruning, when the sap was up and the tree bled profusely, had been a positive grief to him in his infancy. This weakness of character, as it may be called, suggested that he was the sort of man who was born to ache a good deal before the fall of the curtain upon his unnecessary life should signify that all was well with him again. He carefully picked his way on tiptoe among the earthworms, without killing a single one.") (measure . 150) (bh h - (equal) (time . 31) (line-count . 26) (looseness-spread . 0.1476) (bps q 4 12 19 25 32 39 45 53 61 67 73 80 87 94 103 110 118 125 133 140 148 155 161 168 174) (piece-count . 177) (avg-piece-length . 18.446454802259886) (avg-looseness . 0.0636) (looseness-sd . 0.037739464755080984) (looseness-variance . 0.0014242672) (looses q 0.0504 0.0343 0.0913 0.0284 0.022 0.0941 0.1038 -0.0118 0.0445 0.1131 0.0529 0.1091 0.0606 0.0885 0.0464 0.0358 0.125 0.0842 0.0645 0.0753 -0.0072 0.0713 0.1358 0.0412 0.0355 0.6389)) (fu h - (equal) (time . 39) (line-count . 26) (looseness-spread . 0.298) (bps q 4 12 18 23 29 34 40 46 51 56 63 70 76 82 87 94 100 106 114 121 126 130 137 143 147) (piece-count . 151) (avg-piece-length . 21.62266556291391) (avg-looseness . 0.0845) (looseness-sd . 0.07172377971077654) (looseness-variance . 0.005144300576) (looses q 0.0504 0.0343 0.0913 0.0284 0.1805 0.09 0.1134 0.0303 0.163 0.0095 0.0413 0.0922 0.0634 0.2584 0.0996 0.0467 0.0314 0.0313 0.0191 0.0618 0.3075 0.0646 0.0432 0.0675 0.0942 0.1769)) (bu h - (equal) (time . 28) (line-count . 26) (looseness-spread . 0.173) (bps q 4 11 17 22 28 33 39 44 50 55 62 69 74 82 87 94 100 105 112 119 126 130 137 143 147) (piece-count . 151) (avg-piece-length . 21.62266556291391) (avg-looseness . 0.0831) (looseness-sd . 0.04401425696294327) (looseness-variance . 0.001937254816) (looses q 0.0504 0.1817 0.0923 0.1371 0.093 0.1462 0.0634 0.0764 0.0908 0.0087 0.1246 0.0247 0.0979 0.0241 0.0996 0.0467 0.0314 0.1637 0.1238 0.052 0.0802 0.0646 0.0432 0.0675 0.0942 0.1769)) (fh h - (equal) (time . 38) (line-count . 26) (looseness-spread . 0.1543) (bps q 4 12 19 25 32 39 45 53 61 67 74 81 88 95 105 111 119 126 133 140 148 155 161 168 174) (piece-count . 177) (avg-piece-length . 18.446454802259886) (avg-looseness . 0.0605) (looseness-sd . 0.04446823297591214) (looseness-variance . 0.001977423744) (looses q 0.0504 0.0343 0.0913 0.0284 0.022 0.0941 0.1038 -0.0118 0.0445 0.1131 0.0029 0.0325 0.0906 0.0397 -0.0071 0.0622 0.1158 0.111 0.1425 0.0753 -0.0072 0.0713 0.1358 0.0412 0.0355 0.6389)) (fh-improved . 326) (bu-improved . 19) (bh-improved . 9)) c (h - (equal) (text u . "On entering the cottage he found his aunt selling a penny loaf to a little girl, and when the customer was gone she said, “Well, how do you come to be back here in the middle of the morning like this?”") (measure . 150) (bh h - (equal) (time . 8) (line-count . 7) (looseness-spread . 0.1523) (bps q 8 16 24 30 37 45) (piece-count . 48) (avg-piece-length . 16.973041666666667) (avg-looseness . 0.0696) (looseness-sd . 0.050512190497828235) (looseness-variance . 0.002551481388888889) (looses q -0.0105 0.0799 0.1145 0.0311 0.1418 0.0609 0.6127)) (fu h - (equal) (time . 19) (line-count . 7) (looseness-spread . 0.2999) (bps q 6 14 19 24 31 38) (piece-count . 41) (avg-piece-length . 19.870878048780487) (avg-looseness . 0.1108) (looseness-sd . 0.09592665021891582) (looseness-variance . 0.009201922222222221) (looses q -0.0105 0.03 0.2894 0.1526 0.1107 0.0928 0.4468)) (bu h - (equal) (time . 8) (line-count . 7) (looseness-spread . 0.1492) (bps q 5 11 18 24 31 38) (piece-count . 41) (avg-piece-length . 19.870878048780487) (avg-looseness . 0.1108) (looseness-sd . 0.046710265348089045) (looseness-variance . 0.0021818488888888884) (looses q 0.1862 0.0918 0.1465 0.037 0.1107 0.0928 0.4468)) (fh h - (equal) (time . 9) (line-count . 7) (looseness-spread . 0.1749) (bps q 8 17 24 30 37 45) (piece-count . 48) (avg-piece-length . 16.973041666666667) (avg-looseness . 0.0696) (looseness-sd . 0.06290467435378357) (looseness-variance . 0.003956998055555556) (looses q -0.0105 0.03 0.1644 0.0311 0.1418 0.0609 0.6127)) (fh-improved . 29) (bu-improved . 5) (bh-improved . 1)) c (h - (equal) (text u . "“Mr. Troutham have turned me away because I let the rooks have a few peckings of corn. And there’s my wages—the last I shall ever hae!”") (measure . 150) (bh h - (equal) (time . 5) (line-count . 5) (looseness-spread . 0.1597) (bps q 5 11 19 25) (piece-count . 28) (avg-piece-length . 20.311464285714287) (avg-looseness . 0.0836) (looseness-sd . 0.06253714895963838) (looseness-variance . 0.003910894999999999) (looses q 0.0573 0.1541 -0.0056 0.1286 0.5565)) (fu h - (equal) (time . 5) (line-count . 5) (looseness-spread . 0.1565) (bps q 5 12 18 24) (piece-count . 27) (avg-piece-length . 21.06374074074074) (avg-looseness . 0.0836) (looseness-sd . 0.06151759910789757) (looseness-variance . 0.0037844149999999997) (looses q 0.0573 -0.004 0.1525 0.1286 0.5565)) (bu h - (equal) (time . 5) (line-count . 5) (looseness-spread . 0.1597) (bps q 5 11 18 24) (piece-count . 27) (avg-piece-length . 21.06374074074074) (avg-looseness . 0.0836) (looseness-sd . 0.06253714895963838) (looseness-variance . 0.003910894999999999) (looses q 0.0573 0.1541 -0.0056 0.1286 0.5565)) (fh h - (equal) (time . 4) (line-count . 5) (looseness-spread . 0.1565) (bps q 5 12 19 25) (piece-count . 28) (avg-piece-length . 20.311464285714287) (avg-looseness . 0.0836) (looseness-sd . 0.06151759910789757) (looseness-variance . 0.0037844149999999997) (looses q 0.0573 -0.004 0.1525 0.1286 0.5565)) (fh-improved . 2) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "“Ah!” said his aunt, suspending her breath. And she opened upon him a lecture on how she would now have him all the spring upon her hands doing nothing. “If you can’t skeer birds, what can ye do? There! don’t ye look so deedy! Farmer Troutham is not so much better than myself, come to that. But ‘tis as Job said, ‘Now they that are younger than I have me in derision, whose fathers I would have disdained to have set with the dogs of my flock.’ His father was my father’s journeyman, anyhow, and I must have been a fool to let ‘ee go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of mischty.”") (measure . 150) (bh h - (equal) (time . 24) (line-count . 20) (looseness-spread . 0.1445) (bps q 6 12 20 26 31 37 43 49 56 62 69 76 82 89 96 102 110 119 125) (piece-count . 132) (avg-piece-length . 19.122496212121213) (avg-looseness . 0.0802) (looseness-sd . 0.043521048494376394) (looseness-variance . 0.0018940816620498615) (looses q 0.1442 0.0417 0.0637 0.1651 0.1268 0.1547 0.0933 0.0473 0.0292 0.0782 0.0811 0.097 0.0444 0.0512 0.0206 0.13 0.0338 0.0638 0.0581 0.1933)) (fu h - (equal) (time . 39) (line-count . 20) (looseness-spread . 0.1445) (bps q 5 10 17 23 28 33 39 45 51 57 64 71 76 82 89 93 100 109 115) (piece-count . 121) (avg-piece-length . 20.860904958677686) (avg-looseness . 0.0814) (looseness-sd . 0.04377180438051145) (looseness-variance . 0.0019159708587257616) (looses q 0.0542 0.1533 0.0637 0.1651 0.1268 0.1547 0.0933 0.0473 0.0292 0.0782 0.0811 0.097 0.0444 0.0512 0.0206 0.13 0.0338 0.0638 0.0581 0.1933)) (bu h - (equal) (time . 23) (line-count . 20) (looseness-spread . 0.1445) (bps q 5 10 17 23 28 33 39 45 51 57 64 71 76 82 89 93 100 109 115) (piece-count . 121) (avg-piece-length . 20.860904958677686) (avg-looseness . 0.0814) (looseness-sd . 0.04377180438051145) (looseness-variance . 0.0019159708587257616) (looses q 0.0542 0.1533 0.0637 0.1651 0.1268 0.1547 0.0933 0.0473 0.0292 0.0782 0.0811 0.097 0.0444 0.0512 0.0206 0.13 0.0338 0.0638 0.0581 0.1933)) (fh h - (equal) (time . 30) (line-count . 20) (looseness-spread . 0.1445) (bps q 7 12 20 26 31 37 43 49 56 62 69 76 82 89 96 102 110 119 125) (piece-count . 132) (avg-piece-length . 19.122496212121213) (avg-looseness . 0.0814) (looseness-sd . 0.04377180438051145) (looseness-variance . 0.0019159708587257616) (looses q 0.0542 0.1533 0.0637 0.1651 0.1268 0.1547 0.0933 0.0473 0.0292 0.0782 0.0811 0.097 0.0444 0.0512 0.0206 0.13 0.0338 0.0638 0.0581 0.1933)) (fh-improved . 104) (bu-improved . 0) (bh-improved . 1)) c (h - (equal) (text u . "More angry with Jude for demeaning her by coming there than for dereliction of duty, she rated him primarily from that point of view, and only secondarily from a moral one.") (measure . 150) (bh h - (equal) (time . 7) (line-count . 6) (looseness-spread . 0.1888) (bps q 5 12 20 27 34) (piece-count . 39) (avg-piece-length . 18.52089743589744) (avg-looseness . 0.1027) (looseness-sd . 0.06832468368020447) (looseness-variance . 0.0046682624) (looses q 0.2242 0.0354 0.0395 0.1042 0.11 0.283)) (fu h - (equal) (time . 6) (line-count . 6) (looseness-spread . 0.2718) (bps q 5 10 16 21 26) (piece-count . 30) (avg-piece-length . 24.077166666666663) (avg-looseness . 0.1421) (looseness-sd . 0.10709479912675497) (looseness-variance . 0.011469295999999999) (looses q 0.2242 0.0354 0.0395 0.1042 0.3072 0.1074)) (bu h - (equal) (time . 6) (line-count . 6) (looseness-spread . 0.1888) (bps q 5 10 15 20 26) (piece-count . 30) (avg-piece-length . 24.077166666666663) (avg-looseness . 0.1454) (looseness-sd . 0.06390935455784232) (looseness-variance . 0.0040844056) (looses q 0.2242 0.0354 0.1767 0.1215 0.1691 0.1074)) (fh h - (equal) (time . 6) (line-count . 6) (looseness-spread . 0.1888) (bps q 5 12 20 27 34) (piece-count . 39) (avg-piece-length . 18.52089743589744) (avg-looseness . 0.1027) (looseness-sd . 0.06832468368020447) (looseness-variance . 0.0046682624) (looses q 0.2242 0.0354 0.0395 0.1042 0.11 0.283)) (fh-improved . 20) (bu-improved . 2) (bh-improved . 0)) c (h - (equal) (text u . "“Not that you should have let the birds eat what Farmer Troutham planted. Of course you was wrong in that. Jude, Jude, why didstn’t go off with that schoolmaster of thine to Christminster or somewhere? But, oh no—poor or’nary child—there never was any sprawl on thy side of the family, and never will be!”") (measure . 150) (bh h - (equal) (time . 11) (line-count . 11) (looseness-spread . 0.1716) (bps q 5 11 15 21 28 35 41 46 51 59) (piece-count . 62) (avg-piece-length . 20.614677419354845) (avg-looseness . 0.1324) (looseness-sd . 0.05110652111032407) (looseness-variance . 0.0026118765) (looses q 0.2203 0.1186 0.1051 0.1507 0.0939 0.1235 0.0908 0.2086 0.1643 0.0487 0.4527)) (fu h - (equal) (time . 25) (line-count . 11) (looseness-spread . 0.1652) (bps q 6 11 15 21 27 32 35 40 45 52) (piece-count . 55) (avg-piece-length . 23.238363636363637) (avg-looseness . 0.1324) (looseness-sd . 0.04989882263140084) (looseness-variance . 0.0024898925000000002) (looses q 0.125 0.2139 0.1051 0.1507 0.0939 0.1235 0.0908 0.2086 0.1643 0.0487 0.4527)) (bu h - (equal) (time . 11) (line-count . 11) (looseness-spread . 0.1716) (bps q 5 11 15 21 27 32 35 40 45 52) (piece-count . 55) (avg-piece-length . 23.238363636363637) (avg-looseness . 0.1324) (looseness-sd . 0.05110652111032407) (looseness-variance . 0.0026118765) (looses q 0.2203 0.1186 0.1051 0.1507 0.0939 0.1235 0.0908 0.2086 0.1643 0.0487 0.4527)) (fh h - (equal) (time . 9) (line-count . 11) (looseness-spread . 0.1652) (bps q 6 11 15 21 28 35 41 46 51 59) (piece-count . 62) (avg-piece-length . 20.614677419354845) (avg-looseness . 0.1324) (looseness-sd . 0.04989882263140084) (looseness-variance . 0.0024898925000000002) (looses q 0.125 0.2139 0.1051 0.1507 0.0939 0.1235 0.0908 0.2086 0.1643 0.0487 0.4527)) (fh-improved . 29) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "“Where is this beautiful city, Aunt—this place where Mr. Phillotson is gone to?” asked the boy, after meditating in silence.") (measure . 150) (bh h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.1697) (bps q 7 12 19) (piece-count . 27) (avg-piece-length . 18.773111111111113) (avg-looseness . 0.109) (looseness-sd . 0.0766057584142486) (looseness-variance . 0.005868442222222221) (looses q 0.1707 0.1552 0.001 0.0606)) (fu h - (equal) (time . 4) (line-count . 4) (looseness-spread . 0.1697) (bps q 5 10 16) (piece-count . 21) (avg-piece-length . 24.136857142857142) (avg-looseness . 0.109) (looseness-sd . 0.0766057584142486) (looseness-variance . 0.005868442222222221) (looses q 0.1707 0.1552 0.001 0.0606)) (bu h - (equal) (time . 4) (line-count . 4) (looseness-spread . 0.1697) (bps q 5 10 16) (piece-count . 21) (avg-piece-length . 24.136857142857142) (avg-looseness . 0.109) (looseness-sd . 0.0766057584142486) (looseness-variance . 0.005868442222222221) (looses q 0.1707 0.1552 0.001 0.0606)) (fh h - (equal) (time . 4) (line-count . 4) (looseness-spread . 0.1697) (bps q 7 12 19) (piece-count . 27) (avg-piece-length . 18.773111111111113) (avg-looseness . 0.109) (looseness-sd . 0.0766057584142486) (looseness-variance . 0.005868442222222221) (looses q 0.1707 0.1552 0.001 0.0606)) (fh-improved . 7) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Lord! you ought to know where the city of Christminster is. Near a score of miles from here. It is a place much too good for you ever to have much to do with, poor boy, I’m a-thinking.”") (measure . 150) (bh h - (equal) (time . 8) (line-count . 6) (looseness-spread . 0.2192) (bps q 5 12 19 27 35) (piece-count . 42) (avg-piece-length . 18.068964285714287) (avg-looseness . 0.0858) (looseness-sd . 0.07936603807674918) (looseness-variance . 0.006298967999999999) (looses q 0.2315 0.0414 0.1073 0.0123 0.0365 0.0604)) (fu h - (equal) (time . 19) (line-count . 6) (looseness-spread . 0.2192) (bps q 5 10 17 25 33) (piece-count . 39) (avg-piece-length . 19.458884615384616) (avg-looseness . 0.0858) (looseness-sd . 0.07936603807674918) (looseness-variance . 0.006298967999999999) (looses q 0.2315 0.0414 0.1073 0.0123 0.0365 0.0604)) (bu h - (equal) (time . 7) (line-count . 6) (looseness-spread . 0.2192) (bps q 5 10 17 25 33) (piece-count . 39) (avg-piece-length . 19.458884615384616) (avg-looseness . 0.0858) (looseness-sd . 0.07936603807674918) (looseness-variance . 0.006298967999999999) (looses q 0.2315 0.0414 0.1073 0.0123 0.0365 0.0604)) (fh h - (equal) (time . 5) (line-count . 6) (looseness-spread . 0.2192) (bps q 5 12 19 27 35) (piece-count . 42) (avg-piece-length . 18.068964285714287) (avg-looseness . 0.0858) (looseness-sd . 0.07936603807674918) (looseness-variance . 0.006298967999999999) (looses q 0.2315 0.0414 0.1073 0.0123 0.0365 0.0604)) (fh-improved . 8) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as that. We’ve never had anything to do with folk in Christminster, nor folk in Christminster with we.”") (measure . 150) (bh h - (equal) (time . 19) (line-count . 6) (looseness-spread . 0.1153) (bps q 5 11 17 24 31) (piece-count . 35) (avg-piece-length . 20.56594285714286) (avg-looseness . 0.1302) (looseness-sd . 0.04009949625618756) (looseness-variance . 0.0016079696) (looses q 0.1867 0.0714 0.1006 0.1452 0.1472 0.2928)) (fu h - (equal) (time . 5) (line-count . 6) (looseness-spread . 0.1712) (bps q 6 11 17 23 27) (piece-count . 29) (avg-piece-length . 24.820965517241376) (avg-looseness . 0.1302) (looseness-sd . 0.06748874276499747) (looseness-variance . 0.004554730399999999) (looses q 0.0903 0.0524 0.0872 0.1977 0.2236 0.2928)) (bu h - (equal) (time . 6) (line-count . 6) (looseness-spread . 0.1153) (bps q 5 10 16 22 27) (piece-count . 29) (avg-piece-length . 24.820965517241376) (avg-looseness . 0.1302) (looseness-sd . 0.04009949625618756) (looseness-variance . 0.0016079696) (looses q 0.1867 0.0714 0.1006 0.1452 0.1472 0.2928)) (fh h - (equal) (time . 5) (line-count . 6) (looseness-spread . 0.1712) (bps q 6 12 18 25 31) (piece-count . 35) (avg-piece-length . 20.56594285714286) (avg-looseness . 0.1302) (looseness-sd . 0.06748874276499747) (looseness-variance . 0.004554730399999999) (looses q 0.0903 0.0524 0.0872 0.1977 0.2236 0.2928)) (fh-improved . 8) (bu-improved . 4) (bh-improved . 4)) c (h - (equal) (text u . "Jude went out, and, feeling more than ever his existence to be an undemanded one, he lay down upon his back on a heap of litter near the pig-sty. The fog had by this time become more translucent, and the position of the sun could be seen through it. He pulled his straw hat over his face, and peered through the interstices of the plaiting at the white brightness, vaguely reflecting. Growing up brought responsibilities, he found. Events did not rhyme quite as he had thought. Nature’s logic was too horrid for him to care for. That mercy towards one set of creatures was cruelty towards another sickened his sense of harmony. As you got older, and felt yourself to be at the centre of your time, and not at a point in its circumference, as you had felt when you were little, you were seized with a sort of shuddering, he perceived. All around you there seemed to be something glaring, garish, rattling, and the noises and glares hit upon the little cell called your life, and shook it, and warped it.") (measure . 150) (bh h - (equal) (time . 53) (line-count . 32) (looseness-spread . 0.2343) (bps q 7 15 21 29 36 42 49 55 62 67 74 80 86 93 99 104 112 118 125 131 138 148 156 165 172 180 186 192 200 206 213) (piece-count . 217) (avg-piece-length . 18.67255529953916) (avg-looseness . 0.0736) (looseness-sd . 0.04903002499159448) (looseness-variance . 0.002403943350676379) (looses q 0.0047 0.0527 0.0681 0.11 0.1488 0.0823 0.0455 0.0831 0.0623 0.1336 0.1269 0.0371 0.0522 0.2266 0.0911 0.0693 0.0949 0.028 0.0156 0.1113 0.0466 -0.0077 0.0576 -0.0068 0.0675 0.0248 0.1187 0.0857 0.0417 0.093 0.1173 0.2988)) (fu h - (equal) (time . 32) (line-count . 32) (looseness-spread . 0.3074) (bps q 6 13 18 26 34 38 43 50 57 62 68 71 75 78 85 90 97 103 107 112 118 126 134 140 146 152 157 162 167 173 179) (piece-count . 183) (avg-piece-length . 22.141773224043693) (avg-looseness . 0.0753) (looseness-sd . 0.06931918678553363) (looseness-variance . 0.0048051496566077) (looses q 0.0047 0.0527 0.0681 0.0295 0.0335 0.2997 0.0455 0.0183 0.0366 0.1239 0.0532 0.2265 0.0522 0.2266 -0.0 0.028 0.1232 0.0696 0.0936 0.1113 0.0466 -0.0077 0.0576 -0.0068 0.0675 0.0248 0.1187 0.0857 0.0417 0.093 0.1173 0.2988)) (bu h - (equal) (time . 52) (line-count . 32) (looseness-spread . 0.2343) (bps q 6 13 18 25 32 38 43 49 56 61 66 71 75 78 84 89 96 102 107 112 118 126 134 140 146 152 157 162 167 173 179) (piece-count . 183) (avg-piece-length . 22.141773224043693) (avg-looseness . 0.0743) (looseness-sd . 0.05157802712797526) (looseness-variance . 0.002660292882414152) (looses q 0.0047 0.0527 0.0681 0.1953 0.0851 0.0823 0.0455 0.0831 0.0623 0.1336 0.1269 0.0371 0.0522 0.2266 0.0911 0.0693 0.0949 0.028 0.0156 0.1113 0.0466 -0.0077 0.0576 -0.0068 0.0675 0.0248 0.1187 0.0857 0.0417 0.093 0.1173 0.2988)) (fh h - (equal) (time . 29) (line-count . 32) (looseness-spread . 0.2343) (bps q 7 15 21 30 38 43 51 57 63 68 76 80 86 93 100 105 113 119 125 131 138 148 156 165 172 180 186 192 200 207 213) (piece-count . 217) (avg-piece-length . 18.67255529953916) (avg-looseness . 0.0734) (looseness-sd . 0.061881835299726164) (looseness-variance . 0.0038293615400624348) (looses q 0.0047 0.0527 0.0681 0.0295 0.0335 0.0647 0.0169 0.1334 0.148 0.1239 0.0532 0.2265 0.0522 0.2266 -0.0 0.028 0.1232 0.0696 0.0936 0.1113 0.0466 -0.0077 0.0576 -0.0068 0.0675 0.0248 0.1187 0.0857 0.0417 0.0077 0.181 0.2988)) (fh-improved . 491) (bu-improved . 12) (bh-improved . 17)) c (h - (equal) (text u . "If he could only prevent himself growing up! He did not want to be a man.") (measure . 150) (bh h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.011) (bps q 8 16) (piece-count . 18) (avg-piece-length . 16.88711111111111) (avg-looseness . 0.0348) (looseness-sd . 0.005500000000000001) (looseness-variance . 3.0250000000000017e-05) (looses q 0.0293 0.0403 0.7247)) (fu h - (equal) (time . 3) (line-count . 3) (looseness-spread . 0.011) (bps q 6 13) (piece-count . 15) (avg-piece-length . 20.264533333333336) (avg-looseness . 0.0348) (looseness-sd . 0.005500000000000001) (looseness-variance . 3.0250000000000017e-05) (looses q 0.0293 0.0403 0.7247)) (bu h - (equal) (time . 3) (line-count . 3) (looseness-spread . 0.011) (bps q 6 13) (piece-count . 15) (avg-piece-length . 20.264533333333336) (avg-looseness . 0.0348) (looseness-sd . 0.005500000000000001) (looseness-variance . 3.0250000000000017e-05) (looses q 0.0293 0.0403 0.7247)) (fh h - (equal) (time . 2) (line-count . 3) (looseness-spread . 0.011) (bps q 8 16) (piece-count . 18) (avg-piece-length . 16.88711111111111) (avg-looseness . 0.0348) (looseness-sd . 0.005500000000000001) (looseness-variance . 3.0250000000000017e-05) (looses q 0.0293 0.0403 0.7247)) (fh-improved . 5) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Then, like the natural boy, he forgot his despondency, and sprang up. During the remainder of the morning he helped his aunt, and in the afternoon, when there was nothing more to be done, he went into the village. Here he asked a man whereabouts Christminster lay.") (measure . 150) (bh h - (equal) (time . 10) (line-count . 9) (looseness-spread . 0.1504) (bps q 7 13 19 27 34 41 48 54) (piece-count . 58) (avg-piece-length . 19.236922413793103) (avg-looseness . 0.0891) (looseness-sd . 0.05259096880644052) (looseness-variance . 0.00276581) (looses q 0.1042 0.1419 0.0916 0.0053 0.0044 0.1114 0.0988 0.1548 0.2493)) (fu h - (equal) (time . 13) (line-count . 9) (looseness-spread . 0.3701) (bps q 6 10 15 21 27 33 39 44) (piece-count . 46) (avg-piece-length . 24.25525) (avg-looseness . 0.118) (looseness-sd . 0.10619954610896414) (looseness-variance . 0.01127834359375) (looses q 0.1042 0.1419 -0.0053 0.1239 0.0044 0.1114 0.0988 0.3648 0.061)) (bu h - (equal) (time . 9) (line-count . 9) (looseness-spread . 0.21) (bps q 6 10 15 21 26 31 38 44) (piece-count . 46) (avg-piece-length . 24.25525) (avg-looseness . 0.1181) (looseness-sd . 0.056339611952870246) (looseness-variance . 0.003174151875) (looses q 0.1042 0.1419 -0.0053 0.1239 0.2047 0.0935 0.1514 0.1307 0.061)) (fh h - (equal) (time . 20) (line-count . 9) (looseness-spread . 0.1601) (bps q 7 13 20 27 34 41 48 54) (piece-count . 58) (avg-piece-length . 19.236922413793103) (avg-looseness . 0.0918) (looseness-sd . 0.056084198699366296) (looseness-variance . 0.00314543734375) (looses q 0.1042 0.1419 -0.0053 0.1239 0.0044 0.1114 0.0988 0.1548 0.2493)) (fh-improved . 49) (bu-improved . 4) (bh-improved . 1)) c (h - (equal) (text u . "“Christminster? Oh, well, out by there yonder; though I’ve never bin there—not I. I’ve never had any business at such a place.”") (measure . 150) (bh h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.0045) (bps q 7 13 20) (piece-count . 27) (avg-piece-length . 19.480574074074074) (avg-looseness . 0.0264) (looseness-sd . 0.0018408935028645438) (looseness-variance . 3.3888888888888897e-06) (looses q 0.0266 0.0241 0.0286 0.135)) (fu h - (equal) (time . 4) (line-count . 4) (looseness-spread . 0.0045) (bps q 5 10 17) (piece-count . 23) (avg-piece-length . 22.8685) (avg-looseness . 0.0264) (looseness-sd . 0.0018408935028645438) (looseness-variance . 3.3888888888888897e-06) (looses q 0.0266 0.0241 0.0286 0.135)) (bu h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.0045) (bps q 5 10 17) (piece-count . 23) (avg-piece-length . 22.8685) (avg-looseness . 0.0264) (looseness-sd . 0.0018408935028645438) (looseness-variance . 3.3888888888888897e-06) (looses q 0.0266 0.0241 0.0286 0.135)) (fh h - (equal) (time . 3) (line-count . 4) (looseness-spread . 0.0045) (bps q 7 13 20) (piece-count . 27) (avg-piece-length . 19.480574074074074) (avg-looseness . 0.0264) (looseness-sd . 0.0018408935028645438) (looseness-variance . 3.3888888888888897e-06) (looses q 0.0266 0.0241 0.0286 0.135)) (fh-improved . 8) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "The man pointed north-eastward, in the very direction where lay that field in which Jude had so disgraced himself. There was something unpleasant about the coincidence for the moment, but the fearsomeness of this fact rather increased his curiosity about the city. The farmer had said he was never to be seen in that field again; yet Christminster lay across it, and the path was a public one. So, stealing out of the hamlet, he descended into the same hollow which had witnessed his punishment in the morning, never swerving an inch from the path, and climbing up the long and tedious ascent on the other side till the track joined the highway by a little clump of trees. Here the ploughed land ended, and all before him was bleak open down.") (measure . 150) (bh h - (equal) (time . 44) (line-count . 25) (looseness-spread . 0.2012) (bps q 5 11 17 24 30 37 43 49 55 62 69 76 84 92 98 104 111 118 125 131 138 146 151 157) (piece-count . 158) (avg-piece-length . 19.360905063291128) (avg-looseness . 0.0846) (looseness-sd . 0.04467881597829359) (looseness-variance . 0.001996196597222222) (looses q 0.1325 0.1906 0.1396 0.0921 -0.0106 0.1083 0.0595 0.0617 0.1366 0.0372 0.0966 0.0499 0.1103 0.1122 0.0237 0.117 0.0746 0.0454 0.1142 0.0326 0.0374 0.0726 0.0936 0.1038 0.8265)) (fu h - (equal) (time . 40) (line-count . 25) (looseness-spread . 0.2888) (bps q 4 9 15 20 24 29 33 39 44 51 58 63 70 76 81 85 89 95 101 107 113 119 124 130) (piece-count . 133) (avg-piece-length . 23.000172932330816) (avg-looseness . 0.1009) (looseness-sd . 0.06827386525665098) (looseness-variance . 0.004661320677083333) (looses q 0.2782 0.069 0.1396 0.0921 -0.0106 0.1083 0.0595 0.0617 0.1366 0.0372 0.0966 0.0499 0.1103 0.1122 0.0237 0.2582 0.1592 0.0151 0.07 0.0432 0.1679 0.1604 0.0903 0.0939 0.4813)) (bu h - (equal) (time . 26) (line-count . 25) (looseness-spread . 0.2888) (bps q 4 9 15 20 24 29 33 39 44 50 57 62 69 75 80 84 89 94 100 106 112 119 124 130) (piece-count . 133) (avg-piece-length . 23.000172932330816) (avg-looseness . 0.103) (looseness-sd . 0.05219679890541395) (looseness-variance . 0.0027245058159722224) (looses q 0.2782 0.069 0.1396 0.0921 -0.0106 0.1083 0.0595 0.0617 0.1366 0.1153 0.1476 0.0856 0.0968 0.1027 0.1561 0.1407 0.0531 0.1308 0.1037 0.0749 0.1025 0.0447 0.0903 0.0939 0.4813)) (fh h - (equal) (time . 22) (line-count . 25) (looseness-spread . 0.2035) (bps q 5 11 17 24 30 37 43 49 55 62 69 76 84 92 98 105 111 118 125 131 138 146 152 157) (piece-count . 158) (avg-piece-length . 19.360905063291128) (avg-looseness . 0.0846) (looseness-sd . 0.05549395597094836) (looseness-variance . 0.003079579149305555) (looses q 0.1325 0.1906 0.1396 0.0921 -0.0106 0.1083 0.0595 0.0617 0.1366 0.0372 0.0966 0.0499 0.1103 0.1122 0.0237 0.0279 0.1637 0.0454 0.1142 0.0326 0.0374 0.0726 0.0046 0.1929 0.8265)) (fh-improved . 356) (bu-improved . 11) (bh-improved . 2)) c (h - (equal) (text u . "The schoolmaster was leaving the village, and everybody seemed sorry. The miller at Cresscombe lent him the small white tilted cart and horse to carry his goods to the city of his destination, about twenty miles off, such a vehicle proving of quite sufficient size for the departing teacher’s effects. For the schoolhouse had been partly furnished by the managers, and the only cumbersome article possessed by the master, in addition to the packing-case of books, was a cottage piano that he had bought at an auction during the year in which he thought of learning instrumental music. But the enthusiasm having waned he had never acquired any skill in playing, and the purchased article had been a perpetual trouble to him ever since in moving house.") (measure . 180) (bh h - (equal) (time . 47) (line-count . 20) (looseness-spread . 0.1702) (bps q 9 16 24 32 42 49 59 66 73 82 91 100 109 118 126 134 141 150 161) (piece-count . 168) (avg-piece-length . 18.455788690476183) (avg-looseness . 0.0571) (looseness-sd . 0.046188502724525696) (looseness-variance . 0.0021333777839335176) (looses q 0.0568 0.0046 -0.0116 0.033 0.1239 0.118 0.0604 0.0099 0.0177 0.0275 0.0657 0.1586 0.0289 0.082 0.0347 0.1332 0.0762 0.0307 0.0349 0.1947)) (fu h - (equal) (time . 20) (line-count . 21) (looseness-spread . 0.2103) (bps q 5 10 17 24 32 37 43 48 53 59 64 70 77 85 93 98 103 110 116 123) (piece-count . 128) (avg-piece-length . 24.223222656249998) (avg-looseness . 0.1035) (looseness-sd . 0.062063867104781664) (looseness-variance . 0.0038519236) (looses q 0.1379 0.0759 0.0163 0.1188 0.1912 0.1163 0.2261 0.2099 0.0348 0.1783 0.0665 0.1377 0.0572 0.0158 0.0412 0.0955 0.1402 0.0377 0.0775 0.0956 0.3087)) (bu h - (equal) (time . 40) (line-count . 21) (looseness-spread . 0.1987) (bps q 5 10 16 23 31 36 43 48 53 59 64 70 77 85 93 98 103 110 116 123) (piece-count . 128) (avg-piece-length . 24.223222656249998) (avg-looseness . 0.1028) (looseness-sd . 0.05460400534759332) (looseness-variance . 0.0029815974) (looses q 0.1379 0.0759 0.1127 0.0875 0.2145 0.1129 0.1275 0.2099 0.0348 0.1783 0.0665 0.1377 0.0572 0.0158 0.0412 0.0955 0.1402 0.0377 0.0775 0.0956 0.3087)) (fh h - (equal) (time . 22) (line-count . 20) (looseness-spread . 0.1702) (bps q 9 16 24 32 42 50 60 66 73 82 91 100 109 119 126 135 142 151 162) (piece-count . 168) (avg-piece-length . 18.455788690476183) (avg-looseness . 0.0502) (looseness-sd . 0.04296106270318808) (looseness-variance . 0.0018456529085872577) (looses q 0.0568 0.0046 -0.0116 0.033 0.1239 0.0489 0.0511 0.1063 0.0177 0.0275 0.0657 0.1586 0.0289 0.0184 0.0983 0.0264 0.0622 0.029 0.0084 0.3087)) (fh-improved . 445) (bu-improved . 4) (bh-improved . 7)) c (h - (equal) (text u . "The rector had gone away for the day, being a man who disliked the sight of changes. He did not mean to return till the evening, when the new school-teacher would have arrived and settled in, and everything would be smooth again.") (measure . 180) (bh h - (equal) (time . 9) (line-count . 7) (looseness-spread . 0.0768) (bps q 9 18 25 32 39 46) (piece-count . 47) (avg-piece-length . 20.3178085106383) (avg-looseness . 0.062) (looseness-sd . 0.025213119380371973) (looseness-variance . 0.0006357013888888888) (looses q 0.0544 0.0619 0.0962 0.0522 0.0194 0.088 0.8627)) (fu h - (equal) (time . 6) (line-count . 7) (looseness-spread . 0.1228) (bps q 8 16 24 30 36 42) (piece-count . 43) (avg-piece-length . 22.20783720930233) (avg-looseness . 0.062) (looseness-sd . 0.04160554516995167) (looseness-variance . 0.0017310213888888889) (looses q 0.0544 0.0619 0.0128 0.1356 0.0194 0.088 0.8627)) (bu h - (equal) (time . 8) (line-count . 7) (looseness-spread . 0.0768) (bps q 8 16 23 30 36 42) (piece-count . 43) (avg-piece-length . 22.20783720930233) (avg-looseness . 0.062) (looseness-sd . 0.025213119380371973) (looseness-variance . 0.0006357013888888888) (looses q 0.0544 0.0619 0.0962 0.0522 0.0194 0.088 0.8627)) (fh h - (equal) (time . 6) (line-count . 7) (looseness-spread . 0.1228) (bps q 9 18 26 32 39 46) (piece-count . 47) (avg-piece-length . 20.3178085106383) (avg-looseness . 0.062) (looseness-sd . 0.04160554516995167) (looseness-variance . 0.0017310213888888889) (looses q 0.0544 0.0619 0.0128 0.1356 0.0194 0.088 0.8627)) (fh-improved . 14) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "The blacksmith, the farm bailiff, and the schoolmaster himself were standing in perplexed attitudes in the parlour before the instrument. The master had remarked that even if he got it into the cart he should not know what to do with it on his arrival at Christminster, the city he was bound for, since he was only going into temporary lodgings just at first.") (measure . 180) (bh h - (equal) (time . 15) (line-count . 10) (looseness-spread . 0.1127) (bps q 7 15 25 33 42 50 59 68 77) (piece-count . 79) (avg-piece-length . 18.455898734177218) (avg-looseness . 0.0392) (looseness-sd . 0.03552796846443484) (looseness-variance . 0.0012622365432098763) (looses q 0.0727 0.0673 -0.0082 0.0131 0.0268 0.1045 0.057 0.0148 0.0047 0.8334)) (fu h - (equal) (time . 9) (line-count . 10) (looseness-spread . 0.1122) (bps q 6 11 17 23 32 40 47 56 62) (piece-count . 64) (avg-piece-length . 22.78150000000001) (avg-looseness . 0.0412) (looseness-sd . 0.037380713981648044) (looseness-variance . 0.0013973177777777776) (looses q 0.0727 -0.0077 0.0849 0.0131 0.0268 0.1045 0.057 0.0148 0.0047 0.8334)) (bu h - (equal) (time . 13) (line-count . 10) (looseness-spread . 0.1122) (bps q 6 11 17 23 32 40 47 56 62) (piece-count . 64) (avg-piece-length . 22.78150000000001) (avg-looseness . 0.0412) (looseness-sd . 0.037380713981648044) (looseness-variance . 0.0013973177777777776) (looses q 0.0727 -0.0077 0.0849 0.0131 0.0268 0.1045 0.057 0.0148 0.0047 0.8334)) (fh h - (equal) (time . 10) (line-count . 10) (looseness-spread . 0.1122) (bps q 7 16 25 33 42 50 59 68 77) (piece-count . 79) (avg-piece-length . 18.455898734177218) (avg-looseness . 0.0412) (looseness-sd . 0.037380713981648044) (looseness-variance . 0.0013973177777777776) (looses q 0.0727 -0.0077 0.0849 0.0131 0.0268 0.1045 0.057 0.0148 0.0047 0.8334)) (fh-improved . 83) (bu-improved . 0) (bh-improved . 1)) c (h - (equal) (text u . "A little boy of eleven, who had been thoughtfully assisting in the packing, joined the group of men, and as they rubbed their chins he spoke up, blushing at the sound of his own voice: “Aunt have got a great fuel-house, and it could be put there, perhaps, till you’ve found a place to settle in, sir.”") (measure . 180) (bh h - (equal) (time . 11) (line-count . 8) (looseness-spread . 0.1286) (bps q 9 17 25 32 40 47 56) (piece-count . 65) (avg-piece-length . 18.452015384615382) (avg-looseness . 0.0957) (looseness-sd . 0.04913028909056458) (looseness-variance . 0.002413785306122449) (looses q 0.0918 0.0795 0.0732 0.0449 0.1664 0.1715 0.0429 0.0824)) (fu h - (equal) (time . 8) (line-count . 8) (looseness-spread . 0.1865) (bps q 8 13 21 27 35 43 50) (piece-count . 58) (avg-piece-length . 20.678982758620695) (avg-looseness . 0.0983) (looseness-sd . 0.05931450935823513) (looseness-variance . 0.003518211020408163) (looses q 0.0918 0.0795 0.0732 0.2148 0.0283 0.0498 0.151 0.0824)) (bu h - (equal) (time . 24) (line-count . 8) (looseness-spread . 0.1704) (bps q 8 13 20 27 35 42 50) (piece-count . 58) (avg-piece-length . 20.678982758620695) (avg-looseness . 0.1003) (looseness-sd . 0.05837887163230568) (looseness-variance . 0.0034080926530612246) (looses q 0.0918 0.0795 0.1987 0.0893 0.0283 0.1715 0.0429 0.0824)) (fh h - (equal) (time . 8) (line-count . 8) (looseness-spread . 0.1215) (bps q 9 17 25 32 40 48 56) (piece-count . 65) (avg-piece-length . 18.452015384615382) (avg-looseness . 0.0938) (looseness-sd . 0.04391982955990868) (looseness-variance . 0.0019289514285714283) (looses q 0.0918 0.0795 0.0732 0.0449 0.1664 0.0498 0.151 0.0824)) (fh-improved . 30) (bu-improved . 2) (bh-improved . 1)) c (h - (equal) (text u . "It was decided that a deputation should wait on the boy’s aunt—an old maiden resident—and ask her if she would house the piano till Mr. Phillotson should send for it. The smith and the bailiff started to see about the practicability of the suggested shelter, and the boy and the schoolmaster were left standing alone.") (measure . 180) (bh h - (equal) (time . 13) (line-count . 9) (looseness-spread . 0.1318) (bps q 10 18 27 34 42 50 60 69) (piece-count . 72) (avg-piece-length . 17.800402777777776) (avg-looseness . 0.062) (looseness-sd . 0.045817675355696516) (looseness-variance . 0.002099259375) (looses q -0.001 0.0131 0.1171 0.1308 0.0546 0.0841 0.0785 0.019 0.6274)) (fu h - (equal) (time . 9) (line-count . 9) (looseness-spread . 0.2505) (bps q 7 15 22 28 36 42 47 54) (piece-count . 57) (avg-piece-length . 22.484719298245615) (avg-looseness . 0.0784) (looseness-sd . 0.07905380979908558) (looseness-variance . 0.00624950484375) (looses q -0.001 0.0131 0.1171 0.1308 0.0546 0.2495 0.0529 0.0099 0.5285)) (bu h - (equal) (time . 11) (line-count . 9) (looseness-spread . 0.1541) (bps q 7 15 22 28 35 42 47 54) (piece-count . 57) (avg-piece-length . 22.484719298245615) (avg-looseness . 0.0784) (looseness-sd . 0.06225475759931927) (looseness-variance . 0.00387565484375) (looses q -0.001 0.0131 0.1171 0.1308 0.151 0.1531 0.0529 0.0099 0.5285)) (fh h - (equal) (time . 23) (line-count . 9) (looseness-spread . 0.1318) (bps q 10 18 27 34 42 51 61 69) (piece-count . 72) (avg-piece-length . 17.800402777777776) (avg-looseness . 0.062) (looseness-sd . 0.04842682463005395) (looseness-variance . 0.00234515734375) (looses q -0.001 0.0131 0.1171 0.1308 0.0546 0.0284 0.0378 0.1155 0.6274)) (fh-improved . 61) (bu-improved . 1) (bh-improved . 2)) c (h - (equal) (text u . "Tears rose into the boy’s eyes, for he was not among the regular day scholars, who came unromantically close to the schoolmaster’s life, but one who had attended the night school only during the present teacher’s term of office. The regular scholars, if the truth must be told, stood at the present moment afar off, like certain historic disciples, indisposed to any enthusiastic volunteering of aid.") (measure . 180) (bh h - (equal) (time . 16) (line-count . 11) (looseness-spread . 0.0645) (bps q 8 17 26 34 41 48 58 65 75 85) (piece-count . 88) (avg-piece-length . 18.639670454545453) (avg-looseness . 0.0501) (looseness-sd . 0.02488954800714549) (looseness-variance . 0.0006194896) (looses q 0.0678 0.0722 0.0286 0.0774 0.0153 0.0129 0.0251 0.0642 0.0632 0.0745 0.6621)) (fu h - (equal) (time . 11) (line-count . 11) (looseness-spread . 0.3116) (bps q 8 14 18 25 32 38 45 52 58 62) (piece-count . 65) (avg-piece-length . 25.235246153846152) (avg-looseness . 0.0992) (looseness-sd . 0.09683301296562036) (looseness-variance . 0.0093766324) (looses q 0.0678 0.2243 0.103 -0.0081 -0.0002 0.0808 -0.0029 0.1501 0.0741 0.3035 0.1992)) (bu h - (equal) (time . 14) (line-count . 11) (looseness-spread . 0.1564) (bps q 7 14 18 24 31 37 43 51 57 62) (piece-count . 65) (avg-piece-length . 25.235246153846152) (avg-looseness . 0.0993) (looseness-sd . 0.048435177299149014) (looseness-variance . 0.0023459664) (looses q 0.1438 0.1483 0.103 0.0994 0.0166 0.0216 0.173 0.114 0.0762 0.0967 0.1992)) (fh h - (equal) (time . 29) (line-count . 11) (looseness-spread . 0.0645) (bps q 8 17 26 34 41 48 58 65 75 85) (piece-count . 88) (avg-piece-length . 18.639670454545453) (avg-looseness . 0.0501) (looseness-sd . 0.02488954800714549) (looseness-variance . 0.0006194896) (looses q 0.0678 0.0722 0.0286 0.0774 0.0153 0.0129 0.0251 0.0642 0.0632 0.0745 0.6621)) (fh-improved . 105) (bu-improved . 8) (bh-improved . 0)) c (h - (equal) (text u . "The boy awkwardly opened the book he held in his hand, which Mr. Phillotson had bestowed on him as a parting gift, and admitted that he was sorry.") (measure . 180) (bh h - (equal) (time . 6) (line-count . 4) (looseness-spread . 0.0638) (bps q 8 16 25) (piece-count . 32) (avg-piece-length . 19.244890625000004) (avg-looseness . 0.0224) (looseness-sd . 0.02623140611302922) (looseness-variance . 0.0006880866666666667) (looses q -0.0117 0.0268 0.0521 0.2154)) (fu h - (equal) (time . 4) (line-count . 4) (looseness-spread . 0.0638) (bps q 7 14 22) (piece-count . 28) (avg-piece-length . 21.99416071428572) (avg-looseness . 0.0224) (looseness-sd . 0.02623140611302922) (looseness-variance . 0.0006880866666666667) (looses q -0.0117 0.0268 0.0521 0.2154)) (bu h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.0638) (bps q 7 14 22) (piece-count . 28) (avg-piece-length . 21.99416071428572) (avg-looseness . 0.0224) (looseness-sd . 0.02623140611302922) (looseness-variance . 0.0006880866666666667) (looses q -0.0117 0.0268 0.0521 0.2154)) (fh h - (equal) (time . 4) (line-count . 4) (looseness-spread . 0.0638) (bps q 8 16 25) (piece-count . 32) (avg-piece-length . 19.244890625000004) (avg-looseness . 0.0224) (looseness-sd . 0.02623140611302922) (looseness-variance . 0.0006880866666666667) (looses q -0.0117 0.0268 0.0521 0.2154)) (fh-improved . 6) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Ah—that would be a long story. You wouldn’t understand my reasons, Jude. You will, perhaps, when you are older.”") (measure . 180) (bh h - (equal) (time . 4) (line-count . 4) (looseness-spread . 0.1618) (bps q 7 14 22) (piece-count . 23) (avg-piece-length . 21.266999999999996) (avg-looseness . 0.0947) (looseness-sd . 0.07487689155466384) (looseness-variance . 0.00560654888888889) (looses q 0.2005 0.0448 0.0387 0.8536)) (fu h - (equal) (time . 3) (line-count . 4) (looseness-spread . 0.1721) (bps q 8 13 19) (piece-count . 20) (avg-piece-length . 24.457049999999995) (avg-looseness . 0.0901) (looseness-sd . 0.07159070392787663) (looseness-variance . 0.0051252288888888895) (looses q 0.0707 0.0138 0.1859 0.8536)) (bu h - (equal) (time . 17) (line-count . 4) (looseness-spread . 0.1618) (bps q 7 12 19) (piece-count . 20) (avg-piece-length . 24.457049999999995) (avg-looseness . 0.0947) (looseness-sd . 0.07487689155466384) (looseness-variance . 0.00560654888888889) (looses q 0.2005 0.0448 0.0387 0.8536)) (fh h - (equal) (time . 19) (line-count . 4) (looseness-spread . 0.1721) (bps q 8 15 22) (piece-count . 23) (avg-piece-length . 21.266999999999996) (avg-looseness . 0.0901) (looseness-sd . 0.07159070392787663) (looseness-variance . 0.0051252288888888895) (looses q 0.0707 0.0138 0.1859 0.8536)) (fh-improved . 5) (bu-improved . 2) (bh-improved . 2)) c (h - (equal) (text u . "“Well—don’t speak of this everywhere. You know what a university is, and a university degree? It is the necessary hallmark of a man who wants to do anything in teaching. My scheme, or dream, is to be a university graduate, and then to be ordained. By going to live at Christminster, or near it, I shall be at headquarters, so to speak, and if my scheme is practicable at all, I consider that being on the spot will afford me a better chance of carrying it out than I should have elsewhere.”") (measure . 180) (bh h - (equal) (time . 21) (line-count . 13) (looseness-spread . 0.1893) (bps q 6 15 25 35 44 55 63 73 83 94 102 113) (piece-count . 119) (avg-piece-length . 16.541445378151263) (avg-looseness . 0.0616) (looseness-sd . 0.04491648654880399) (looseness-variance . 0.0020174907638888895) (looses q 0.1841 0.05 0.0695 0.0196 -0.0052 0.0793 0.0799 0.0326 0.0466 0.0661 0.0355 0.0807 0.2461)) (fu h - (equal) (time . 16) (line-count . 14) (looseness-spread . 0.3531) (bps q 5 10 17 25 32 40 47 54 62 69 78 85 92) (piece-count . 93) (avg-piece-length . 21.165935483870978) (avg-looseness . 0.0997) (looseness-sd . 0.10129553516215303) (looseness-variance . 0.010260785443786983) (looses q 0.341 0.2375 -0.0121 0.0065 0.0598 0.0232 0.0478 0.0488 0.1443 0.032 0.0269 0.1842 0.1567 0.7278)) (bu h - (equal) (time . 18) (line-count . 14) (looseness-spread . 0.3531) (bps q 5 10 17 25 32 40 47 54 62 69 77 84 92) (piece-count . 93) (avg-piece-length . 21.165935483870978) (avg-looseness . 0.0997) (looseness-sd . 0.09648837805970062) (looseness-variance . 0.009310007100591716) (looses q 0.341 0.2375 -0.0121 0.0065 0.0598 0.0232 0.0478 0.0488 0.1443 0.032 0.1508 0.1253 0.0918 0.7278)) (fh h - (equal) (time . 31) (line-count . 13) (looseness-spread . 0.1905) (bps q 6 15 26 36 44 55 63 73 83 94 102 113) (piece-count . 119) (avg-piece-length . 16.541445378151263) (avg-looseness . 0.0615) (looseness-sd . 0.045412855344665964) (looseness-variance . 0.002062327430555556) (looses q 0.1841 0.05 0.0162 -0.0064 0.0735 0.0793 0.0799 0.0326 0.0466 0.0661 0.0355 0.0807 0.2461)) (fh-improved . 186) (bu-improved . 2) (bh-improved . 2)) c (h - (equal) (text u . "The smith and his companion returned. Old Miss Fawley’s fuel-house was dry, and eminently practicable; and she seemed willing to give the instrument standing-room there. It was accordingly left in the school till the evening, when more hands would be available for removing it; and the schoolmaster gave a final glance round.") (measure . 180) (bh h - (equal) (time . 13) (line-count . 9) (looseness-spread . 0.2244) (bps q 7 13 21 30 38 46 52 61) (piece-count . 69) (avg-piece-length . 19.830333333333336) (avg-looseness . 0.0954) (looseness-sd . 0.065516677266174) (looseness-variance . 0.004292435000000001) (looses q 0.2378 0.1551 0.0808 0.0633 0.0134 0.0733 0.0507 0.0888 0.0182)) (fu h - (equal) (time . 8) (line-count . 10) (looseness-spread . 0.2199) (bps q 5 10 15 21 26 33 39 45 52) (piece-count . 54) (avg-piece-length . 25.338759259259252) (avg-looseness . 0.1275) (looseness-sd . 0.07272030809805843) (looseness-variance . 0.005288243209876543) (looses q 0.2378 0.1551 0.2462 0.0339 0.1147 0.1171 0.125 0.0263 0.0915 0.666)) (bu h - (equal) (time . 11) (line-count . 10) (looseness-spread . 0.2199) (bps q 5 10 15 20 26 33 39 45 52) (piece-count . 54) (avg-piece-length . 25.338759259259252) (avg-looseness . 0.1275) (looseness-sd . 0.07113382449759272) (looseness-variance . 0.005060020987654321) (looses q 0.2378 0.1551 0.2462 0.0989 0.0497 0.1171 0.125 0.0263 0.0915 0.666)) (fh h - (equal) (time . 24) (line-count . 9) (looseness-spread . 0.2383) (bps q 7 13 22 31 39 47 53 61) (piece-count . 69) (avg-piece-length . 19.830333333333336) (avg-looseness . 0.0954) (looseness-sd . 0.07767529268531918) (looseness-variance . 0.0060334510937499995) (looses q 0.2378 0.1551 0.0251 0.0226 -0.0005 0.0872 0.0737 0.1621 0.0182)) (fh-improved . 79) (bu-improved . 1) (bh-improved . 5)) c (h - (equal) (text u . "The boy Jude assisted in loading some small articles, and at nine o’clock Mr. Phillotson mounted beside his box of books and other impedimenta, and bade his friends good-bye.") (measure . 180) (bh h - (equal) (time . 7) (line-count . 5) (looseness-spread . 0.0869) (bps q 8 16 23 30) (piece-count . 34) (avg-piece-length . 21.65077941176471) (avg-looseness . 0.0668) (looseness-sd . 0.0314573123454627) (looseness-variance . 0.0009895625) (looses q 0.0298 0.0574 0.0635 0.1167 0.3494)) (fu h - (equal) (time . 4) (line-count . 5) (looseness-spread . 0.0869) (bps q 7 14 20 25) (piece-count . 29) (avg-piece-length . 25.383672413793107) (avg-looseness . 0.0668) (looseness-sd . 0.0314573123454627) (looseness-variance . 0.0009895625) (looses q 0.0298 0.0574 0.0635 0.1167 0.3494)) (bu h - (equal) (time . 6) (line-count . 5) (looseness-spread . 0.0869) (bps q 7 14 20 25) (piece-count . 29) (avg-piece-length . 25.383672413793107) (avg-looseness . 0.0668) (looseness-sd . 0.0314573123454627) (looseness-variance . 0.0009895625) (looses q 0.0298 0.0574 0.0635 0.1167 0.3494)) (fh h - (equal) (time . 5) (line-count . 5) (looseness-spread . 0.0869) (bps q 8 16 23 30) (piece-count . 34) (avg-piece-length . 21.65077941176471) (avg-looseness . 0.0668) (looseness-sd . 0.0314573123454627) (looseness-variance . 0.0009895625) (looses q 0.0298 0.0574 0.0635 0.1167 0.3494)) (fh-improved . 11) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. “Be a good boy, remember; and be kind to animals and birds, and read all you can. And if ever you come to Christminster remember you hunt me out for old acquaintance’ sake.”") (measure . 180) (bh h - (equal) (time . 10) (line-count . 7) (looseness-spread . 0.1205) (bps q 8 17 25 34 42 51) (piece-count . 54) (avg-piece-length . 18.791) (avg-looseness . 0.0719) (looseness-sd . 0.04481349003245439) (looseness-variance . 0.002008248888888889) (looses q 0.1329 0.0726 0.0865 0.0165 0.1107 0.0124 0.5019)) (fu h - (equal) (time . 7) (line-count . 7) (looseness-spread . 0.1164) (bps q 7 15 22 30 37 44) (piece-count . 46) (avg-piece-length . 22.059) (avg-looseness . 0.075) (looseness-sd . 0.04527168909300086) (looseness-variance . 0.0020495258333333333) (looses q 0.1329 0.0726 0.0865 0.0165 0.0189 0.1223 0.5019)) (bu h - (equal) (time . 8) (line-count . 7) (looseness-spread . 0.1164) (bps q 7 15 22 30 37 44) (piece-count . 46) (avg-piece-length . 22.059) (avg-looseness . 0.075) (looseness-sd . 0.04527168909300086) (looseness-variance . 0.0020495258333333333) (looses q 0.1329 0.0726 0.0865 0.0165 0.0189 0.1223 0.5019)) (fh h - (equal) (time . 21) (line-count . 7) (looseness-spread . 0.1164) (bps q 8 17 25 34 43 51) (piece-count . 54) (avg-piece-length . 18.791) (avg-looseness . 0.075) (looseness-sd . 0.04527168909300086) (looseness-variance . 0.0020495258333333333) (looses q 0.1329 0.0726 0.0865 0.0165 0.0189 0.1223 0.5019)) (fh-improved . 23) (bu-improved . 0) (bh-improved . 1)) c (h - (equal) (text u . "The cart creaked across the green, and disappeared round the corner by the rectory-house. The boy returned to the draw-well at the edge of the greensward, where he had left his buckets when he went to help his patron and teacher in the loading. There was a quiver in his lip now and after opening the well-cover to begin lowering the bucket he paused and leant with his forehead and arms against the framework, his face wearing the fixity of a thoughtful child’s who has felt the pricks of life somewhat before his time. The well into which he was looking was as ancient as the village itself, and from his present position appeared as a long circular perspective ending in a shining disk of quivering water at a distance of a hundred feet down. There was a lining of green moss near the top, and nearer still the hart’s-tongue fern.") (measure . 180) (bh h - (equal) (time . 51) (line-count . 22) (looseness-spread . 0.1477) (bps q 6 15 22 31 38 46 54 63 73 80 87 96 104 112 121 130 138 149 160 169 178) (piece-count . 184) (avg-piece-length . 18.36781249999998) (avg-looseness . 0.0583) (looseness-sd . 0.045631963575691575) (looseness-variance . 0.0020822760997732427) (looses q 0.14 0.0649 0.0698 0.1379 0.0086 0.0976 0.044 0.0574 -0.0025 0.0971 0.0729 0.1302 0.0851 0.017 -0.0077 0.0036 0.0198 0.0776 -0.0027 0.0706 0.0429 0.1511)) (fu h - (equal) (time . 22) (line-count . 23) (looseness-spread . 0.3014) (bps q 7 13 20 27 33 40 46 55 62 68 74 80 87 94 102 109 115 121 128 135 142 150) (piece-count . 155) (avg-piece-length . 21.804370967741917) (avg-looseness . 0.0964) (looseness-sd . 0.07431002123669692) (looseness-variance . 0.005521979256198347) (looses q 0.0183 0.0765 0.0047 0.2994 0.1473 0.1587 0.158 0.0514 0.07 0.1219 0.173 -0.002 0.0742 0.1188 0.0063 0.1611 0.1407 0.1038 0.0286 0.1669 0.0183 0.0243 0.3286)) (bu h - (equal) (time . 45) (line-count . 23) (looseness-spread . 0.1614) (bps q 6 12 18 27 33 40 46 54 61 67 74 80 87 94 101 109 115 121 127 135 142 150) (piece-count . 155) (avg-piece-length . 21.804370967741917) (avg-looseness . 0.097) (looseness-sd . 0.04551576445639013) (looseness-variance . 0.0020716848140495867) (looses q 0.14 0.0649 0.0698 0.1379 0.1473 0.1587 0.158 0.1594 0.1143 0.0776 0.0649 -0.002 0.0742 0.1188 0.0822 0.0851 0.1407 0.1038 0.0936 0.1019 0.0183 0.0243 0.3286)) (fh h - (equal) (time . 24) (line-count . 22) (looseness-spread . 0.3098) (bps q 7 16 24 31 38 47 55 64 73 80 87 97 104 112 121 130 138 150 161 170 178) (piece-count . 184) (avg-piece-length . 18.36781249999998) (avg-looseness . 0.0585) (looseness-sd . 0.06889281530029093) (looseness-variance . 0.00474622) (looses q 0.0183 0.0765 0.0047 0.2994 0.0086 -0.0104 0.1105 0.024 0.0905 0.0971 0.0729 0.0886 0.1267 0.017 -0.0077 0.0036 0.0198 0.0027 0.0254 0.0516 0.1087 0.1511)) (fh-improved . 325) (bu-improved . 9) (bh-improved . 11)) c (h - (equal) (text u . "He said to himself, in the melodramatic tones of a whimsical boy, that the schoolmaster had drawn at that well scores of times on a morning like this, and would never draw there any more. “I’ve seen him look down into it, when he was tired with his drawing, just as I do now, and when he rested a bit before carrying the buckets home! But he was too clever to bide here any longer—a small sleepy place like this!”") (measure . 180) (bh h - (equal) (time . 19) (line-count . 11) (looseness-spread . 0.1397) (bps q 9 19 27 36 43 51 61 70 80 88) (piece-count . 93) (avg-piece-length . 18.083564516129027) (avg-looseness . 0.0439) (looseness-sd . 0.040167330008353805) (looseness-variance . 0.0016134144) (looses q 0.1336 -0.0016 0.0854 0.0526 0.037 0.034 0.031 -0.0061 0.0112 0.0623 0.3049)) (fu h - (equal) (time . 11) (line-count . 11) (looseness-spread . 0.1608) (bps q 7 14 20 28 35 43 52 61 68 76) (piece-count . 81) (avg-piece-length . 20.762611111111113) (avg-looseness . 0.0457) (looseness-sd . 0.04541207328453525) (looseness-variance . 0.0020622564) (looses q -0.0047 0.1547 0.0854 0.0526 0.037 0.034 0.031 -0.0061 0.0112 0.0623 0.3049)) (bu h - (equal) (time . 16) (line-count . 11) (looseness-spread . 0.1608) (bps q 7 14 20 28 35 43 52 61 68 76) (piece-count . 81) (avg-piece-length . 20.762611111111113) (avg-looseness . 0.0457) (looseness-sd . 0.04541207328453525) (looseness-variance . 0.0020622564) (looses q -0.0047 0.1547 0.0854 0.0526 0.037 0.034 0.031 -0.0061 0.0112 0.0623 0.3049)) (fh h - (equal) (time . 28) (line-count . 11) (looseness-spread . 0.1608) (bps q 10 19 27 36 43 51 61 70 80 88) (piece-count . 93) (avg-piece-length . 18.083564516129027) (avg-looseness . 0.0457) (looseness-sd . 0.04541207328453525) (looseness-variance . 0.0020622564) (looses q -0.0047 0.1547 0.0854 0.0526 0.037 0.034 0.031 -0.0061 0.0112 0.0623 0.3049)) (fh-improved . 81) (bu-improved . 0) (bh-improved . 1)) c (h - (equal) (text u . "A tear rolled from his eye into the depths of the well. The morning was a little foggy, and the boy’s breathing unfurled itself as a thicker fog upon the still and heavy air. His thoughts were interrupted by a sudden outcry:") (measure . 180) (bh h - (equal) (time . 8) (line-count . 6) (looseness-spread . 0.1401) (bps q 8 16 25 33 40) (piece-count . 47) (avg-piece-length . 19.089265957446806) (avg-looseness . 0.0677) (looseness-sd . 0.04471326425122638) (looseness-variance . 0.0019992759999999995) (looses q 0.1445 0.0677 0.0612 0.0044 0.0607 0.2102)) (fu h - (equal) (time . 6) (line-count . 6) (looseness-spread . 0.1401) (bps q 8 16 22 30 37) (piece-count . 42) (avg-piece-length . 21.361797619047618) (avg-looseness . 0.0677) (looseness-sd . 0.050812770048482885) (looseness-variance . 0.0025819375999999996) (looses q 0.1445 0.0261 0.1027 0.0044 0.0607 0.2102)) (bu h - (equal) (time . 8) (line-count . 6) (looseness-spread . 0.1401) (bps q 8 15 22 30 37) (piece-count . 42) (avg-piece-length . 21.361797619047618) (avg-looseness . 0.0677) (looseness-sd . 0.04471326425122638) (looseness-variance . 0.0019992759999999995) (looses q 0.1445 0.0677 0.0612 0.0044 0.0607 0.2102)) (fh h - (equal) (time . 6) (line-count . 6) (looseness-spread . 0.1401) (bps q 8 17 25 33 40) (piece-count . 47) (avg-piece-length . 19.089265957446806) (avg-looseness . 0.0677) (looseness-sd . 0.050812770048482885) (looseness-variance . 0.0025819375999999996) (looses q 0.1445 0.0261 0.1027 0.0044 0.0607 0.2102)) (fh-improved . 10) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "It came from an old woman who had emerged from her door towards the garden gate of a green-thatched cottage not far off. The boy quickly waved a signal of assent, drew the water with what was a great effort for one of his stature, landed and emptied the big bucket into his own pair of smaller ones, and pausing a moment for breath, started with them across the patch of clammy greensward whereon the well stood—nearly in the centre of the little village, or rather hamlet of Marygreen.") (measure . 180) (bh h - (equal) (time . 35) (line-count . 13) (looseness-spread . 0.1179) (bps q 8 14 22 30 39 48 55 62 70 77 82 92) (piece-count . 101) (avg-piece-length . 19.84581188118812) (avg-looseness . 0.0616) (looseness-sd . 0.03883240699896587) (looseness-variance . 0.0015079558333333332) (looses q 0.072 0.0957 0.1027 0.0127 0.0346 0.079 0.1006 0.1258 0.0097 0.0596 0.0395 0.0079 0.0248)) (fu h - (equal) (time . 13) (line-count . 13) (looseness-spread . 0.1251) (bps q 8 14 21 29 36 45 51 58 65 72 77 85) (piece-count . 91) (avg-piece-length . 22.026670329670328) (avg-looseness . 0.0632) (looseness-sd . 0.03878903320814044) (looseness-variance . 0.0015045890972222222) (looses q 0.072 0.0957 0.0007 0.0912 0.0762 0.079 0.1006 0.1258 0.0097 0.0596 0.0395 0.0079 0.0248)) (bu h - (equal) (time . 17) (line-count . 13) (looseness-spread . 0.1251) (bps q 8 14 21 29 36 45 51 58 65 72 77 85) (piece-count . 91) (avg-piece-length . 22.026670329670328) (avg-looseness . 0.0632) (looseness-sd . 0.03878903320814044) (looseness-variance . 0.0015045890972222222) (looses q 0.072 0.0957 0.0007 0.0912 0.0762 0.079 0.1006 0.1258 0.0097 0.0596 0.0395 0.0079 0.0248)) (fh h - (equal) (time . 13) (line-count . 13) (looseness-spread . 0.1251) (bps q 8 14 23 31 39 48 55 62 70 77 82 92) (piece-count . 101) (avg-piece-length . 19.84581188118812) (avg-looseness . 0.0632) (looseness-sd . 0.03878903320814044) (looseness-variance . 0.0015045890972222222) (looses q 0.072 0.0957 0.0007 0.0912 0.0762 0.079 0.1006 0.1258 0.0097 0.0596 0.0395 0.0079 0.0248)) (fh-improved . 40) (bu-improved . 0) (bh-improved . 2)) c (h - (equal) (text u . "It was as old-fashioned as it was small, and it rested in the lap of an undulating upland adjoining the North Wessex downs. Old as it was, however, the well-shaft was probably the only relic of the local history that remained absolutely unchanged. Many of the thatched and dormered dwelling-houses had been pulled down of late years, and many trees felled on the green. Above all, the original church, hump-backed, wood-turreted, and quaintly hipped, had been taken down, and either cracked up into heaps of road-metal in the lane, or utilized as pig-sty walls, garden seats, guard-stones to fences, and rockeries in the flower-beds of the neighbourhood. In place of it a tall new building of modern Gothic design, unfamiliar to English eyes, had been erected on a new piece of ground by a certain obliterator of historic records who had run down from London and back in a day. The site whereon so long had stood the ancient temple to the Christian divinities was not even recorded on the green and level grass-plot that had immemorially been the churchyard, the obliterated graves being commemorated by eighteen-penny cast-iron crosses warranted to last five years.") (measure . 180) (bh h - (equal) (time . 46) (line-count . 32) (looseness-spread . 0.2085) (bps q 9 17 25 33 40 50 54 60 66 73 82 88 94 101 110 118 126 134 145 153 161 173 180 189 196 206 213 221 229 237 244) (piece-count . 248) (avg-piece-length . 19.40513709677419) (avg-looseness . 0.0734) (looseness-sd . 0.050679510233863) (looseness-variance . 0.002568412757544225) (looses q 0.1921 0.2024 0.1129 0.0996 0.1642 0.0615 0.076 0.0791 0.0148 0.1229 0.0927 0.0429 0.0809 0.0041 0.0863 0.0913 0.0652 0.0541 -0.0061 0.0781 0.0384 0.0076 0.0497 0.1158 0.0242 0.0486 0.0997 0.025 0.0775 0.0718 0.0034 0.5901)) (fu h - (equal) (time . 32) (line-count . 33) (looseness-spread . 0.4062) (bps q 9 18 23 30 38 43 48 52 59 66 72 77 83 90 98 104 111 117 126 131 139 146 152 160 167 172 179 186 191 194 198 205) (piece-count . 206) (avg-piece-length . 23.361524271844665) (avg-looseness . 0.0961) (looseness-sd . 0.07946451030766817) (looseness-variance . 0.0063146083984375) (looses q 0.0394 0.0045 0.1003 0.1228 -0.0068 0.221 0.1079 0.1693 0.0809 0.118 0.0727 0.1301 0.0301 0.1116 0.085 0.1576 0.0652 0.0541 -0.0061 0.0781 0.0384 0.0999 0.1132 0.0812 0.1221 0.2078 0.0038 0.1308 -0.0052 0.3994 0.1162 0.0309 0.8641)) (bu h - (equal) (time . 56) (line-count . 33) (looseness-spread . 0.2039) (bps q 8 16 21 28 34 41 45 51 57 64 71 76 82 89 97 104 111 117 125 130 136 144 149 155 163 170 176 183 189 193 197 203) (piece-count . 206) (avg-piece-length . 23.361524271844665) (avg-looseness . 0.1026) (looseness-sd . 0.05147578769431314) (looseness-variance . 0.0026497567187499997) (looses q 0.1921 0.2024 0.1129 0.0996 0.0646 0.1791 0.076 0.0791 0.0148 0.1229 0.0927 0.0429 0.0809 0.0041 0.0863 0.0913 0.0652 0.0541 0.208 0.0708 0.1415 0.1352 0.1343 0.1868 0.133 0.0746 0.0715 0.0535 0.0743 0.1342 0.1373 0.0684 0.6551)) (fh h - (equal) (time . 46) (line-count . 32) (looseness-spread . 0.2278) (bps q 10 21 28 36 46 52 57 61 68 75 83 89 95 102 111 118 126 134 145 153 161 173 180 189 196 206 213 221 229 237 244) (piece-count . 248) (avg-piece-length . 19.40513709677419) (avg-looseness . 0.0741) (looseness-sd . 0.053629856602929495) (looseness-variance . 0.0028761615192507803) (looses q 0.0394 0.0045 0.1003 0.1228 -0.0068 0.221 0.1079 0.1693 0.0809 0.118 0.0727 0.1301 0.0301 0.1116 0.085 0.1576 0.0652 0.0541 -0.0061 0.0781 0.0384 0.0076 0.0497 0.1158 0.0242 0.0486 0.0997 0.025 0.0775 0.0718 0.0034 0.5901)) (fh-improved . 580) (bu-improved . 59) (bh-improved . 32)) c (h - (equal) (text u . "Slender as was Jude Fawley’s frame he bore the two brimming house-buckets of water to the cottage without resting. Over the door was a little rectangular piece of blue board, on which was painted in yellow letters, “Drusilla Fawley, Baker.” Within the little lead panes of the window—this being one of the few old houses left—were five bottles of sweets, and three buns on a plate of the willow pattern.") (measure . 180) (bh h - (equal) (time . 18) (line-count . 11) (looseness-spread . 0.1381) (bps q 8 16 25 35 44 52 60 69 77 86) (piece-count . 92) (avg-piece-length . 17.89400000000001) (avg-looseness . 0.0421) (looseness-sd . 0.04138152848796187) (looseness-variance . 0.0017124309000000001) (looses q 0.0904 0.0316 0.1303 0.0554 0.0284 0.0051 0.0584 -0.0078 0.0357 -0.0066 0.4687)) (fu h - (equal) (time . 25) (line-count . 11) (looseness-spread . 0.1505) (bps q 7 13 20 27 34 39 45 53 60 68) (piece-count . 73) (avg-piece-length . 22.551342465753432) (avg-looseness . 0.0627) (looseness-sd . 0.04915864623847976) (looseness-variance . 0.0024165725) (looses q 0.0144 0.0378 0.0258 0.0541 0.1427 0.1154 0.0584 -0.0078 0.1364 0.0493 0.3302)) (bu h - (equal) (time . 14) (line-count . 11) (looseness-spread . 0.1283) (bps q 7 13 20 27 34 39 45 52 60 68) (piece-count . 73) (avg-piece-length . 22.551342465753432) (avg-looseness . 0.0627) (looseness-sd . 0.037242079694882774) (looseness-variance . 0.0013869725) (looses q 0.0144 0.0378 0.0258 0.0541 0.1427 0.1154 0.0584 0.0572 0.0714 0.0493 0.3302)) (fh h - (equal) (time . 12) (line-count . 11) (looseness-spread . 0.1505) (bps q 9 17 27 38 45 52 60 69 77 86) (piece-count . 92) (avg-piece-length . 17.89400000000001) (avg-looseness . 0.047) (looseness-sd . 0.04649510619409315) (looseness-variance . 0.0021617948999999997) (looses q 0.0144 0.0378 0.0258 0.0541 0.1427 0.1154 0.0584 -0.0078 0.0357 -0.0066 0.4687)) (fh-improved . 114) (bu-improved . 1) (bh-improved . 8)) c (h - (equal) (text u . "While emptying the buckets at the back of the house he could hear an animated conversation in progress within-doors between his great-aunt, the Drusilla of the sign-board, and some other villagers. Having seen the school-master depart, they were summing up particulars of the event, and indulging in predictions of his future.") (measure . 180) (bh h - (equal) (time . 13) (line-count . 9) (looseness-spread . 0.1206) (bps q 10 19 27 33 41 49 57 65) (piece-count . 71) (avg-piece-length . 19.119154929577466) (avg-looseness . 0.0501) (looseness-sd . 0.038351751915655694) (looseness-variance . 0.0014708568750000002) (looses q -0.0033 0.0039 0.0379 0.0913 0.0632 0.0353 0.0554 0.1173 0.3842)) (fu h - (equal) (time . 23) (line-count . 9) (looseness-spread . 0.2126) (bps q 7 15 20 27 33 38 44 50) (piece-count . 55) (avg-piece-length . 24.681090909090905) (avg-looseness . 0.0628) (looseness-sd . 0.07317567795210372) (looseness-variance . 0.00535467984375) (looses q -0.0033 0.0039 0.0379 0.0263 0.2093 0.162 0.0346 0.032 0.3206)) (bu h - (equal) (time . 10) (line-count . 9) (looseness-spread . 0.1653) (bps q 7 15 20 26 33 38 44 50) (piece-count . 55) (avg-piece-length . 24.681090909090905) (avg-looseness . 0.0628) (looseness-sd . 0.05862746663254349) (looseness-variance . 0.0034371798437500003) (looses q -0.0033 0.0039 0.0379 0.0913 0.1443 0.162 0.0346 0.032 0.3206)) (fh h - (equal) (time . 10) (line-count . 9) (looseness-spread . 0.1315) (bps q 10 19 27 34 41 49 58 66) (piece-count . 71) (avg-piece-length . 19.119154929577466) (avg-looseness . 0.0374) (looseness-sd . 0.03791117702934057) (looseness-variance . 0.0014372573437500002) (looses q -0.0033 0.0039 0.0379 0.0263 0.1282 0.0353 0.0223 0.0483 0.4683)) (fh-improved . 70) (bu-improved . 1) (bh-improved . 3)) c (h - (equal) (text u . "“And who’s he?” asked one, comparatively a stranger, when the boy entered.") (measure . 180) (bh h - (equal) (time . 2) (line-count . 2) (looseness-spread . 0.0) (bps q 8) (piece-count . 15) (avg-piece-length . 22.001033333333336) (avg-looseness . 0.0605) (looseness-sd . 0.0) (looseness-variance . 0.0) (looses q 0.0605 0.0158)) (fu h - (equal) (time . 2) (line-count . 3) (looseness-spread . 0.3064) (bps q 5 11) (piece-count . 12) (avg-piece-length . 27.50129166666667) (avg-looseness . 0.1597) (looseness-sd . 0.1532) (looseness-variance . 0.02347024) (looses q 0.3129 0.0065 0.8032)) (bu h - (equal) (time . 2) (line-count . 3) (looseness-spread . 0.3064) (bps q 5 11) (piece-count . 12) (avg-piece-length . 27.50129166666667) (avg-looseness . 0.1597) (looseness-sd . 0.1532) (looseness-variance . 0.02347024) (looses q 0.3129 0.0065 0.8032)) (fh h - (equal) (time . 2) (line-count . 2) (looseness-spread . 0.0) (bps q 8) (piece-count . 15) (avg-piece-length . 22.001033333333336) (avg-looseness . 0.0605) (looseness-sd . 0.0) (looseness-variance . 0.0) (looses q 0.0605 0.0158)) (fh-improved . 3) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since you was last this way.” The old inhabitant who answered was a tall, gaunt woman, who spoke tragically on the most trivial subject, and gave a phrase of her conversation to each auditor in turn. “He come from Mellstock, down in South Wessex, about a year ago—worse luck for ‘n, Belinda” (turning to the right) “where his father was living, and was took wi’ the shakings for death, and died in two days, as you know, Caroline” (turning to the left). “It would ha’ been a blessing if Goddy-mighty had took thee too, wi’ thy mother and father, poor useless boy! But I’ve got him here to stay with me till I can see what’s to be done with un, though I am obliged to let him earn any penny he can. Just now he’s a-scaring of birds for Farmer Troutham. It keeps him out of mischty. Why do ye turn away, Jude?” she continued, as the boy, feeling the impact of their glances like slaps upon his face, moved aside.") (measure . 180) (bh h - (equal) (time . 59) (line-count . 26) (looseness-spread . 0.1502) (bps q 7 13 21 29 37 46 57 64 72 79 87 96 104 113 122 129 136 145 155 164 173 180 189 197 205) (piece-count . 212) (avg-piece-length . 18.828971698113204) (avg-looseness . 0.0638) (looseness-sd . 0.03811492432105828) (looseness-variance . 0.001452747456) (looses q 0.1316 0.0725 0.0492 0.0848 0.0909 0.0348 0.0528 0.0102 0.0726 0.0824 0.0419 0.0435 0.1164 0.0692 0.0484 0.1531 0.0723 0.0531 0.0209 0.0029 0.0455 0.0131 0.0955 0.1155 0.0216 0.069)) (fu h - (equal) (time . 41) (line-count . 27) (looseness-spread . 0.2068) (bps q 7 13 20 26 32 39 45 51 56 64 70 78 86 92 100 107 114 122 132 140 148 156 163 170 176 183) (piece-count . 187) (avg-piece-length . 21.34621390374331) (avg-looseness . 0.0878) (looseness-sd . 0.059343497622394756) (looseness-variance . 0.003521650710059172) (looses q 0.1316 0.0725 0.2083 0.1133 0.0314 0.1221 0.1296 0.1904 0.134 0.0919 0.0166 0.0531 0.0176 0.0352 0.1783 0.0015 0.084 0.0686 0.0371 0.0605 0.1091 0.0302 0.0154 0.1544 0.1633 0.033 0.4579)) (bu h - (equal) (time . 55) (line-count . 27) (looseness-spread . 0.2068) (bps q 7 13 20 26 31 38 45 51 56 64 70 78 86 92 100 107 114 122 131 139 147 155 162 169 176 183) (piece-count . 187) (avg-piece-length . 21.34621390374331) (avg-looseness . 0.089) (looseness-sd . 0.05485087313820691) (looseness-variance . 0.0030086182840236685) (looses q 0.1316 0.0725 0.2083 0.1133 0.1102 0.0849 0.088 0.1904 0.134 0.0919 0.0166 0.0531 0.0176 0.0352 0.1783 0.0015 0.084 0.0686 0.1105 0.0522 0.1714 0.1186 0.0285 0.058 0.0626 0.033 0.4579)) (fh h - (equal) (time . 31) (line-count . 26) (looseness-spread . 0.1507) (bps q 7 13 22 29 37 46 57 64 72 80 88 96 104 113 122 129 136 145 155 164 173 180 189 197 205) (piece-count . 212) (avg-piece-length . 18.828971698113204) (avg-looseness . 0.065) (looseness-sd . 0.04394803221988443) (looseness-variance . 0.001931429536) (looses q 0.1316 0.0725 0.0329 0.1011 0.0909 0.0348 0.0528 0.0102 0.0726 0.0174 0.0273 0.1536 0.1164 0.0692 0.0484 0.1531 0.0723 0.0531 0.0209 0.0029 0.0455 0.0131 0.0955 0.1155 0.0216 0.069)) (fh-improved . 416) (bu-improved . 8) (bh-improved . 3)) c (h - (equal) (text u . "The local washerwoman replied that it was perhaps a very good plan of Miss or Mrs. Fawley’s (as they called her indifferently) to have him with her—”to kip ‘ee company in your loneliness, fetch water, shet the winder-shetters o’ nights, and help in the bit o’ baking.”") (measure . 180) (bh h - (equal) (time . 11) (line-count . 7) (looseness-spread . 0.0738) (bps q 8 17 25 33 43 51) (piece-count . 60) (avg-piece-length . 18.324483333333337) (avg-looseness . 0.0484) (looseness-sd . 0.025368314663944253) (looseness-variance . 0.0006435513888888891) (looses q 0.018 0.0517 0.0918 0.0646 0.0435 0.0209 0.0844)) (fu h - (equal) (time . 8) (line-count . 7) (looseness-spread . 0.0738) (bps q 6 14 21 27 34 41) (piece-count . 49) (avg-piece-length . 22.438142857142854) (avg-looseness . 0.0484) (looseness-sd . 0.025368314663944253) (looseness-variance . 0.0006435513888888891) (looses q 0.018 0.0517 0.0918 0.0646 0.0435 0.0209 0.0844)) (bu h - (equal) (time . 9) (line-count . 7) (looseness-spread . 0.0738) (bps q 6 14 21 27 34 41) (piece-count . 49) (avg-piece-length . 22.438142857142854) (avg-looseness . 0.0484) (looseness-sd . 0.025368314663944253) (looseness-variance . 0.0006435513888888891) (looses q 0.018 0.0517 0.0918 0.0646 0.0435 0.0209 0.0844)) (fh h - (equal) (time . 7) (line-count . 7) (looseness-spread . 0.0738) (bps q 8 17 25 33 43 51) (piece-count . 60) (avg-piece-length . 18.324483333333337) (avg-looseness . 0.0484) (looseness-sd . 0.025368314663944253) (looseness-variance . 0.0006435513888888891) (looses q 0.018 0.0517 0.0918 0.0646 0.0435 0.0209 0.0844)) (fh-improved . 34) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a better one. The boy is crazy for books, that he is. It runs in our family rather. His cousin Sue is just the same—so I’ve heard; but I have not seen the child for years, though she was born in this place, within these four walls, as it happened. My niece and her husband, after they were married, didn’ get a house of their own for some year or more; and then they only had one till—Well, I won’t go into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the Fawleys to take that step any more. She, their only one, was like a child o’ my own, Belinda, till the split come! Ah, that a little maid should know such changes!”") (measure . 180) (bh h - (equal) (time . 52) (line-count . 22) (looseness-spread . 0.1767) (bps q 6 15 24 33 40 49 59 68 76 83 91 99 107 116 124 133 140 148 156 165 174) (piece-count . 177) (avg-piece-length . 18.84115819209039) (avg-looseness . 0.0546) (looseness-sd . 0.05023331866256574) (looseness-variance . 0.002523386303854875) (looses q 0.166 0.0465 0.0494 0.1128 0.1339 0.0048 0.0336 -0.0013 0.0907 0.1016 0.0064 0.0859 0.0474 0.0217 0.0203 0.0163 0.0634 0.1333 0.0043 0.0213 -0.0107 0.4841)) (fu h - (equal) (time . 36) (line-count . 22) (looseness-spread . 0.1767) (bps q 5 12 19 26 31 39 49 57 66 74 81 89 94 103 111 119 126 133 141 150 158) (piece-count . 161) (avg-piece-length . 20.713571428571417) (avg-looseness . 0.0562) (looseness-sd . 0.05878281521907031) (looseness-variance . 0.0034554193650793647) (looses q 0.166 0.0465 0.0494 0.1128 0.1339 0.0048 0.0336 -0.0013 -0.0085 -0.0101 0.0969 -0.0006 0.154 0.0046 0.0622 0.1237 0.0634 0.1333 0.0043 0.0213 -0.0107 0.4841)) (bu h - (equal) (time . 35) (line-count . 22) (looseness-spread . 0.1794) (bps q 5 12 19 26 31 39 49 57 65 73 81 88 94 103 111 119 126 133 141 150 158) (piece-count . 161) (avg-piece-length . 20.713571428571417) (avg-looseness . 0.0562) (looseness-sd . 0.05363047793247144) (looseness-variance . 0.0028762281632653064) (looses q 0.166 0.0465 0.0494 0.1128 0.1339 0.0048 0.0336 -0.0013 0.0907 0.0009 -0.0134 0.0983 0.055 0.0046 0.0622 0.1237 0.0634 0.1333 0.0043 0.0213 -0.0107 0.4841)) (fh h - (equal) (time . 23) (line-count . 22) (looseness-spread . 0.1767) (bps q 6 15 24 33 40 49 59 68 77 85 92 101 108 117 125 133 140 148 156 165 174) (piece-count . 177) (avg-piece-length . 18.84115819209039) (avg-looseness . 0.0562) (looseness-sd . 0.05878281521907031) (looseness-variance . 0.0034554193650793647) (looses q 0.166 0.0465 0.0494 0.1128 0.1339 0.0048 0.0336 -0.0013 -0.0085 -0.0101 0.0969 -0.0006 0.154 0.0046 0.0622 0.1237 0.0634 0.1333 0.0043 0.0213 -0.0107 0.4841)) (fh-improved . 232) (bu-improved . 3) (bh-improved . 9)) c (h - (equal) (text u . "Jude, finding the general attention again centering on himself, went out to the bakehouse, where he ate the cake provided for his breakfast. The end of his spare time had now arrived, and emerging from the garden by getting over the hedge at the back he pursued a path northward, till he came to a wide and lonely depression in the general level of the upland, which was sown as a corn-field. This vast concave was the scene of his labours for Mr Troutham the farmer, and he descended into the midst of it.") (measure . 180) (bh h - (equal) (time . 33) (line-count . 14) (looseness-spread . 0.1361) (bps q 8 18 26 35 42 51 61 70 78 86 95 102 109) (piece-count . 111) (avg-piece-length . 18.720445945945947) (avg-looseness . 0.0501) (looseness-sd . 0.036888931326861045) (looseness-variance . 0.00136079325443787) (looses q 0.1325 0.0116 0.0604 0.0399 0.0955 0.0727 -0.0036 0.0359 0.0868 0.0195 0.0169 0.0436 0.039 0.736)) (fu h - (equal) (time . 14) (line-count . 14) (looseness-spread . 0.1361) (bps q 5 12 19 26 33 39 48 56 62 70 78 85 92) (piece-count . 94) (avg-piece-length . 22.1060585106383) (avg-looseness . 0.0501) (looseness-sd . 0.036888931326861045) (looseness-variance . 0.00136079325443787) (looses q 0.1325 0.0116 0.0604 0.0399 0.0955 0.0727 -0.0036 0.0359 0.0868 0.0195 0.0169 0.0436 0.039 0.736)) (bu h - (equal) (time . 18) (line-count . 14) (looseness-spread . 0.1361) (bps q 5 12 19 26 33 39 48 56 62 70 78 85 92) (piece-count . 94) (avg-piece-length . 22.1060585106383) (avg-looseness . 0.0501) (looseness-sd . 0.036888931326861045) (looseness-variance . 0.00136079325443787) (looses q 0.1325 0.0116 0.0604 0.0399 0.0955 0.0727 -0.0036 0.0359 0.0868 0.0195 0.0169 0.0436 0.039 0.736)) (fh h - (equal) (time . 14) (line-count . 14) (looseness-spread . 0.1361) (bps q 8 18 26 35 42 51 61 70 78 86 95 102 109) (piece-count . 111) (avg-piece-length . 18.720445945945947) (avg-looseness . 0.0501) (looseness-sd . 0.036888931326861045) (looseness-variance . 0.00136079325443787) (looses q 0.1325 0.0116 0.0604 0.0399 0.0955 0.0727 -0.0036 0.0359 0.0868 0.0195 0.0169 0.0436 0.039 0.736)) (fh-improved . 156) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "The brown surface of the field went right up towards the sky all round, where it was lost by degrees in the mist that shut out the actual verge and accentuated the solitude. The only marks on the uniformity of the scene were a rick of last year’s produce standing in the midst of the arable, the rooks that rose at his approach, and the path athwart the fallow by which he had come, trodden now by he hardly knew whom, though once by many of his own dead family.") (measure . 180) (bh h - (equal) (time . 18) (line-count . 13) (looseness-spread . 0.1595) (bps q 8 15 23 30 39 48 56 65 73 81 89 96) (piece-count . 100) (avg-piece-length . 18.930609999999998) (avg-looseness . 0.0814) (looseness-sd . 0.051669996532481666) (looseness-variance . 0.002669788541666667) (looses q 0.0938 0.1418 0.1316 0.1326 0.0092 0.064 0.163 0.0208 0.0035 0.0937 0.0725 0.0506 0.4958)) (fu h - (equal) (time . 12) (line-count . 13) (looseness-spread . 0.1595) (bps q 7 14 23 30 35 42 49 57 65 72 79 86) (piece-count . 90) (avg-piece-length . 21.034011111111102) (avg-looseness . 0.0814) (looseness-sd . 0.05282458129402342) (looseness-variance . 0.002790436388888889) (looses q 0.0938 0.1418 0.0056 0.1505 0.1172 0.064 0.163 0.0208 0.0035 0.0937 0.0725 0.0506 0.4958)) (bu h - (equal) (time . 17) (line-count . 13) (looseness-spread . 0.1595) (bps q 7 14 22 29 35 42 49 57 65 72 79 86) (piece-count . 90) (avg-piece-length . 21.034011111111102) (avg-looseness . 0.0814) (looseness-sd . 0.051669996532481666) (looseness-variance . 0.002669788541666667) (looses q 0.0938 0.1418 0.1316 0.1326 0.0092 0.064 0.163 0.0208 0.0035 0.0937 0.0725 0.0506 0.4958)) (fh h - (equal) (time . 29) (line-count . 13) (looseness-spread . 0.1595) (bps q 8 15 24 31 39 48 56 65 73 81 89 96) (piece-count . 100) (avg-piece-length . 18.930609999999998) (avg-looseness . 0.0814) (looseness-sd . 0.05282458129402342) (looseness-variance . 0.002790436388888889) (looses q 0.0938 0.1418 0.0056 0.1505 0.1172 0.064 0.163 0.0208 0.0035 0.0937 0.0725 0.0506 0.4958)) (fh-improved . 66) (bu-improved . 2) (bh-improved . 2)) c (h - (equal) (text u . "The fresh harrow-lines seemed to stretch like the channellings in a piece of new corduroy, lending a meanly utilitarian air to the expanse, taking away its gradations, and depriving it of all history beyond that of the few recent months, though to every clod and stone there really attached associations enough and to spare—echoes of songs from ancient harvest-days, of spoken words, and of sturdy deeds. Every inch of ground had been the site, first or last, of energy, gaiety, horse-play, bickerings, weariness. Groups of gleaners had squatted in the sun on every square yard. Love-matches that had populated the adjoining hamlet had been made up there between reaping and carrying. Under the hedge which divided the field from a distant plantation girls had given themselves to lovers who would not turn their heads to look at them by the next harvest; and in that ancient cornfield many a man had made love-promises to a woman at whose voice he had trembled by the next seed-time after fulfilling them in the church adjoining. But this neither Jude nor the rooks around him considered. For them it was a lonely place, possessing, in the one view, only the quality of a work-ground, and in the other that of a granary good to feed in.") (measure . 180) (bh h - (equal) (time . 66) (line-count . 33) (looseness-spread . 0.1677) (bps q 7 15 24 34 44 52 58 66 73 81 88 96 104 112 121 129 137 145 152 162 169 178 186 194 201 209 218 226 234 243 253 262) (piece-count . 267) (avg-piece-length . 19.004589887640453) (avg-looseness . 0.0557) (looseness-sd . 0.04352822708007271) (looseness-variance . 0.001894706552734375) (looses q 0.1438 0.0339 0.0217 0.0468 0.0868 0.0651 0.1444 0.0093 0.0245 0.0635 0.0102 0.1083 0.0334 0.0515 -0.0059 0.006 0.0814 0.0973 -0.0096 0.0158 0.038 0.0241 0.0831 0.067 0.076 0.1581 0.0251 0.102 0.0397 0.0438 0.0842 0.0132 0.4112)) (fu h - (equal) (time . 54) (line-count . 33) (looseness-spread . 0.2314) (bps q 6 13 19 25 32 40 47 51 58 64 71 79 85 89 96 102 108 114 120 126 132 139 148 155 163 170 177 183 189 196 203 212) (piece-count . 220) (avg-piece-length . 23.064661363636375) (avg-looseness . 0.0689) (looseness-sd . 0.0664077449096442) (looseness-variance . 0.004409988583984375) (looses q 0.1438 0.0339 0.1259 0.101 0.0206 -0.0091 -0.0073 0.1609 0.0245 0.0635 0.0102 0.1083 0.1689 0.1733 0.1049 0.0466 -0.0071 0.0665 0.0513 0.2179 -0.0045 0.0332 -0.0073 0.0711 0.0144 0.0915 0.0536 0.0466 0.2223 0.0799 0.0111 -0.0063 0.0386)) (bu h - (equal) (time . 44) (line-count . 33) (looseness-spread . 0.1905) (bps q 6 13 19 25 32 40 46 51 58 64 70 77 84 89 96 102 107 113 119 126 132 139 147 153 161 168 175 182 189 196 203 212) (piece-count . 220) (avg-piece-length . 23.064661363636375) (avg-looseness . 0.0694) (looseness-sd . 0.05495541801087496) (looseness-variance . 0.00302009796875) (looses q 0.1438 0.0339 0.1259 0.101 0.0206 -0.0091 0.1444 0.0093 0.0245 0.0635 0.1353 0.1814 0.1054 0.0406 0.1049 0.0466 0.1003 0.1631 0.0164 0.0488 -0.0045 0.0332 0.1164 0.13 0.1088 0.0005 0.0939 0.0337 0.0247 0.0799 0.0111 -0.0063 0.0386)) (fh h - (equal) (time . 38) (line-count . 33) (looseness-spread . 0.1682) (bps q 7 15 24 34 44 52 59 66 73 81 88 96 104 112 121 129 138 146 152 162 169 178 186 194 202 210 218 227 234 243 253 262) (piece-count . 267) (avg-piece-length . 19.004589887640453) (avg-looseness . 0.0566) (looseness-sd . 0.04858570230788066) (looseness-variance . 0.00236057046875) (looses q 0.1438 0.0339 0.0217 0.0468 0.0868 0.0651 -0.0073 0.1609 0.0245 0.0635 0.0102 0.1083 0.0334 0.0515 -0.0059 0.006 0.001 0.0982 0.0996 0.0158 0.038 0.0241 0.0831 0.067 0.0 0.1022 0.1549 0.0056 0.1361 0.0438 0.0842 0.0132 0.4112)) (fh-improved . 867) (bu-improved . 18) (bh-improved . 6)) c (h - (equal) (text u . "The boy stood under the rick before mentioned, and every few seconds used his clacker or rattle briskly. At each clack the rooks left off pecking, and rose and went away on their leisurely wings, burnished like tassets of mail, afterwards wheeling back and regarding him warily, and descending to feed at a more respectful distance.") (measure . 180) (bh h - (equal) (time . 12) (line-count . 9) (looseness-spread . 0.1194) (bps q 7 15 23 31 38 46 54 64) (piece-count . 69) (avg-piece-length . 19.823999999999995) (avg-looseness . 0.0542) (looseness-sd . 0.04591584693763146) (looseness-variance . 0.0021082650000000002) (looses q 0.0852 -0.011 0.1084 0.1011 0.0616 0.0835 -0.0092 0.0144 0.3685)) (fu h - (equal) (time . 9) (line-count . 9) (looseness-spread . 0.1194) (bps q 7 13 20 27 34 40 45 53) (piece-count . 56) (avg-piece-length . 24.42600000000001) (avg-looseness . 0.0542) (looseness-sd . 0.04591584693763146) (looseness-variance . 0.0021082650000000002) (looses q 0.0852 -0.011 0.1084 0.1011 0.0616 0.0835 -0.0092 0.0144 0.3685)) (bu h - (equal) (time . 11) (line-count . 9) (looseness-spread . 0.1194) (bps q 7 13 20 27 34 40 45 53) (piece-count . 56) (avg-piece-length . 24.42600000000001) (avg-looseness . 0.0542) (looseness-sd . 0.04591584693763146) (looseness-variance . 0.0021082650000000002) (looses q 0.0852 -0.011 0.1084 0.1011 0.0616 0.0835 -0.0092 0.0144 0.3685)) (fh h - (equal) (time . 22) (line-count . 9) (looseness-spread . 0.1194) (bps q 7 15 23 31 38 46 54 64) (piece-count . 69) (avg-piece-length . 19.823999999999995) (avg-looseness . 0.0542) (looseness-sd . 0.04591584693763146) (looseness-variance . 0.0021082650000000002) (looses q 0.0852 -0.011 0.1084 0.1011 0.0616 0.0835 -0.0092 0.0144 0.3685)) (fh-improved . 39) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "He sounded the clacker till his arm ached, and at length his heart grew sympathetic with the birds’ thwarted desires. They seemed, like himself, to be living in a world which did not want them. Why should he frighten them away? They took upon more and more the aspect of gentle friends and pensioners—the only friends he could claim as being in the least degree interested in him, for his aunt had often told him that she was not. He ceased his rattling, and they alighted anew.") (measure . 180) (bh h - (equal) (time . 18) (line-count . 13) (looseness-spread . 0.1203) (bps q 7 14 21 27 37 43 50 58 66 74 83 92) (piece-count . 97) (avg-piece-length . 20.275092783505155) (avg-looseness . 0.0608) (looseness-sd . 0.04247564252996455) (looseness-variance . 0.0018041802083333333) (looses q 0.1126 0.1146 0.0557 0.1204 0.0882 0.0965 0.0241 0.0583 0.0262 0.028 0.0001 0.0046 0.27)) (fu h - (equal) (time . 13) (line-count . 13) (looseness-spread . 0.2101) (bps q 7 14 19 25 34 40 47 53 59 66 74 82) (piece-count . 88) (avg-piece-length . 22.34868181818182) (avg-looseness . 0.0759) (looseness-sd . 0.06122831362114172) (looseness-variance . 0.003748906388888889) (looses q 0.1126 0.1146 0.0557 0.0417 0.0146 0.0884 0.024 0.2053 0.0262 0.1661 -0.0048 0.0662 0.1119)) (bu h - (equal) (time . 16) (line-count . 13) (looseness-spread . 0.1369) (bps q 7 14 19 24 33 39 45 52 58 66 74 82) (piece-count . 88) (avg-piece-length . 22.34868181818182) (avg-looseness . 0.077) (looseness-sd . 0.041068772774727785) (looseness-variance . 0.001686644097222222) (looses q 0.1126 0.1146 0.0557 0.1204 0.0882 0.0965 0.1321 0.0583 0.0745 0.0098 -0.0048 0.0662 0.1119)) (fh h - (equal) (time . 30) (line-count . 13) (looseness-spread . 0.1212) (bps q 7 14 21 28 38 44 51 59 66 74 83 92) (piece-count . 97) (avg-piece-length . 20.275092783505155) (avg-looseness . 0.0582) (looseness-sd . 0.04349295920031195) (looseness-variance . 0.0018916375000000002) (looses q 0.1126 0.1146 0.0557 0.0417 0.0146 0.0884 0.024 0.0922 0.1213 0.028 0.0001 0.0046 0.27)) (fh-improved . 57) (bu-improved . 7) (bh-improved . 5)) c (h - (equal) (text u . "“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— you shall. There is enough for us all. Farmer Troutham can afford to let you have some. Eat, then my dear little birdies, and make a good meal!”") (measure . 180) (bh h - (equal) (time . 7) (line-count . 6) (looseness-spread . 0.1261) (bps q 7 13 21 28 36) (piece-count . 42) (avg-piece-length . 21.47077380952381) (avg-looseness . 0.0947) (looseness-sd . 0.04271470941022542) (looseness-variance . 0.0018245464) (looses q 0.1079 0.1421 0.0908 0.016 0.1169 0.2101)) (fu h - (equal) (time . 5) (line-count . 6) (looseness-spread . 0.1822) (bps q 6 12 19 26 33) (piece-count . 39) (avg-piece-length . 23.122371794871793) (avg-looseness . 0.0947) (looseness-sd . 0.06509228525716391) (looseness-variance . 0.0042370056) (looses q 0.1079 0.0346 0.1982 0.016 0.1169 0.2101)) (bu h - (equal) (time . 7) (line-count . 6) (looseness-spread . 0.1261) (bps q 6 11 19 26 33) (piece-count . 39) (avg-piece-length . 23.122371794871793) (avg-looseness . 0.0947) (looseness-sd . 0.04271470941022542) (looseness-variance . 0.0018245464) (looses q 0.1079 0.1421 0.0908 0.016 0.1169 0.2101)) (fh h - (equal) (time . 6) (line-count . 6) (looseness-spread . 0.1822) (bps q 7 14 21 28 36) (piece-count . 42) (avg-piece-length . 21.47077380952381) (avg-looseness . 0.0947) (looseness-sd . 0.06509228525716391) (looseness-variance . 0.0042370056) (looses q 0.1079 0.0346 0.1982 0.016 0.1169 0.2101)) (fh-improved . 10) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "They stayed and ate, inky spots on the nut-brown soil, and Jude enjoyed their appetite. A magic thread of fellow-feeling united his own life with theirs. Puny and sorry as those lives were, they much resembled his own.") (measure . 180) (bh h - (equal) (time . 8) (line-count . 6) (looseness-spread . 0.1429) (bps q 8 15 23 31 38) (piece-count . 42) (avg-piece-length . 21.34755952380953) (avg-looseness . 0.039) (looseness-sd . 0.048206597058908854) (looseness-variance . 0.002323876) (looses q 0.0263 0.0248 0.0248 -0.0119 0.131 0.3643)) (fu h - (equal) (time . 6) (line-count . 6) (looseness-spread . 0.1124) (bps q 8 15 21 28 35) (piece-count . 39) (avg-piece-length . 22.989679487179494) (avg-looseness . 0.0734) (looseness-sd . 0.04824324201377846) (looseness-variance . 0.0023274103999999995) (looses q 0.0263 0.0248 0.1372 0.0543 0.1246 0.2388)) (bu h - (equal) (time . 8) (line-count . 6) (looseness-spread . 0.1124) (bps q 8 15 21 28 35) (piece-count . 39) (avg-piece-length . 22.989679487179494) (avg-looseness . 0.0734) (looseness-sd . 0.04824324201377846) (looseness-variance . 0.0023274103999999995) (looses q 0.0263 0.0248 0.1372 0.0543 0.1246 0.2388)) (fh h - (equal) (time . 6) (line-count . 6) (looseness-spread . 0.1429) (bps q 8 15 23 31 38) (piece-count . 42) (avg-piece-length . 21.34755952380953) (avg-looseness . 0.039) (looseness-sd . 0.048206597058908854) (looseness-variance . 0.002323876) (looses q 0.0263 0.0248 0.0248 -0.0119 0.131 0.3643)) (fh-improved . 8) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "His clacker he had by this time thrown away from him, as being a mean and sordid instrument, offensive both to the birds and to himself as their friend. All at once he became conscious of a smart blow upon his buttocks, followed by a loud clack, which announced to his surprised senses that the clacker had been the instrument of offence used. The birds and Jude started up simultaneously, and the dazed eyes of the latter beheld the farmer in person, the great Troutham himself, his red face glaring down upon Jude’s cowering frame, the clacker swinging in his hand.") (measure . 180) (bh h - (equal) (time . 23) (line-count . 15) (looseness-spread . 0.1099) (bps q 8 16 24 33 42 50 58 65 72 79 88 97 104 112) (piece-count . 120) (avg-piece-length . 19.57299999999999) (avg-looseness . 0.058) (looseness-sd . 0.0341542599010395) (looseness-variance . 0.0011665134693877549) (looses q 0.0209 0.0827 0.0865 0.0271 0.0696 0.003 -0.0086 0.0686 0.0825 0.0822 0.088 0.0333 0.0753 0.1013 0.0071)) (fu h - (equal) (time . 15) (line-count . 16) (looseness-spread . 0.2492) (bps q 8 16 21 29 37 43 51 57 63 69 75 82 88 93 99) (piece-count . 101) (avg-piece-length . 23.255049504950488) (avg-looseness . 0.0723) (looseness-sd . 0.07227808765840141) (looseness-variance . 0.005224121955555557) (looses q 0.0209 0.0827 0.0865 0.0271 0.0696 0.003 -0.0086 0.0686 0.0825 0.2406 0.0442 0.0469 0.0954 0.2315 -0.0068 0.7811)) (bu h - (equal) (time . 34) (line-count . 16) (looseness-spread . 0.1805) (bps q 8 16 21 29 37 43 50 56 62 69 74 81 86 93 99) (piece-count . 101) (avg-piece-length . 23.255049504950488) (avg-looseness . 0.0714) (looseness-sd . 0.04543956376942406) (looseness-variance . 0.0020647539555555556) (looses q 0.0209 0.0827 0.0865 0.0271 0.0696 0.003 0.0797 0.0877 0.1121 0.0907 0.1091 0.1737 0.0902 0.0449 -0.0068 0.7811)) (fh h - (equal) (time . 16) (line-count . 15) (looseness-spread . 0.1099) (bps q 8 16 24 33 42 50 58 65 72 80 89 97 104 112) (piece-count . 120) (avg-piece-length . 19.57299999999999) (avg-looseness . 0.0567) (looseness-sd . 0.034123655688554536) (looseness-variance . 0.0011644238775510205) (looses q 0.0209 0.0827 0.0865 0.0271 0.0696 0.003 -0.0086 0.0686 0.0825 0.0343 0.0543 0.0969 0.0753 0.1013 0.0071)) (fh-improved . 118) (bu-improved . 7) (bh-improved . 2)) c (h - (equal) (text u . "“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear birdies,’ indeed! I’ll tickle your breeches, and see if you say, ‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s how you earn your sixpence a day for keeping the rooks off my corn!”") (measure . 180) (bh h - (equal) (time . 12) (line-count . 9) (looseness-spread . 0.1589) (bps q 8 14 21 29 36 44 51 60) (piece-count . 65) (avg-piece-length . 20.546430769230764) (avg-looseness . 0.0726) (looseness-sd . 0.04684499539705389) (looseness-variance . 0.00219445359375) (looses q 0.1535 -0.0054 0.129 0.0555 0.071 0.0354 0.0654 0.0765 0.4325)) (fu h - (equal) (time . 27) (line-count . 9) (looseness-spread . 0.1684) (bps q 8 14 22 29 36 41 48 55) (piece-count . 60) (avg-piece-length . 22.25863333333333) (avg-looseness . 0.0726) (looseness-sd . 0.05575126540043732) (looseness-variance . 0.00310820359375) (looses q 0.1535 -0.0054 0.0215 0.163 0.071 0.0354 0.0654 0.0765 0.4325)) (bu h - (equal) (time . 11) (line-count . 9) (looseness-spread . 0.1589) (bps q 8 14 21 29 36 41 48 55) (piece-count . 60) (avg-piece-length . 22.25863333333333) (avg-looseness . 0.0726) (looseness-sd . 0.04684499539705389) (looseness-variance . 0.00219445359375) (looses q 0.1535 -0.0054 0.129 0.0555 0.071 0.0354 0.0654 0.0765 0.4325)) (fh h - (equal) (time . 8) (line-count . 9) (looseness-spread . 0.1684) (bps q 8 14 22 29 36 44 51 60) (piece-count . 65) (avg-piece-length . 20.546430769230764) (avg-looseness . 0.0726) (looseness-sd . 0.05575126540043732) (looseness-variance . 0.00310820359375) (looses q 0.1535 -0.0054 0.0215 0.163 0.071 0.0354 0.0654 0.0765 0.4325)) (fh-improved . 11) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham had seized his left hand with his own left, and swinging his slim frame round him at arm’s-length, again struck Jude on the hind parts with the flat side of Jude’s own rattle, till the field echoed with the blows, which were delivered once or twice at each revolution.") (measure . 180) (bh h - (equal) (time . 13) (line-count . 9) (looseness-spread . 0.131) (bps q 7 12 20 28 35 43 51 58) (piece-count . 67) (avg-piece-length . 20.503298507462688) (avg-looseness . 0.0672) (looseness-sd . 0.03458073659929759) (looseness-variance . 0.0011958273437499998) (looses q 0.0816 0.064 0.0715 0.0112 0.0645 0.1422 0.0463 0.056 0.1862)) (fu h - (equal) (time . 9) (line-count . 9) (looseness-spread . 0.131) (bps q 6 10 18 25 32 40 47 53) (piece-count . 59) (avg-piece-length . 23.283406779661018) (avg-looseness . 0.0672) (looseness-sd . 0.03458073659929759) (looseness-variance . 0.0011958273437499998) (looses q 0.0816 0.064 0.0715 0.0112 0.0645 0.1422 0.0463 0.056 0.1862)) (bu h - (equal) (time . 26) (line-count . 9) (looseness-spread . 0.131) (bps q 6 10 18 25 32 40 47 53) (piece-count . 59) (avg-piece-length . 23.283406779661018) (avg-looseness . 0.0672) (looseness-sd . 0.03458073659929759) (looseness-variance . 0.0011958273437499998) (looses q 0.0816 0.064 0.0715 0.0112 0.0645 0.1422 0.0463 0.056 0.1862)) (fh h - (equal) (time . 10) (line-count . 9) (looseness-spread . 0.131) (bps q 7 12 20 28 35 43 51 58) (piece-count . 67) (avg-piece-length . 20.503298507462688) (avg-looseness . 0.0672) (looseness-sd . 0.03458073659929759) (looseness-variance . 0.0011958273437499998) (looses q 0.0816 0.064 0.0715 0.0112 0.0645 0.1422 0.0463 0.056 0.1862)) (fh-improved . 23) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as helpless under the centrifugal tendency of his person as a hooked fish swinging to land, and beholding the hill, the rick, the plantation, the path, and the rooks going round and round him in an amazing circular race. “I—I sir—only meant that—there was a good crop in the ground—I saw ‘em sow it—and the rooks could have a little bit for dinner—and you wouldn’t miss it, sir—and Mr. Phillotson said I was to be kind to ‘em—oh, oh, oh!”") (measure . 180) (bh h - (equal) (time . 20) (line-count . 14) (looseness-spread . 0.1671) (bps q 6 13 22 31 39 48 55 65 73 81 91 98 108) (piece-count . 112) (avg-piece-length . 17.802) (avg-looseness . 0.0731) (looseness-sd . 0.04792554259615737) (looseness-variance . 0.0022968576331360946) (looses q 0.156 0.1047 0.0622 0.1054 0.0772 0.0289 0.1645 0.0294 0.0423 0.0863 0.0325 0.0636 -0.0026 0.4864)) (fu h - (equal) (time . 14) (line-count . 14) (looseness-spread . 0.2399) (bps q 6 12 18 25 32 39 46 53 61 70 77 83 92) (piece-count . 97) (avg-piece-length . 20.554886597938147) (avg-looseness . 0.0864) (looseness-sd . 0.0688923446249944) (looseness-variance . 0.004746155147928994) (looses q 0.156 0.1047 0.0622 0.1054 0.0772 0.0289 0.1645 0.0294 0.0423 -0.0101 0.2298 0.1378 -0.0051 0.3597)) (bu h - (equal) (time . 32) (line-count . 14) (looseness-spread . 0.1696) (bps q 6 12 18 25 32 39 46 53 60 68 76 83 92) (piece-count . 97) (avg-piece-length . 20.554886597938147) (avg-looseness . 0.0853) (looseness-sd . 0.048433380097741556) (looseness-variance . 0.002345792307692308) (looses q 0.156 0.1047 0.0622 0.1054 0.0772 0.0289 0.1645 0.0294 0.1059 0.1167 0.1126 0.0505 -0.0051 0.3597)) (fh h - (equal) (time . 14) (line-count . 14) (looseness-spread . 0.1726) (bps q 6 13 22 31 39 48 56 65 73 82 91 98 108) (piece-count . 112) (avg-piece-length . 17.802) (avg-looseness . 0.0717) (looseness-sd . 0.05502705843276846) (looseness-variance . 0.003027977159763314) (looses q 0.156 0.1047 0.0622 0.1054 0.0772 0.0289 0.0133 0.1625 0.0423 -0.0101 0.129 0.0636 -0.0026 0.4864)) (fh-improved . 118) (bu-improved . 4) (bh-improved . 2)) c (h - (equal) (text u . "This truthful explanation seemed to exasperate the farmer even more than if Jude had stoutly denied saying anything at all, and he still smacked the whirling urchin, the clacks of the instrument continuing to resound all across the field and as far as the ears of distant workers—who gathered thereupon that Jude was pursuing his business of clacking with great assiduity—and echoing from the brand-new church tower just behind the mist, towards the building of which structure the farmer had largely subscribed, to testify his love for God and man.") (measure . 180) (bh h - (equal) (time . 22) (line-count . 15) (looseness-spread . 0.1742) (bps q 8 16 24 32 38 47 57 65 74 81 88 94 102 109) (piece-count . 116) (avg-piece-length . 19.530073275862062) (avg-looseness . 0.0752) (looseness-sd . 0.05056510250990039) (looseness-variance . 0.002556829591836735) (looses q 0.0842 0.041 0.0695 0.0915 0.1651 0.069 0.0166 0.0472 0.0609 0.0286 0.1708 0.14 -0.0034 0.0712 0.1831)) (fu h - (equal) (time . 14) (line-count . 16) (looseness-spread . 0.2255) (bps q 5 11 17 25 31 36 46 50 56 61 66 72 79 84 91) (piece-count . 92) (avg-piece-length . 24.624875) (avg-looseness . 0.1017) (looseness-sd . 0.0751254015334065) (looseness-variance . 0.005643825955555556) (looses q 0.0842 0.041 0.1762 0.0016 0.1651 0.069 0.0166 0.1986 0.0505 0.2271 0.168 0.0793 0.0054 0.1924 0.0504 0.7775)) (bu h - (equal) (time . 32) (line-count . 16) (looseness-spread . 0.1984) (bps q 5 11 17 24 30 35 43 49 54 60 66 72 78 84 91) (piece-count . 92) (avg-piece-length . 24.624875) (avg-looseness . 0.1017) (looseness-sd . 0.06306018782789097) (looseness-variance . 0.003976587288888889) (looses q 0.0842 0.041 0.1762 0.098 0.1651 0.0468 0.2217 0.1562 0.1422 0.0403 0.0262 0.0793 0.1745 0.0233 0.0504 0.7775)) (fh h - (equal) (time . 16) (line-count . 15) (looseness-spread . 0.1742) (bps q 8 16 24 32 38 47 57 65 74 81 88 94 102 109) (piece-count . 116) (avg-piece-length . 19.530073275862062) (avg-looseness . 0.0752) (looseness-sd . 0.05056510250990039) (looseness-variance . 0.002556829591836735) (looses q 0.0842 0.041 0.0695 0.0915 0.1651 0.069 0.0166 0.0472 0.0609 0.0286 0.1708 0.14 -0.0034 0.0712 0.1831)) (fh-improved . 196) (bu-improved . 11) (bh-improved . 0)) c (h - (equal) (text u . "Presently Troutham grew tired of his punitive task, and depositing the quivering boy on his legs, took a sixpence from his pocket and gave it him in payment for his day’s work, telling him to go home and never let him see him in one of those fields again.") (measure . 180) (bh h - (equal) (time . 10) (line-count . 7) (looseness-spread . 0.0319) (bps q 6 14 24 33 41 50) (piece-count . 55) (avg-piece-length . 18.821527272727277) (avg-looseness . 0.0462) (looseness-sd . 0.012279081127402544) (looseness-variance . 0.00015077583333333332) (looses q 0.0601 0.0418 0.0624 0.0331 0.0305 0.0496 0.387)) (fu h - (equal) (time . 24) (line-count . 8) (looseness-spread . 0.1281) (bps q 6 11 18 25 32 40 48) (piece-count . 49) (avg-piece-length . 21.126204081632654) (avg-looseness . 0.1234) (looseness-sd . 0.045579394735886916) (looseness-variance . 0.002077481224489796) (looses q 0.0601 0.1701 0.1882 0.0803 0.1301 0.0845 0.1506 0.8627)) (bu h - (equal) (time . 9) (line-count . 8) (looseness-spread . 0.1079) (bps q 5 11 18 25 32 40 48) (piece-count . 49) (avg-piece-length . 21.126204081632654) (avg-looseness . 0.1234) (looseness-sd . 0.03912462557687437) (looseness-variance . 0.0015307363265306124) (looses q 0.1485 0.0818 0.1882 0.0803 0.1301 0.0845 0.1506 0.8627)) (fh h - (equal) (time . 7) (line-count . 7) (looseness-spread . 0.0319) (bps q 6 14 24 33 41 50) (piece-count . 55) (avg-piece-length . 18.821527272727277) (avg-looseness . 0.0462) (looseness-sd . 0.012279081127402544) (looseness-variance . 0.00015077583333333332) (looses q 0.0601 0.0418 0.0624 0.0331 0.0305 0.0496 0.387)) (fh-improved . 36) (bu-improved . 1) (bh-improved . 0)) c (h - (equal) (text u . "Jude leaped out of arm’s reach, and walked along the trackway weeping—not from the pain, though that was keen enough; not from the perception of the flaw in the terrestrial scheme, by which what was good for God’s birds was bad for God’s gardener; but with the awful sense that he had wholly disgraced himself before he had been a year in the parish, and hence might be a burden to his great-aunt for life.") (measure . 180) (bh h - (equal) (time . 15) (line-count . 11) (looseness-spread . 0.128) (bps q 7 14 21 29 39 46 54 62 70 79) (piece-count . 87) (avg-piece-length . 19.24425862068965) (avg-looseness . 0.0536) (looseness-sd . 0.03846323049355059) (looseness-variance . 0.0014794201) (looses q 0.1013 0.0398 0.1187 0.0348 0.0107 0.0566 0.0544 0.0352 0.0935 -0.0093 0.2064)) (fu h - (equal) (time . 11) (line-count . 11) (looseness-spread . 0.1367) (bps q 7 12 19 25 33 40 47 54 61 70) (piece-count . 77) (avg-piece-length . 21.743512987012977) (avg-looseness . 0.0554) (looseness-sd . 0.04410809562880719) (looseness-variance . 0.0019455240999999997) (looses q 0.1013 0.0398 0.1187 0.0348 0.0107 0.0566 0.0544 0.1274 0.0193 -0.0093 0.2064)) (bu h - (equal) (time . 28) (line-count . 11) (looseness-spread . 0.1367) (bps q 7 12 19 25 33 40 47 54 61 70) (piece-count . 77) (avg-piece-length . 21.743512987012977) (avg-looseness . 0.0554) (looseness-sd . 0.04410809562880719) (looseness-variance . 0.0019455240999999997) (looses q 0.1013 0.0398 0.1187 0.0348 0.0107 0.0566 0.0544 0.1274 0.0193 -0.0093 0.2064)) (fh h - (equal) (time . 12) (line-count . 11) (looseness-spread . 0.128) (bps q 7 14 21 29 39 46 54 62 70 79) (piece-count . 87) (avg-piece-length . 19.24425862068965) (avg-looseness . 0.0536) (looseness-sd . 0.03846323049355059) (looseness-variance . 0.0014794201) (looses q 0.1013 0.0398 0.1187 0.0348 0.0107 0.0566 0.0544 0.0352 0.0935 -0.0093 0.2064)) (fh-improved . 53) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "With this shadow on his mind he did not care to show himself in the village, and went homeward by a roundabout track behind a high hedge and across a pasture. Here he beheld scores of coupled earthworms lying half their length on the surface of the damp ground, as they always did in such weather at that time of the year. It was impossible to advance in regular steps without crushing some of them at each tread.") (measure . 180) (bh h - (equal) (time . 18) (line-count . 11) (looseness-spread . 0.0621) (bps q 8 18 26 34 42 49 58 66 76 85) (piece-count . 92) (avg-piece-length . 18.551874999999995) (avg-looseness . 0.0383) (looseness-sd . 0.020433257204860902) (looseness-variance . 0.00041751799999999997) (looses q 0.0674 0.0365 0.0567 0.0264 0.0393 0.0094 0.0414 0.019 0.0715 0.0154 0.2187)) (fu h - (equal) (time . 10) (line-count . 12) (looseness-spread . 0.1382) (bps q 8 16 22 30 36 41 48 55 64 70 77) (piece-count . 78) (avg-piece-length . 21.881698717948716) (avg-looseness . 0.0715) (looseness-sd . 0.04868428565175305) (looseness-variance . 0.0023701596694214876) (looses q 0.0674 0.0365 0.0567 0.0264 0.1502 0.0919 0.1463 0.1333 0.0281 0.0379 0.012 0.8653)) (bu h - (equal) (time . 28) (line-count . 12) (looseness-spread . 0.1343) (bps q 8 16 22 29 36 41 48 55 64 70 77) (piece-count . 78) (avg-piece-length . 21.881698717948716) (avg-looseness . 0.0715) (looseness-sd . 0.041814217203369704) (looseness-variance . 0.0017484287603305789) (looses q 0.0674 0.0365 0.0567 0.068 0.1086 0.0919 0.1463 0.1333 0.0281 0.0379 0.012 0.8653)) (fh h - (equal) (time . 12) (line-count . 11) (looseness-spread . 0.0621) (bps q 8 18 26 34 42 49 58 66 76 85) (piece-count . 92) (avg-piece-length . 18.551874999999995) (avg-looseness . 0.0383) (looseness-sd . 0.020433257204860902) (looseness-variance . 0.00041751799999999997) (looses q 0.0674 0.0365 0.0567 0.0264 0.0393 0.0094 0.0414 0.019 0.0715 0.0154 0.2187)) (fh-improved . 72) (bu-improved . 1) (bh-improved . 0)) c (h - (equal) (text u . "Though Farmer Troutham had just hurt him, he was a boy who could not himself bear to hurt anything. He had never brought home a nest of young birds without lying awake in misery half the night after, and often reinstating them and the nest in their original place the next morning. He could scarcely bear to see trees cut down or lopped, from a fancy that it hurt them; and late pruning, when the sap was up and the tree bled profusely, had been a positive grief to him in his infancy. This weakness of character, as it may be called, suggested that he was the sort of man who was born to ache a good deal before the fall of the curtain upon his unnecessary life should signify that all was well with him again. He carefully picked his way on tiptoe among the earthworms, without killing a single one.") (measure . 180) (bh h - (equal) (time . 33) (line-count . 22) (looseness-spread . 0.132) (bps q 5 14 23 30 39 47 57 64 72 81 90 99 107 117 125 134 143 152 160 168 176) (piece-count . 177) (avg-piece-length . 18.446454802259886) (avg-looseness . 0.0607) (looseness-sd . 0.03640453797931692) (looseness-variance . 0.0013252903854875282) (looses q 0.1006 0.0477 0.0454 0.0877 -0.0102 0.0857 -0.0125 0.0775 0.0772 0.0144 0.0377 0.1036 0.0966 0.1195 0.0557 0.0808 0.0276 0.017 0.0872 0.0727 0.0623 0.815)) (fu h - (equal) (time . 37) (line-count . 22) (looseness-spread . 0.2636) (bps q 5 14 21 28 35 41 49 55 63 72 80 87 94 101 109 118 126 132 139 146 150) (piece-count . 151) (avg-piece-length . 21.62266556291391) (avg-looseness . 0.0668) (looseness-sd . 0.06478899433428545) (looseness-variance . 0.004197613786848072) (looses q 0.1006 0.0477 0.0454 0.0877 -0.0102 0.0857 -0.0125 0.0775 0.0772 0.0144 0.0377 0.0127 0.2055 0.1195 -0.0093 0.0261 0.0589 0.0312 0.0512 0.1046 0.2511 0.7407)) (bu h - (equal) (time . 32) (line-count . 22) (looseness-spread . 0.1652) (bps q 5 14 21 28 35 41 49 55 63 71 78 85 93 100 107 116 124 130 138 144 149) (piece-count . 151) (avg-piece-length . 21.62266556291391) (avg-looseness . 0.0694) (looseness-sd . 0.046314601998469596) (looseness-variance . 0.002145042358276644) (looses q 0.1006 0.0477 0.0454 0.0877 -0.0102 0.0857 -0.0125 0.0775 0.0772 0.1198 0.1368 0.0645 0.0961 0.059 0.0964 0.1064 0.0332 -0.013 0.0969 0.1522 0.0101 0.6991)) (fh h - (equal) (time . 40) (line-count . 22) (looseness-spread . 0.1712) (bps q 5 14 23 30 39 47 57 64 72 81 90 100 108 118 127 135 144 153 161 169 176) (piece-count . 177) (avg-piece-length . 18.446454802259886) (avg-looseness . 0.0622) (looseness-sd . 0.04394404037872777) (looseness-variance . 0.0019310786848072564) (looses q 0.1006 0.0477 0.0454 0.0877 -0.0102 0.0857 -0.0125 0.0775 0.0772 0.0144 0.0377 0.0127 0.0596 0.0811 0.0466 0.1514 0.0589 0.0312 0.0512 0.1046 0.1587 0.815)) (fh-improved . 248) (bu-improved . 19) (bh-improved . 10)) c (h - (equal) (text u . "On entering the cottage he found his aunt selling a penny loaf to a little girl, and when the customer was gone she said, “Well, how do you come to be back here in the middle of the morning like this?”") (measure . 180) (bh h - (equal) (time . 9) (line-count . 6) (looseness-spread . 0.0816) (bps q 9 20 28 36 46) (piece-count . 48) (avg-piece-length . 16.973041666666667) (avg-looseness . 0.0554) (looseness-sd . 0.026976330365711346) (looseness-variance . 0.0007277224) (looses q 0.0695 0.0452 0.0553 0.0944 0.0128 0.7702)) (fu h - (equal) (time . 5) (line-count . 6) (looseness-spread . 0.0816) (bps q 7 16 23 31 39) (piece-count . 41) (avg-piece-length . 19.870878048780487) (avg-looseness . 0.0554) (looseness-sd . 0.026976330365711346) (looseness-variance . 0.0007277224) (looses q 0.0695 0.0452 0.0553 0.0944 0.0128 0.7702)) (bu h - (equal) (time . 8) (line-count . 6) (looseness-spread . 0.0816) (bps q 7 16 23 31 39) (piece-count . 41) (avg-piece-length . 19.870878048780487) (avg-looseness . 0.0554) (looseness-sd . 0.026976330365711346) (looseness-variance . 0.0007277224) (looses q 0.0695 0.0452 0.0553 0.0944 0.0128 0.7702)) (fh h - (equal) (time . 18) (line-count . 6) (looseness-spread . 0.0816) (bps q 9 20 28 36 46) (piece-count . 48) (avg-piece-length . 16.973041666666667) (avg-looseness . 0.0554) (looseness-sd . 0.026976330365711346) (looseness-variance . 0.0007277224) (looses q 0.0695 0.0452 0.0553 0.0944 0.0128 0.7702)) (fh-improved . 23) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Mr. Troutham have turned me away because I let the rooks have a few peckings of corn. And there’s my wages—the last I shall ever hae!”") (measure . 180) (bh h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.0535) (bps q 6 15 22) (piece-count . 28) (avg-piece-length . 20.311464285714287) (avg-looseness . 0.045) (looseness-sd . 0.02208564138881992) (looseness-variance . 0.0004877755555555555) (looses q 0.0741 0.0206 0.0404 0.3959)) (fu h - (equal) (time . 4) (line-count . 4) (looseness-spread . 0.0831) (bps q 6 14 20) (piece-count . 27) (avg-piece-length . 21.06374074074074) (avg-looseness . 0.1284) (looseness-sd . 0.038441672989377326) (looseness-variance . 0.0014777622222222223) (looses q 0.0741 0.1572 0.154 0.1764)) (bu h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.0831) (bps q 6 14 20) (piece-count . 27) (avg-piece-length . 21.06374074074074) (avg-looseness . 0.1284) (looseness-sd . 0.038441672989377326) (looseness-variance . 0.0014777622222222223) (looses q 0.0741 0.1572 0.154 0.1764)) (fh h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.0535) (bps q 6 15 22) (piece-count . 28) (avg-piece-length . 20.311464285714287) (avg-looseness . 0.045) (looseness-sd . 0.02208564138881992) (looseness-variance . 0.0004877755555555555) (looses q 0.0741 0.0206 0.0404 0.3959)) (fh-improved . 3) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Ah!” said his aunt, suspending her breath. And she opened upon him a lecture on how she would now have him all the spring upon her hands doing nothing. “If you can’t skeer birds, what can ye do? There! don’t ye look so deedy! Farmer Troutham is not so much better than myself, come to that. But ‘tis as Job said, ‘Now they that are younger than I have me in derision, whose fathers I would have disdained to have set with the dogs of my flock.’ His father was my father’s journeyman, anyhow, and I must have been a fool to let ‘ee go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of mischty.”") (measure . 180) (bh h - (equal) (time . 39) (line-count . 17) (looseness-spread . 0.1632) (bps q 8 15 23 31 38 46 53 61 69 78 85 94 101 110 121 129) (piece-count . 132) (avg-piece-length . 19.122496212121213) (avg-looseness . 0.0636) (looseness-sd . 0.04393023188463157) (looseness-variance . 0.0019298652734375) (looses q 0.1129 0.0926 0.0954 -0.0123 0.1509 0.0564 0.0527 0.0282 0.108 0.0232 0.0497 0.0609 0.1166 0.0525 0.0019 0.0283 0.7187)) (fu h - (equal) (time . 19) (line-count . 17) (looseness-spread . 0.1914) (bps q 6 13 20 28 35 43 49 56 65 72 78 87 93 102 111 119) (piece-count . 121) (avg-piece-length . 20.860904958677686) (avg-looseness . 0.0647) (looseness-sd . 0.054899100274389746) (looseness-variance . 0.0030139112109375003) (looses q 0.1129 0.0926 0.0954 -0.0123 -0.0015 0.1248 0.123 0.0282 0.0154 0.1158 0.0497 0.0609 0.0046 0.0176 0.1791 0.0283 0.7187)) (bu h - (equal) (time . 23) (line-count . 17) (looseness-spread . 0.1632) (bps q 6 13 20 28 34 42 49 56 64 72 78 87 93 101 111 119) (piece-count . 121) (avg-piece-length . 20.860904958677686) (avg-looseness . 0.0655) (looseness-sd . 0.043643373190411165) (looseness-variance . 0.0019047440234375) (looses q 0.1129 0.0926 0.0954 -0.0123 0.1509 0.0564 0.0527 0.0282 0.108 0.0232 0.0497 0.0609 0.0046 0.0827 0.1141 0.0283 0.7187)) (fh h - (equal) (time . 18) (line-count . 17) (looseness-spread . 0.1914) (bps q 8 15 23 31 39 47 53 61 70 78 85 94 102 112 121 129) (piece-count . 132) (avg-piece-length . 19.122496212121213) (avg-looseness . 0.0647) (looseness-sd . 0.054899100274389746) (looseness-variance . 0.0030139112109375003) (looses q 0.1129 0.0926 0.0954 -0.0123 -0.0015 0.1248 0.123 0.0282 0.0154 0.1158 0.0497 0.0609 0.0046 0.0176 0.1791 0.0283 0.7187)) (fh-improved . 91) (bu-improved . 4) (bh-improved . 6)) c (h - (equal) (text u . "More angry with Jude for demeaning her by coming there than for dereliction of duty, she rated him primarily from that point of view, and only secondarily from a moral one.") (measure . 180) (bh h - (equal) (time . 7) (line-count . 5) (looseness-spread . 0.0244) (bps q 7 16 25 33) (piece-count . 39) (avg-piece-length . 18.52089743589744) (avg-looseness . 0.0734) (looseness-sd . 0.009758425846416008) (looseness-variance . 9.522687499999999e-05) (looses q 0.0589 0.0833 0.0813 0.0702 0.3377)) (fu h - (equal) (time . 4) (line-count . 5) (looseness-spread . 0.23) (bps q 6 12 18 25) (piece-count . 30) (avg-piece-length . 24.077166666666663) (avg-looseness . 0.1339) (looseness-sd . 0.09213576938409967) (looseness-variance . 0.008488999999999998) (looses q 0.0589 0.2749 0.1569 0.0449 0.132)) (bu h - (equal) (time . 6) (line-count . 5) (looseness-spread . 0.23) (bps q 6 12 18 25) (piece-count . 30) (avg-piece-length . 24.077166666666663) (avg-looseness . 0.1339) (looseness-sd . 0.09213576938409967) (looseness-variance . 0.008488999999999998) (looses q 0.0589 0.2749 0.1569 0.0449 0.132)) (fh h - (equal) (time . 5) (line-count . 5) (looseness-spread . 0.0244) (bps q 7 16 25 33) (piece-count . 39) (avg-piece-length . 18.52089743589744) (avg-looseness . 0.0734) (looseness-sd . 0.009758425846416008) (looseness-variance . 9.522687499999999e-05) (looses q 0.0589 0.0833 0.0813 0.0702 0.3377)) (fh-improved . 20) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Not that you should have let the birds eat what Farmer Troutham planted. Of course you was wrong in that. Jude, Jude, why didstn’t go off with that schoolmaster of thine to Christminster or somewhere? But, oh no—poor or’nary child—there never was any sprawl on thy side of the family, and never will be!”") (measure . 180) (bh h - (equal) (time . 11) (line-count . 9) (looseness-spread . 0.1238) (bps q 8 14 21 29 37 45 51 60) (piece-count . 62) (avg-piece-length . 20.614677419354845) (avg-looseness . 0.0753) (looseness-sd . 0.040977354645584434) (looseness-variance . 0.00167914359375) (looses q 0.0332 0.006 0.109 0.1298 0.1047 0.0384 0.0958 0.0856 0.6519)) (fu h - (equal) (time . 8) (line-count . 9) (looseness-spread . 0.1423) (bps q 8 14 21 28 33 39 45 53) (piece-count . 55) (avg-piece-length . 23.238363636363637) (avg-looseness . 0.0776) (looseness-sd . 0.050483332645537574) (looseness-variance . 0.002548566875) (looses q 0.0332 0.006 0.109 0.1298 0.0129 0.1483 0.0958 0.0856 0.6519)) (bu h - (equal) (time . 11) (line-count . 9) (looseness-spread . 0.1423) (bps q 8 14 21 28 33 39 45 53) (piece-count . 55) (avg-piece-length . 23.238363636363637) (avg-looseness . 0.0776) (looseness-sd . 0.050483332645537574) (looseness-variance . 0.002548566875) (looses q 0.0332 0.006 0.109 0.1298 0.0129 0.1483 0.0958 0.0856 0.6519)) (fh h - (equal) (time . 22) (line-count . 9) (looseness-spread . 0.1423) (bps q 8 14 21 29 38 45 51 60) (piece-count . 62) (avg-piece-length . 20.614677419354845) (avg-looseness . 0.0776) (looseness-sd . 0.050483332645537574) (looseness-variance . 0.002548566875) (looses q 0.0332 0.006 0.109 0.1298 0.0129 0.1483 0.0958 0.0856 0.6519)) (fh-improved . 25) (bu-improved . 0) (bh-improved . 1)) c (h - (equal) (text u . "“Where is this beautiful city, Aunt—this place where Mr. Phillotson is gone to?” asked the boy, after meditating in silence.") (measure . 180) (bh h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.0729) (bps q 8 16 26) (piece-count . 27) (avg-piece-length . 18.773111111111113) (avg-looseness . 0.0427) (looseness-sd . 0.031197685099307537) (looseness-variance . 0.0009732955555555556) (looses q 0.0858 0.0129 0.0295 0.8208)) (fu h - (equal) (time . 4) (line-count . 4) (looseness-spread . 0.0729) (bps q 6 13 20) (piece-count . 21) (avg-piece-length . 24.136857142857142) (avg-looseness . 0.0427) (looseness-sd . 0.031197685099307537) (looseness-variance . 0.0009732955555555556) (looses q 0.0858 0.0129 0.0295 0.8208)) (bu h - (equal) (time . 4) (line-count . 4) (looseness-spread . 0.0729) (bps q 6 13 20) (piece-count . 21) (avg-piece-length . 24.136857142857142) (avg-looseness . 0.0427) (looseness-sd . 0.031197685099307537) (looseness-variance . 0.0009732955555555556) (looses q 0.0858 0.0129 0.0295 0.8208)) (fh h - (equal) (time . 6) (line-count . 4) (looseness-spread . 0.0729) (bps q 8 16 26) (piece-count . 27) (avg-piece-length . 18.773111111111113) (avg-looseness . 0.0427) (looseness-sd . 0.031197685099307537) (looseness-variance . 0.0009732955555555556) (looses q 0.0858 0.0129 0.0295 0.8208)) (fh-improved . 11) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Lord! you ought to know where the city of Christminster is. Near a score of miles from here. It is a place much too good for you ever to have much to do with, poor boy, I’m a-thinking.”") (measure . 180) (bh h - (equal) (time . 22) (line-count . 5) (looseness-spread . 0.0935) (bps q 7 17 26 35) (piece-count . 42) (avg-piece-length . 18.068964285714287) (avg-looseness . 0.0442) (looseness-sd . 0.03464383061960672) (looseness-variance . 0.001200195) (looses q 0.0922 -0.0013 0.0284 0.0575 0.217)) (fu h - (equal) (time . 5) (line-count . 5) (looseness-spread . 0.0935) (bps q 7 15 24 33) (piece-count . 39) (avg-piece-length . 19.458884615384616) (avg-looseness . 0.0442) (looseness-sd . 0.03464383061960672) (looseness-variance . 0.001200195) (looses q 0.0922 -0.0013 0.0284 0.0575 0.217)) (bu h - (equal) (time . 7) (line-count . 5) (looseness-spread . 0.0935) (bps q 7 15 24 33) (piece-count . 39) (avg-piece-length . 19.458884615384616) (avg-looseness . 0.0442) (looseness-sd . 0.03464383061960672) (looseness-variance . 0.001200195) (looses q 0.0922 -0.0013 0.0284 0.0575 0.217)) (fh h - (equal) (time . 5) (line-count . 5) (looseness-spread . 0.0935) (bps q 7 17 26 35) (piece-count . 42) (avg-piece-length . 18.068964285714287) (avg-looseness . 0.0442) (looseness-sd . 0.03464383061960672) (looseness-variance . 0.001200195) (looses q 0.0922 -0.0013 0.0284 0.0575 0.217)) (fh-improved . 6) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as that. We’ve never had anything to do with folk in Christminster, nor folk in Christminster with we.”") (measure . 180) (bh h - (equal) (time . 7) (line-count . 5) (looseness-spread . 0.0728) (bps q 7 14 22 31) (piece-count . 35) (avg-piece-length . 20.56594285714286) (avg-looseness . 0.086) (looseness-sd . 0.03169238867614746) (looseness-variance . 0.0010044074999999999) (looses q 0.1109 0.1235 0.0587 0.0507 0.4107)) (fu h - (equal) (time . 5) (line-count . 5) (looseness-spread . 0.2313) (bps q 6 13 20 27) (piece-count . 29) (avg-piece-length . 24.820965517241376) (avg-looseness . 0.0905) (looseness-sd . 0.089304601645156) (looseness-variance . 0.007975311875) (looses q 0.2419 0.0106 0.0587 0.0507 0.4107)) (bu h - (equal) (time . 6) (line-count . 5) (looseness-spread . 0.2313) (bps q 6 13 20 27) (piece-count . 29) (avg-piece-length . 24.820965517241376) (avg-looseness . 0.0905) (looseness-sd . 0.089304601645156) (looseness-variance . 0.007975311875) (looses q 0.2419 0.0106 0.0587 0.0507 0.4107)) (fh h - (equal) (time . 5) (line-count . 5) (looseness-spread . 0.0728) (bps q 7 14 22 31) (piece-count . 35) (avg-piece-length . 20.56594285714286) (avg-looseness . 0.086) (looseness-sd . 0.03169238867614746) (looseness-variance . 0.0010044074999999999) (looses q 0.1109 0.1235 0.0587 0.0507 0.4107)) (fh-improved . 8) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Jude went out, and, feeling more than ever his existence to be an undemanded one, he lay down upon his back on a heap of litter near the pig-sty. The fog had by this time become more translucent, and the position of the sun could be seen through it. He pulled his straw hat over his face, and peered through the interstices of the plaiting at the white brightness, vaguely reflecting. Growing up brought responsibilities, he found. Events did not rhyme quite as he had thought. Nature’s logic was too horrid for him to care for. That mercy towards one set of creatures was cruelty towards another sickened his sense of harmony. As you got older, and felt yourself to be at the centre of your time, and not at a point in its circumference, as you had felt when you were little, you were seized with a sort of shuddering, he perceived. All around you there seemed to be something glaring, garish, rattling, and the noises and glares hit upon the little cell called your life, and shook it, and warped it.") (measure . 180) (bh h - (equal) (time . 59) (line-count . 26) (looseness-spread . 0.1374) (bps q 8 17 26 36 43 52 60 67 76 82 92 99 106 115 123 130 139 149 159 168 177 185 193 202 211) (piece-count . 217) (avg-piece-length . 18.67255529953916) (avg-looseness . 0.0454) (looseness-sd . 0.038084543006316876) (looseness-variance . 0.0014504324159999998) (looses q 0.042 -0.0093 0.0882 0.0366 0.0394 0.0244 0.0192 0.0573 0.1146 0.0965 -0.0094 0.0625 0.0175 0.0401 0.0754 -0.0009 0.0423 0.128 0.073 0.0176 0.0985 0.0545 0.0163 0.0164 -0.005 0.1965)) (fu h - (equal) (time . 44) (line-count . 27) (looseness-spread . 0.2683) (bps q 7 14 23 32 38 45 53 60 67 71 75 80 87 94 102 107 113 122 132 139 146 153 158 164 171 179) (piece-count . 183) (avg-piece-length . 22.141773224043693) (avg-looseness . 0.0781) (looseness-sd . 0.07845667141767378) (looseness-variance . 0.006155449289940829) (looses q 0.042 -0.0093 0.0882 0.0366 0.2352 0.003 0.0147 0.1229 -0.0064 0.259 0.2101 0.0584 0.1253 0.0563 0.0042 0.1797 0.0179 0.0038 0.0287 0.0475 0.1247 0.0977 0.1942 0.0075 0.0648 0.0229 0.4156)) (bu h - (equal) (time . 36) (line-count . 27) (looseness-spread . 0.1819) (bps q 7 14 22 31 38 44 51 58 64 70 75 80 87 94 101 107 113 120 129 137 145 152 158 164 171 179) (piece-count . 183) (avg-piece-length . 22.141773224043693) (avg-looseness . 0.0796) (looseness-sd . 0.049971978094473665) (looseness-variance . 0.002497198594674556) (looses q 0.042 -0.0093 0.1298 0.0888 0.1415 0.1082 0.1726 0.1701 0.0615 0.1167 0.0015 0.0584 0.1253 0.0563 0.0921 0.0918 0.0179 0.1422 0.0926 0.0601 0.0466 0.0506 0.1182 0.0075 0.0648 0.0229 0.4156)) (fh h - (equal) (time . 42) (line-count . 26) (looseness-spread . 0.1374) (bps q 8 17 26 36 43 52 60 67 76 82 92 99 106 115 123 130 139 149 159 168 177 185 193 202 211) (piece-count . 217) (avg-piece-length . 18.67255529953916) (avg-looseness . 0.0454) (looseness-sd . 0.038084543006316876) (looseness-variance . 0.0014504324159999998) (looses q 0.042 -0.0093 0.0882 0.0366 0.0394 0.0244 0.0192 0.0573 0.1146 0.0965 -0.0094 0.0625 0.0175 0.0401 0.0754 -0.0009 0.0423 0.128 0.073 0.0176 0.0985 0.0545 0.0163 0.0164 -0.005 0.1965)) (fh-improved . 462) (bu-improved . 21) (bh-improved . 0)) c (h - (equal) (text u . "If he could only prevent himself growing up! He did not want to be a man.") (measure . 180) (bh h - (equal) (time . 3) (line-count . 2) (looseness-spread . 0.0) (bps q 9) (piece-count . 18) (avg-piece-length . 16.88711111111111) (avg-looseness . 0.0477) (looseness-sd . 0.0) (looseness-variance . 0.0) (looses q 0.0477 0.0834)) (fu h - (equal) (time . 2) (line-count . 3) (looseness-spread . 0.0642) (bps q 6 14) (piece-count . 15) (avg-piece-length . 20.264533333333336) (avg-looseness . 0.159) (looseness-sd . 0.03209999999999999) (looseness-variance . 0.0010304099999999994) (looses q 0.1911 0.1269 0.8439)) (bu h - (equal) (time . 3) (line-count . 3) (looseness-spread . 0.0642) (bps q 6 14) (piece-count . 15) (avg-piece-length . 20.264533333333336) (avg-looseness . 0.159) (looseness-sd . 0.03209999999999999) (looseness-variance . 0.0010304099999999994) (looses q 0.1911 0.1269 0.8439)) (fh h - (equal) (time . 3) (line-count . 2) (looseness-spread . 0.0) (bps q 9) (piece-count . 18) (avg-piece-length . 16.88711111111111) (avg-looseness . 0.0477) (looseness-sd . 0.0) (looseness-variance . 0.0) (looses q 0.0477 0.0834)) (fh-improved . 3) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Then, like the natural boy, he forgot his despondency, and sprang up. During the remainder of the morning he helped his aunt, and in the afternoon, when there was nothing more to be done, he went into the village. Here he asked a man whereabouts Christminster lay.") (measure . 180) (bh h - (equal) (time . 24) (line-count . 8) (looseness-spread . 0.0899) (bps q 9 16 25 33 41 50 57) (piece-count . 58) (avg-piece-length . 19.236922413793103) (avg-looseness . 0.0671) (looseness-sd . 0.026407195988972402) (looseness-variance . 0.0006973400000000001) (looses q 0.0848 0.0505 0.0787 0.0617 0.1062 0.0163 0.0715 0.8185)) (fu h - (equal) (time . 7) (line-count . 8) (looseness-spread . 0.3551) (bps q 8 13 19 26 33 41 45) (piece-count . 46) (avg-piece-length . 24.25525) (avg-looseness . 0.1097) (looseness-sd . 0.11230416242490383) (looseness-variance . 0.012612224897959183) (looses q -0.0036 0.0639 0.1717 0.0617 0.1062 0.0163 0.3515 0.5565)) (bu h - (equal) (time . 9) (line-count . 8) (looseness-spread . 0.1831) (bps q 8 13 19 26 32 39 45) (piece-count . 46) (avg-piece-length . 24.25525) (avg-looseness . 0.1115) (looseness-sd . 0.0663018299375004) (looseness-variance . 0.004395932653061224) (looses q -0.0036 0.0639 0.1717 0.0617 0.1795 0.1757 0.1317 0.5565)) (fh h - (equal) (time . 8) (line-count . 8) (looseness-spread . 0.1753) (bps q 10 17 25 33 41 50 57) (piece-count . 58) (avg-piece-length . 19.236922413793103) (avg-looseness . 0.0697) (looseness-sd . 0.053534467249366266) (looseness-variance . 0.0028659391836734693) (looses q -0.0036 0.0639 0.1717 0.0617 0.1062 0.0163 0.0715 0.8185)) (fh-improved . 48) (bu-improved . 3) (bh-improved . 2)) c (h - (equal) (text u . "“Christminster? Oh, well, out by there yonder; though I’ve never bin there—not I. I’ve never had any business at such a place.”") (measure . 180) (bh h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.061) (bps q 8 15 24) (piece-count . 27) (avg-piece-length . 19.480574074074074) (avg-looseness . 0.0524) (looseness-sd . 0.026061636343270717) (looseness-variance . 0.000679208888888889) (looses q 0.0415 0.0273 0.0883 0.6742)) (fu h - (equal) (time . 4) (line-count . 4) (looseness-spread . 0.061) (bps q 6 12 20) (piece-count . 23) (avg-piece-length . 22.8685) (avg-looseness . 0.0524) (looseness-sd . 0.026061636343270717) (looseness-variance . 0.000679208888888889) (looses q 0.0415 0.0273 0.0883 0.6742)) (bu h - (equal) (time . 4) (line-count . 4) (looseness-spread . 0.061) (bps q 6 12 20) (piece-count . 23) (avg-piece-length . 22.8685) (avg-looseness . 0.0524) (looseness-sd . 0.026061636343270717) (looseness-variance . 0.000679208888888889) (looses q 0.0415 0.0273 0.0883 0.6742)) (fh h - (equal) (time . 3) (line-count . 4) (looseness-spread . 0.061) (bps q 8 15 24) (piece-count . 27) (avg-piece-length . 19.480574074074074) (avg-looseness . 0.0524) (looseness-sd . 0.026061636343270717) (looseness-variance . 0.000679208888888889) (looses q 0.0415 0.0273 0.0883 0.6742)) (fh-improved . 9) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "The man pointed north-eastward, in the very direction where lay that field in which Jude had so disgraced himself. There was something unpleasant about the coincidence for the moment, but the fearsomeness of this fact rather increased his curiosity about the city. The farmer had said he was never to be seen in that field again; yet Christminster lay across it, and the path was a public one. So, stealing out of the hamlet, he descended into the same hollow which had witnessed his punishment in the morning, never swerving an inch from the path, and climbing up the long and tedious ascent on the other side till the track joined the highway by a little clump of trees. Here the ploughed land ended, and all before him was bleak open down.") (measure . 180) (bh h - (equal) (time . 45) (line-count . 20) (looseness-spread . 0.107) (bps q 7 15 23 30 38 47 54 63 71 80 90 98 106 115 124 132 142 149 156) (piece-count . 158) (avg-piece-length . 19.360905063291128) (avg-looseness . 0.0385) (looseness-sd . 0.03412602032405617) (looseness-variance . 0.0011645852631578947) (looses q 0.0734 0.0489 0.0977 0.0398 0.0254 0.0106 0.0697 0.0029 0.0405 0.094 0.0216 0.014 0.0618 0.0051 -0.0092 0.0024 0.0334 0.0017 0.0978 0.7148)) (fu h - (equal) (time . 21) (line-count . 20) (looseness-spread . 0.3278) (bps q 6 13 20 25 31 37 43 52 58 64 72 79 85 90 97 104 112 120 127) (piece-count . 133) (avg-piece-length . 23.000172932330816) (avg-looseness . 0.0707) (looseness-sd . 0.06986686746216027) (looseness-variance . 0.00488137916897507) (looses q 0.0734 0.0489 0.0107 0.0005 0.0708 0.1089 0.0697 0.0029 0.3205 0.1118 0.0325 0.073 0.0502 0.1292 0.0828 -0.0073 0.0769 0.0619 0.0267 0.1688)) (bu h - (equal) (time . 81) (line-count . 20) (looseness-spread . 0.1894) (bps q 6 13 20 25 31 37 43 50 58 64 71 78 84 90 97 104 112 120 127) (piece-count . 133) (avg-piece-length . 23.000172932330816) (avg-looseness . 0.0707) (looseness-sd . 0.04771848715770963) (looseness-variance . 0.0022770540166204985) (looses q 0.0734 0.0489 0.0107 0.0005 0.0708 0.1089 0.0697 0.1413 0.1821 0.1118 0.1317 0.0703 0.0422 0.0408 0.0828 -0.0073 0.0769 0.0619 0.0267 0.1688)) (fh h - (equal) (time . 23) (line-count . 20) (looseness-spread . 0.1181) (bps q 7 15 24 31 39 47 54 63 71 80 90 98 107 115 124 132 142 149 156) (piece-count . 158) (avg-piece-length . 19.360905063291128) (avg-looseness . 0.0394) (looseness-sd . 0.03752519965860652) (looseness-variance . 0.0014081406094182825) (looses q 0.0734 0.0489 0.0107 0.0005 0.0708 0.1089 0.0697 0.0029 0.0405 0.094 0.0216 0.014 -0.0018 0.0688 -0.0092 0.0024 0.0334 0.0017 0.0978 0.7148)) (fh-improved . 309) (bu-improved . 5) (bh-improved . 4)) c (h - (equal) (text u . "The schoolmaster was leaving the village, and everybody seemed sorry. The miller at Cresscombe lent him the small white tilted cart and horse to carry his goods to the city of his destination, about twenty miles off, such a vehicle proving of quite sufficient size for the departing teacher’s effects. For the schoolhouse had been partly furnished by the managers, and the only cumbersome article possessed by the master, in addition to the packing-case of books, was a cottage piano that he had bought at an auction during the year in which he thought of learning instrumental music. But the enthusiasm having waned he had never acquired any skill in playing, and the purchased article had been a perpetual trouble to him ever since in moving house.") (measure . 210) (bh h - (equal) (time . 32) (line-count . 18) (looseness-spread . 0.1027) (bps q 10 18 26 36 46 58 66 75 85 96 106 117 126 136 145 155 167) (piece-count . 168) (avg-piece-length . 18.455788690476183) (avg-looseness . 0.0644) (looseness-sd . 0.03217046292985395) (looseness-variance . 0.0010349386851211072) (looses q 0.1047 0.0667 0.0663 0.0595 0.1111 0.0272 0.0765 0.0121 0.05 0.0793 0.0761 0.0619 0.0681 0.1002 0.0159 0.1106 0.0084 0.8676)) (fu h - (equal) (time . 19) (line-count . 18) (looseness-spread . 0.2336) (bps q 7 13 20 31 39 47 52 59 65 73 81 90 97 102 110 118 126) (piece-count . 128) (avg-piece-length . 24.223222656249998) (avg-looseness . 0.0751) (looseness-sd . 0.07340981049435157) (looseness-variance . 0.005389000276816609) (looses q 0.0004 0.1593 0.0663 0.0038 0.0051 0.0197 0.234 0.0121 0.05 0.0793 0.0761 0.0619 0.2129 0.1277 0.0183 0.0013 0.1482 0.692)) (bu h - (equal) (time . 41) (line-count . 18) (looseness-spread . 0.1194) (bps q 6 13 20 30 37 44 51 57 64 71 80 89 97 102 109 117 126) (piece-count . 128) (avg-piece-length . 24.223222656249998) (avg-looseness . 0.0765) (looseness-sd . 0.03642954426700573) (looseness-variance . 0.00132711169550173) (looses q 0.1047 0.0667 0.0663 0.0595 0.1111 0.1226 0.0637 0.0754 0.0539 0.068 0.0713 0.0109 0.1303 0.1277 0.119 0.0165 0.0323 0.692)) (fh h - (equal) (time . 22) (line-count . 17) (looseness-spread . 0.1122) (bps q 11 19 28 39 49 60 67 76 86 97 108 119 128 138 147 158) (piece-count . 168) (avg-piece-length . 18.455788690476183) (avg-looseness . 0.0477) (looseness-sd . 0.029975963678212248) (looseness-variance . 0.0008985583984375) (looses q 0.0004 0.0204 -0.0002 0.0283 0.0472 0.112 0.0767 0.0432 0.0533 0.0398 0.0136 0.0666 0.0798 0.043 0.0633 0.0763 0.0851)) (fh-improved . 326) (bu-improved . 17) (bh-improved . 29)) c (h - (equal) (text u . "The rector had gone away for the day, being a man who disliked the sight of changes. He did not mean to return till the evening, when the new school-teacher would have arrived and settled in, and everything would be smooth again.") (measure . 210) (bh h - (equal) (time . 8) (line-count . 6) (looseness-spread . 0.0605) (bps q 11 21 30 37 46) (piece-count . 47) (avg-piece-length . 20.3178085106383) (avg-looseness . 0.0301) (looseness-sd . 0.02444229121829621) (looseness-variance . 0.0005974256) (looses q 0.0115 -0.002 0.0245 0.0579 0.0585 0.8823)) (fu h - (equal) (time . 7) (line-count . 6) (looseness-spread . 0.0605) (bps q 10 19 28 35 42) (piece-count . 43) (avg-piece-length . 22.20783720930233) (avg-looseness . 0.0301) (looseness-sd . 0.02444229121829621) (looseness-variance . 0.0005974256) (looses q 0.0115 -0.002 0.0245 0.0579 0.0585 0.8823)) (bu h - (equal) (time . 8) (line-count . 6) (looseness-spread . 0.0605) (bps q 10 19 28 35 42) (piece-count . 43) (avg-piece-length . 22.20783720930233) (avg-looseness . 0.0301) (looseness-sd . 0.02444229121829621) (looseness-variance . 0.0005974256) (looses q 0.0115 -0.002 0.0245 0.0579 0.0585 0.8823)) (fh h - (equal) (time . 6) (line-count . 6) (looseness-spread . 0.0605) (bps q 11 21 30 37 46) (piece-count . 47) (avg-piece-length . 20.3178085106383) (avg-looseness . 0.0301) (looseness-sd . 0.02444229121829621) (looseness-variance . 0.0005974256) (looses q 0.0115 -0.002 0.0245 0.0579 0.0585 0.8823)) (fh-improved . 11) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "The blacksmith, the farm bailiff, and the schoolmaster himself were standing in perplexed attitudes in the parlour before the instrument. The master had remarked that even if he got it into the cart he should not know what to do with it on his arrival at Christminster, the city he was bound for, since he was only going into temporary lodgings just at first.") (measure . 210) (bh h - (equal) (time . 15) (line-count . 9) (looseness-spread . 0.0967) (bps q 8 18 27 35 46 56 65 75) (piece-count . 79) (avg-piece-length . 18.455898734177218) (avg-looseness . 0.0943) (looseness-sd . 0.03127466026993739) (looseness-variance . 0.000978104375) (looses q 0.1225 0.0762 0.1105 0.068 0.0772 0.1376 0.1213 0.0409 0.6637)) (fu h - (equal) (time . 9) (line-count . 9) (looseness-spread . 0.1266) (bps q 7 12 19 25 36 46 53 60) (piece-count . 64) (avg-piece-length . 22.78150000000001) (avg-looseness . 0.11) (looseness-sd . 0.04142846055249941) (looseness-variance . 0.0017163173437499998) (looses q 0.1225 0.1644 0.0378 0.068 0.0772 0.1376 0.1213 0.1509 0.5691)) (bu h - (equal) (time . 14) (line-count . 9) (looseness-spread . 0.1266) (bps q 7 12 19 25 35 45 52 60) (piece-count . 64) (avg-piece-length . 22.78150000000001) (avg-looseness . 0.1085) (looseness-sd . 0.044704697739723055) (looseness-variance . 0.0019985099999999998) (looses q 0.1225 0.1644 0.0378 0.068 0.1623 0.1051 0.1432 0.0647 0.5691)) (fh h - (equal) (time . 28) (line-count . 9) (looseness-spread . 0.0967) (bps q 8 18 27 35 46 56 65 75) (piece-count . 79) (avg-piece-length . 18.455898734177218) (avg-looseness . 0.0943) (looseness-sd . 0.03127466026993739) (looseness-variance . 0.000978104375) (looses q 0.1225 0.0762 0.1105 0.068 0.0772 0.1376 0.1213 0.0409 0.6637)) (fh-improved . 72) (bu-improved . 3) (bh-improved . 0)) c (h - (equal) (text u . "A little boy of eleven, who had been thoughtfully assisting in the packing, joined the group of men, and as they rubbed their chins he spoke up, blushing at the sound of his own voice: “Aunt have got a great fuel-house, and it could be put there, perhaps, till you’ve found a place to settle in, sir.”") (measure . 210) (bh h - (equal) (time . 26) (line-count . 7) (looseness-spread . 0.1105) (bps q 10 20 29 39 48 57) (piece-count . 65) (avg-piece-length . 18.452015384615382) (avg-looseness . 0.0566) (looseness-sd . 0.04178992768066912) (looseness-variance . 0.0017463980555555555) (looses q 0.0338 0.0006 0.1009 0.0756 0.0175 0.1111 0.3747)) (fu h - (equal) (time . 8) (line-count . 7) (looseness-spread . 0.2347) (bps q 8 14 23 33 42 51) (piece-count . 58) (avg-piece-length . 20.678982758620695) (avg-looseness . 0.0611) (looseness-sd . 0.0766055571671461) (looseness-variance . 0.005868411388888888) (looses q 0.2215 0.0514 0.0715 -0.0132 0.017 0.0185 0.3747)) (bu h - (equal) (time . 11) (line-count . 7) (looseness-spread . 0.2347) (bps q 8 14 23 33 42 51) (piece-count . 58) (avg-piece-length . 20.678982758620695) (avg-looseness . 0.0611) (looseness-sd . 0.0766055571671461) (looseness-variance . 0.005868411388888888) (looses q 0.2215 0.0514 0.0715 -0.0132 0.017 0.0185 0.3747)) (fh h - (equal) (time . 8) (line-count . 7) (looseness-spread . 0.1105) (bps q 10 20 29 39 48 57) (piece-count . 65) (avg-piece-length . 18.452015384615382) (avg-looseness . 0.0566) (looseness-sd . 0.04178992768066912) (looseness-variance . 0.0017463980555555555) (looses q 0.0338 0.0006 0.1009 0.0756 0.0175 0.1111 0.3747)) (fh-improved . 32) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "It was decided that a deputation should wait on the boy’s aunt—an old maiden resident—and ask her if she would house the piano till Mr. Phillotson should send for it. The smith and the bailiff started to see about the practicability of the suggested shelter, and the boy and the schoolmaster were left standing alone.") (measure . 210) (bh h - (equal) (time . 29) (line-count . 7) (looseness-spread . 0.0333) (bps q 11 21 31 40 50 62) (piece-count . 72) (avg-piece-length . 17.800402777777776) (avg-looseness . 0.0353) (looseness-sd . 0.010276618553244491) (looseness-variance . 0.0001056088888888889) (looses q 0.0371 0.0137 0.047 0.0372 0.0397 0.0373 0.0006)) (fu h - (equal) (time . 9) (line-count . 8) (looseness-spread . 0.1802) (bps q 8 16 26 34 42 49 56) (piece-count . 57) (avg-piece-length . 22.484719298245615) (avg-looseness . 0.0515) (looseness-sd . 0.05523542932811534) (looseness-variance . 0.003050952653061225) (looses q 0.0371 0.0137 0.047 0.0372 0.1815 0.0013 0.0428 0.8796)) (bu h - (equal) (time . 12) (line-count . 8) (looseness-spread . 0.1172) (bps q 8 16 25 33 42 49 56) (piece-count . 57) (avg-piece-length . 22.484719298245615) (avg-looseness . 0.0515) (looseness-sd . 0.040237985911375854) (looseness-variance . 0.0016190955102040815) (looses q 0.0371 0.0137 0.1185 0.1022 0.045 0.0013 0.0428 0.8796)) (fh h - (equal) (time . 9) (line-count . 7) (looseness-spread . 0.0333) (bps q 11 21 31 40 50 62) (piece-count . 72) (avg-piece-length . 17.800402777777776) (avg-looseness . 0.0353) (looseness-sd . 0.010276618553244491) (looseness-variance . 0.0001056088888888889) (looses q 0.0371 0.0137 0.047 0.0372 0.0397 0.0373 0.0006)) (fh-improved . 40) (bu-improved . 2) (bh-improved . 0)) c (h - (equal) (text u . "Tears rose into the boy’s eyes, for he was not among the regular day scholars, who came unromantically close to the schoolmaster’s life, but one who had attended the night school only during the present teacher’s term of office. The regular scholars, if the truth must be told, stood at the present moment afar off, like certain historic disciples, indisposed to any enthusiastic volunteering of aid.") (measure . 210) (bh h - (equal) (time . 33) (line-count . 9) (looseness-spread . 0.1108) (bps q 9 19 29 38 46 57 65 76) (piece-count . 88) (avg-piece-length . 18.639670454545453) (avg-looseness . 0.0638) (looseness-sd . 0.0377803499686014) (looseness-variance . 0.0014273548437499998) (looses q 0.1064 0.1183 0.0359 0.018 0.0075 0.0847 0.0761 0.0638 0.0271)) (fu h - (equal) (time . 10) (line-count . 10) (looseness-spread . 0.1896) (bps q 10 17 22 30 37 45 53 59 64) (piece-count . 65) (avg-piece-length . 25.235246153846152) (avg-looseness . 0.0797) (looseness-sd . 0.053568149740929695) (looseness-variance . 0.0028695466666666665) (looses q 0.0213 0.0759 0.0655 0.1314 0.0075 0.0847 0.0761 0.1971 0.0575 0.8755)) (bu h - (equal) (time . 13) (line-count . 10) (looseness-spread . 0.1896) (bps q 10 17 22 30 37 45 53 59 64) (piece-count . 65) (avg-piece-length . 25.235246153846152) (avg-looseness . 0.0797) (looseness-sd . 0.053568149740929695) (looseness-variance . 0.0028695466666666665) (looses q 0.0213 0.0759 0.0655 0.1314 0.0075 0.0847 0.0761 0.1971 0.0575 0.8755)) (fh h - (equal) (time . 12) (line-count . 9) (looseness-spread . 0.1239) (bps q 10 20 30 38 46 57 65 76) (piece-count . 88) (avg-piece-length . 18.639670454545453) (avg-looseness . 0.0658) (looseness-sd . 0.03579786131879948) (looseness-variance . 0.0012814868749999998) (looses q 0.0213 0.0759 0.0655 0.1314 0.0075 0.0847 0.0761 0.0638 0.0271)) (fh-improved . 69) (bu-improved . 0) (bh-improved . 3)) c (h - (equal) (text u . "The boy awkwardly opened the book he held in his hand, which Mr. Phillotson had bestowed on him as a parting gift, and admitted that he was sorry.") (measure . 210) (bh h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.0992) (bps q 8 17 27) (piece-count . 32) (avg-piece-length . 19.244890625000004) (avg-looseness . 0.0801) (looseness-sd . 0.040739933998746515) (looseness-variance . 0.0016597422222222223) (looses q 0.1328 0.0738 0.0336 0.5463)) (fu h - (equal) (time . 4) (line-count . 4) (looseness-spread . 0.156) (bps q 8 15 23) (piece-count . 28) (avg-piece-length . 21.99416071428572) (avg-looseness . 0.1273) (looseness-sd . 0.07216647421067486) (looseness-variance . 0.005208) (looses q 0.0253 0.1813 0.1753 0.4201)) (bu h - (equal) (time . 6) (line-count . 4) (looseness-spread . 0.1015) (bps q 7 15 23) (piece-count . 28) (avg-piece-length . 21.99416071428572) (avg-looseness . 0.1273) (looseness-sd . 0.04161930641741483) (looseness-variance . 0.0017321666666666668) (looses q 0.1328 0.0738 0.1753 0.4201)) (fh h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.156) (bps q 9 17 27) (piece-count . 32) (avg-piece-length . 19.244890625000004) (avg-looseness . 0.0801) (looseness-sd . 0.07166293013515115) (looseness-variance . 0.005135575555555555) (looses q 0.0253 0.1813 0.0336 0.5463)) (fh-improved . 7) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "“Ah—that would be a long story. You wouldn’t understand my reasons, Jude. You will, perhaps, when you are older.”") (measure . 210) (bh h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.16) (bps q 8 16) (piece-count . 23) (avg-piece-length . 21.266999999999996) (avg-looseness . 0.1234) (looseness-sd . 0.08) (looseness-variance . 0.0063999999999999994) (looses q 0.2034 0.0434 0.2648)) (fu h - (equal) (time . 3) (line-count . 3) (looseness-spread . 0.16) (bps q 8 14) (piece-count . 20) (avg-piece-length . 24.457049999999995) (avg-looseness . 0.1234) (looseness-sd . 0.08) (looseness-variance . 0.0063999999999999994) (looses q 0.2034 0.0434 0.2648)) (bu h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.16) (bps q 8 14) (piece-count . 20) (avg-piece-length . 24.457049999999995) (avg-looseness . 0.1234) (looseness-sd . 0.08) (looseness-variance . 0.0063999999999999994) (looses q 0.2034 0.0434 0.2648)) (fh h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.16) (bps q 8 16) (piece-count . 23) (avg-piece-length . 21.266999999999996) (avg-looseness . 0.1234) (looseness-sd . 0.08) (looseness-variance . 0.0063999999999999994) (looses q 0.2034 0.0434 0.2648)) (fh-improved . 2) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Well—don’t speak of this everywhere. You know what a university is, and a university degree? It is the necessary hallmark of a man who wants to do anything in teaching. My scheme, or dream, is to be a university graduate, and then to be ordained. By going to live at Christminster, or near it, I shall be at headquarters, so to speak, and if my scheme is practicable at all, I consider that being on the spot will afford me a better chance of carrying it out than I should have elsewhere.”") (measure . 210) (bh h - (equal) (time . 39) (line-count . 11) (looseness-spread . 0.0961) (bps q 8 20 32 42 54 64 76 86 99 111) (piece-count . 119) (avg-piece-length . 16.541445378151263) (avg-looseness . 0.0443) (looseness-sd . 0.031026087410435752) (looseness-variance . 0.0009626181) (looses q 0.0544 0.0757 0.0256 0.0888 0.023 0.0306 0.0251 0.0972 0.0212 0.0011 0.2253)) (fu h - (equal) (time . 34) (line-count . 11) (looseness-spread . 0.17) (bps q 7 15 24 32 40 49 59 68 77 86) (piece-count . 93) (avg-piece-length . 21.165935483870978) (avg-looseness . 0.0474) (looseness-sd . 0.04983898173117104) (looseness-variance . 0.0024839241000000007) (looses q 0.0544 0.0757 0.0256 0.0888 0.1627 -0.0038 0.0553 -0.0073 0.0212 0.0011 0.2253)) (bu h - (equal) (time . 18) (line-count . 11) (looseness-spread . 0.1403) (bps q 7 15 23 31 40 49 59 68 77 86) (piece-count . 93) (avg-piece-length . 21.165935483870978) (avg-looseness . 0.0485) (looseness-sd . 0.043019029510206294) (looseness-variance . 0.0018506369000000002) (looses q 0.0544 0.0757 0.133 0.0792 0.0761 -0.0038 0.0553 -0.0073 0.0212 0.0011 0.2253)) (fh h - (equal) (time . 14) (line-count . 11) (looseness-spread . 0.0961) (bps q 8 20 32 42 54 64 76 86 99 111) (piece-count . 119) (avg-piece-length . 16.541445378151263) (avg-looseness . 0.0443) (looseness-sd . 0.031026087410435752) (looseness-variance . 0.0009626181) (looses q 0.0544 0.0757 0.0256 0.0888 0.023 0.0306 0.0251 0.0972 0.0212 0.0011 0.2253)) (fh-improved . 135) (bu-improved . 2) (bh-improved . 0)) c (h - (equal) (text u . "The smith and his companion returned. Old Miss Fawley’s fuel-house was dry, and eminently practicable; and she seemed willing to give the instrument standing-room there. It was accordingly left in the school till the evening, when more hands would be available for removing it; and the schoolmaster gave a final glance round.") (measure . 210) (bh h - (equal) (time . 12) (line-count . 8) (looseness-spread . 0.0726) (bps q 9 18 28 37 47 55 66) (piece-count . 69) (avg-piece-length . 19.830333333333336) (avg-looseness . 0.0495) (looseness-sd . 0.024032469532628865) (looseness-variance . 0.0005775595918367347) (looses q 0.0353 0.0613 0.0781 0.0563 0.0754 0.0055 0.0343 0.6066)) (fu h - (equal) (time . 9) (line-count . 8) (looseness-spread . 0.1621) (bps q 7 14 20 28 36 43 51) (piece-count . 54) (avg-piece-length . 25.338759259259252) (avg-looseness . 0.0501) (looseness-sd . 0.05995563666034195) (looseness-variance . 0.003594678367346939) (looses q 0.0353 0.1585 -0.0036 -0.0024 0.123 0.0055 0.0343 0.6066)) (bu h - (equal) (time . 11) (line-count . 8) (looseness-spread . 0.1446) (bps q 6 14 20 27 36 43 51) (piece-count . 54) (avg-piece-length . 25.338759259259252) (avg-looseness . 0.0532) (looseness-sd . 0.045011708227427005) (looseness-variance . 0.00202605387755102) (looses q 0.141 0.0638 -0.0036 0.0563 0.0754 0.0055 0.0343 0.6066)) (fh h - (equal) (time . 10) (line-count . 8) (looseness-spread . 0.1175) (bps q 9 18 29 38 47 55 66) (piece-count . 69) (avg-piece-length . 19.830333333333336) (avg-looseness . 0.0479) (looseness-sd . 0.03513332623371858) (looseness-variance . 0.001234350612244898) (looses q 0.0353 0.0613 0.0224 0.0533 0.123 0.0055 0.0343 0.6066)) (fh-improved . 63) (bu-improved . 2) (bh-improved . 2)) c (h - (equal) (text u . "The boy Jude assisted in loading some small articles, and at nine o’clock Mr. Phillotson mounted beside his box of books and other impedimenta, and bade his friends good-bye.") (measure . 210) (bh h - (equal) (time . 6) (line-count . 4) (looseness-spread . 0.034) (bps q 9 18 26) (piece-count . 34) (avg-piece-length . 21.65077941176471) (avg-looseness . 0.062) (looseness-sd . 0.015349339471854228) (looseness-variance . 0.00023560222222222222) (looses q 0.0404 0.0744 0.0713 0.0337)) (fu h - (equal) (time . 18) (line-count . 4) (looseness-spread . 0.034) (bps q 8 15 23) (piece-count . 29) (avg-piece-length . 25.383672413793107) (avg-looseness . 0.062) (looseness-sd . 0.015349339471854228) (looseness-variance . 0.00023560222222222222) (looses q 0.0404 0.0744 0.0713 0.0337)) (bu h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.034) (bps q 8 15 23) (piece-count . 29) (avg-piece-length . 25.383672413793107) (avg-looseness . 0.062) (looseness-sd . 0.015349339471854228) (looseness-variance . 0.00023560222222222222) (looses q 0.0404 0.0744 0.0713 0.0337)) (fh h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.034) (bps q 9 18 26) (piece-count . 34) (avg-piece-length . 21.65077941176471) (avg-looseness . 0.062) (looseness-sd . 0.015349339471854228) (looseness-variance . 0.00023560222222222222) (looses q 0.0404 0.0744 0.0713 0.0337)) (fh-improved . 7) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. “Be a good boy, remember; and be kind to animals and birds, and read all you can. And if ever you come to Christminster remember you hunt me out for old acquaintance’ sake.”") (measure . 210) (bh h - (equal) (time . 10) (line-count . 6) (looseness-spread . 0.1268) (bps q 9 19 29 40 50) (piece-count . 54) (avg-piece-length . 18.791) (avg-looseness . 0.0594) (looseness-sd . 0.047182598487154136) (looseness-variance . 0.0022261975999999994) (looses q 0.1372 0.0879 0.0415 0.0201 0.0104 0.4916)) (fu h - (equal) (time . 7) (line-count . 6) (looseness-spread . 0.1718) (bps q 8 17 25 36 43) (piece-count . 46) (avg-piece-length . 22.059) (avg-looseness . 0.0649) (looseness-sd . 0.062146877636772714) (looseness-variance . 0.0038622344) (looses q 0.0701 0.1822 0.0415 0.0201 0.0104 0.4916)) (bu h - (equal) (time . 9) (line-count . 6) (looseness-spread . 0.1718) (bps q 8 17 25 36 43) (piece-count . 46) (avg-piece-length . 22.059) (avg-looseness . 0.0649) (looseness-sd . 0.062146877636772714) (looseness-variance . 0.0038622344) (looses q 0.0701 0.1822 0.0415 0.0201 0.0104 0.4916)) (fh h - (equal) (time . 6) (line-count . 6) (looseness-spread . 0.1718) (bps q 10 19 29 40 50) (piece-count . 54) (avg-piece-length . 18.791) (avg-looseness . 0.0649) (looseness-sd . 0.062146877636772714) (looseness-variance . 0.0038622344) (looses q 0.0701 0.1822 0.0415 0.0201 0.0104 0.4916)) (fh-improved . 19) (bu-improved . 0) (bh-improved . 1)) c (h - (equal) (text u . "The cart creaked across the green, and disappeared round the corner by the rectory-house. The boy returned to the draw-well at the edge of the greensward, where he had left his buckets when he went to help his patron and teacher in the loading. There was a quiver in his lip now and after opening the well-cover to begin lowering the bucket he paused and leant with his forehead and arms against the framework, his face wearing the fixity of a thoughtful child’s who has felt the pricks of life somewhat before his time. The well into which he was looking was as ancient as the village itself, and from his present position appeared as a long circular perspective ending in a shining disk of quivering water at a distance of a hundred feet down. There was a lining of green moss near the top, and nearer still the hart’s-tongue fern.") (measure . 210) (bh h - (equal) (time . 52) (line-count . 19) (looseness-spread . 0.121) (bps q 9 19 28 37 47 57 67 77 86 97 106 115 125 134 146 159 169 179) (piece-count . 184) (avg-piece-length . 18.36781249999998) (avg-looseness . 0.049) (looseness-sd . 0.030105614504463418) (looseness-variance . 0.0009063480246913581) (looses q 0.028 0.0051 0.1169 0.0161 0.0306 0.0319 0.0477 0.0611 0.0428 0.0922 0.0512 0.0434 0.0709 0.0738 -0.0041 0.0731 0.073 0.0275 0.4245)) (fu h - (equal) (time . 22) (line-count . 19) (looseness-spread . 0.1654) (bps q 7 14 23 32 41 50 60 68 76 84 92 100 109 116 123 132 141 150) (piece-count . 155) (avg-piece-length . 21.804370967741917) (avg-looseness . 0.0501) (looseness-sd . 0.04628518181400561) (looseness-variance . 0.0021423180555555556) (looses q 0.1585 0.0363 0.044 0.0092 0.0474 -0.0061 -0.0069 0.0611 0.0428 0.0922 0.0512 0.0434 0.0709 0.0738 -0.0041 0.1521 0.0094 0.0275 0.4245)) (bu h - (equal) (time . 33) (line-count . 19) (looseness-spread . 0.1646) (bps q 7 14 23 32 41 50 59 67 75 83 92 100 109 116 123 132 141 150) (piece-count . 155) (avg-piece-length . 21.804370967741917) (avg-looseness . 0.0502) (looseness-sd . 0.0480904385276094) (looseness-variance . 0.0023126902777777783) (looses q 0.1585 0.0363 0.044 0.0092 0.0474 -0.0061 0.1271 0.0215 0.0329 0.0452 0.0155 0.0434 0.0709 0.0738 -0.0041 0.1521 0.0094 0.0275 0.4245)) (fh h - (equal) (time . 25) (line-count . 19) (looseness-spread . 0.142) (bps q 9 19 29 38 47 57 68 78 87 98 108 117 128 137 150 163 173 182) (piece-count . 184) (avg-piece-length . 18.36781249999998) (avg-looseness . 0.0283) (looseness-sd . 0.031064697521443297) (looseness-variance . 0.0009650154320987654) (looses q 0.028 0.0051 0.0022 0.0119 0.1339 0.0319 -0.0081 -0.0029 0.0198 0.0312 0.0113 0.0293 0.0058 0.0559 0.0384 0.0285 0.0538 0.0336 0.7459)) (fh-improved . 270) (bu-improved . 4) (bh-improved . 31)) c (h - (equal) (text u . "He said to himself, in the melodramatic tones of a whimsical boy, that the schoolmaster had drawn at that well scores of times on a morning like this, and would never draw there any more. “I’ve seen him look down into it, when he was tired with his drawing, just as I do now, and when he rested a bit before carrying the buckets home! But he was too clever to bide here any longer—a small sleepy place like this!”") (measure . 210) (bh h - (equal) (time . 31) (line-count . 10) (looseness-spread . 0.097) (bps q 11 23 33 42 51 62 72 82 91) (piece-count . 93) (avg-piece-length . 18.083564516129027) (avg-looseness . 0.0361) (looseness-sd . 0.031220960828612056) (looseness-variance . 0.0009747483950617283) (looses q 0.0089 0.0106 0.0363 0.0266 0.005 0.102 0.077 0.0398 0.0189 0.808)) (fu h - (equal) (time . 11) (line-count . 10) (looseness-spread . 0.1729) (bps q 8 16 25 33 42 52 61 69 78) (piece-count . 81) (avg-piece-length . 20.762611111111113) (avg-looseness . 0.0548) (looseness-sd . 0.0586188462510349) (looseness-variance . 0.0034361691358024684) (looses q 0.0089 0.0106 0.1702 -0.0027 0.0589 0.0381 0.1377 0.0697 0.0014 0.6818)) (bu h - (equal) (time . 16) (line-count . 10) (looseness-spread . 0.1102) (bps q 8 15 25 33 42 51 61 69 78) (piece-count . 81) (avg-piece-length . 20.762611111111113) (avg-looseness . 0.0547) (looseness-sd . 0.03985064090133198) (looseness-variance . 0.0015880735802469136) (looses q 0.0089 0.1026 0.0782 -0.0027 0.0589 0.0682 0.1075 0.0697 0.0014 0.6818)) (fh h - (equal) (time . 12) (line-count . 10) (looseness-spread . 0.097) (bps q 11 23 33 42 51 62 73 83 91) (piece-count . 93) (avg-piece-length . 18.083564516129027) (avg-looseness . 0.0377) (looseness-sd . 0.03268332152907411) (looseness-variance . 0.0010681995061728395) (looses q 0.0089 0.0106 0.0363 0.0266 0.005 0.102 0.0117 0.0637 0.0747 0.808)) (fh-improved . 85) (bu-improved . 2) (bh-improved . 2)) c (h - (equal) (text u . "A tear rolled from his eye into the depths of the well. The morning was a little foggy, and the boy’s breathing unfurled itself as a thicker fog upon the still and heavy air. His thoughts were interrupted by a sudden outcry:") (measure . 210) (bh h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.0485) (bps q 10 21 30 39) (piece-count . 47) (avg-piece-length . 19.089265957446806) (avg-looseness . 0.0274) (looseness-sd . 0.017418237568709413) (looseness-variance . 0.00030339500000000003) (looses q 0.0504 0.0326 0.0019 0.0247 0.2059)) (fu h - (equal) (time . 7) (line-count . 5) (looseness-spread . 0.0485) (bps q 10 19 27 36) (piece-count . 42) (avg-piece-length . 21.361797619047618) (avg-looseness . 0.0274) (looseness-sd . 0.017418237568709413) (looseness-variance . 0.00030339500000000003) (looses q 0.0504 0.0326 0.0019 0.0247 0.2059)) (bu h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.0485) (bps q 10 19 27 36) (piece-count . 42) (avg-piece-length . 21.361797619047618) (avg-looseness . 0.0274) (looseness-sd . 0.017418237568709413) (looseness-variance . 0.00030339500000000003) (looses q 0.0504 0.0326 0.0019 0.0247 0.2059)) (fh h - (equal) (time . 7) (line-count . 5) (looseness-spread . 0.0485) (bps q 10 21 30 39) (piece-count . 47) (avg-piece-length . 19.089265957446806) (avg-looseness . 0.0274) (looseness-sd . 0.017418237568709413) (looseness-variance . 0.00030339500000000003) (looses q 0.0504 0.0326 0.0019 0.0247 0.2059)) (fh-improved . 8) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "It came from an old woman who had emerged from her door towards the garden gate of a green-thatched cottage not far off. The boy quickly waved a signal of assent, drew the water with what was a great effort for one of his stature, landed and emptied the big bucket into his own pair of smaller ones, and pausing a moment for breath, started with them across the patch of clammy greensward whereon the well stood—nearly in the centre of the little village, or rather hamlet of Marygreen.") (measure . 210) (bh h - (equal) (time . 18) (line-count . 11) (looseness-spread . 0.1019) (bps q 9 19 28 37 47 56 66 74 81 92) (piece-count . 101) (avg-piece-length . 19.84581188118812) (avg-looseness . 0.0328) (looseness-sd . 0.034532837995160486) (looseness-variance . 0.0011925169) (looses q 0.0023 0.0727 0.0632 0.0953 0.0427 -0.0042 0.0074 -0.0066 0.0069 0.0482 0.1641)) (fu h - (equal) (time . 30) (line-count . 11) (looseness-spread . 0.1019) (bps q 9 18 26 34 44 52 61 69 76 85) (piece-count . 91) (avg-piece-length . 22.026670329670328) (avg-looseness . 0.0328) (looseness-sd . 0.034532837995160486) (looseness-variance . 0.0011925169) (looses q 0.0023 0.0727 0.0632 0.0953 0.0427 -0.0042 0.0074 -0.0066 0.0069 0.0482 0.1641)) (bu h - (equal) (time . 19) (line-count . 11) (looseness-spread . 0.1019) (bps q 9 18 26 34 44 52 61 69 76 85) (piece-count . 91) (avg-piece-length . 22.026670329670328) (avg-looseness . 0.0328) (looseness-sd . 0.034532837995160486) (looseness-variance . 0.0011925169) (looses q 0.0023 0.0727 0.0632 0.0953 0.0427 -0.0042 0.0074 -0.0066 0.0069 0.0482 0.1641)) (fh h - (equal) (time . 13) (line-count . 11) (looseness-spread . 0.1019) (bps q 9 19 28 37 47 56 66 74 81 92) (piece-count . 101) (avg-piece-length . 19.84581188118812) (avg-looseness . 0.0328) (looseness-sd . 0.034532837995160486) (looseness-variance . 0.0011925169) (looses q 0.0023 0.0727 0.0632 0.0953 0.0427 -0.0042 0.0074 -0.0066 0.0069 0.0482 0.1641)) (fh-improved . 35) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "It was as old-fashioned as it was small, and it rested in the lap of an undulating upland adjoining the North Wessex downs. Old as it was, however, the well-shaft was probably the only relic of the local history that remained absolutely unchanged. Many of the thatched and dormered dwelling-houses had been pulled down of late years, and many trees felled on the green. Above all, the original church, hump-backed, wood-turreted, and quaintly hipped, had been taken down, and either cracked up into heaps of road-metal in the lane, or utilized as pig-sty walls, garden seats, guard-stones to fences, and rockeries in the flower-beds of the neighbourhood. In place of it a tall new building of modern Gothic design, unfamiliar to English eyes, had been erected on a new piece of ground by a certain obliterator of historic records who had run down from London and back in a day. The site whereon so long had stood the ancient temple to the Christian divinities was not even recorded on the green and level grass-plot that had immemorially been the churchyard, the obliterated graves being commemorated by eighteen-penny cast-iron crosses warranted to last five years.") (measure . 210) (bh h - (equal) (time . 48) (line-count . 27) (looseness-spread . 0.1406) (bps q 11 22 31 41 51 57 63 71 81 89 96 105 116 124 134 145 154 163 175 185 194 204 213 222 231 241) (piece-count . 248) (avg-piece-length . 19.40513709677419) (avg-looseness . 0.0654) (looseness-sd . 0.03381199346928341) (looseness-variance . 0.001143250902366864) (looses q 0.0723 0.0759 0.0725 0.1072 0.1205 0.0174 0.0313 0.1019 0.0324 -0.0029 0.0644 0.0268 0.0603 0.0598 0.0521 0.1377 0.1005 0.0723 0.1 0.032 0.0914 0.0979 0.0445 0.0483 0.0447 0.0381 0.2452)) (fu h - (equal) (time . 29) (line-count . 27) (looseness-spread . 0.1467) (bps q 11 19 27 35 43 49 55 63 71 77 84 93 102 110 117 126 133 143 150 159 167 174 182 189 194 200) (piece-count . 206) (avg-piece-length . 23.361524271844665) (avg-looseness . 0.0671) (looseness-sd . 0.04529436218297074) (looseness-variance . 0.00205157924556213) (looses q 0.0288 0.1194 0.029 0.0064 0.0623 0.0319 0.1188 0.0988 0.0888 0.0753 0.0644 0.0268 0.0603 0.0052 0.1066 0.1377 -0.0033 0.0655 0.0016 0.1058 0.1434 0.0121 0.1145 0.0795 0.1274 0.0381 0.2452)) (bu h - (equal) (time . 57) (line-count . 27) (looseness-spread . 0.1313) (bps q 10 19 27 35 43 49 55 63 71 77 84 93 102 109 117 126 132 141 148 157 166 173 181 188 194 200) (piece-count . 206) (avg-piece-length . 23.361524271844665) (avg-looseness . 0.0671) (looseness-sd . 0.033790681158214236) (looseness-variance . 0.0011418101331360946) (looses q 0.0723 0.0759 0.029 0.0064 0.0623 0.0319 0.1188 0.0988 0.0888 0.0753 0.0644 0.0268 0.0603 0.0598 0.0521 0.1377 0.1005 0.0723 0.1 0.032 0.0914 0.0241 0.1337 0.0483 0.0447 0.0381 0.2452)) (fh h - (equal) (time . 34) (line-count . 27) (looseness-spread . 0.1467) (bps q 12 22 32 43 52 58 64 72 82 89 96 105 116 125 134 145 155 165 177 187 195 206 214 223 232 241) (piece-count . 248) (avg-piece-length . 19.40513709677419) (avg-looseness . 0.0665) (looseness-sd . 0.04623496029255825) (looseness-variance . 0.0021376715532544378) (looses q 0.0288 0.1194 0.029 0.0064 0.0623 0.0319 0.1188 0.0988 0.0888 0.0753 0.0644 0.0268 0.0603 0.0052 0.1066 0.1377 -0.0033 0.0655 0.0016 0.1058 0.1434 0.0121 0.1145 0.0795 0.0175 0.1324 0.2452)) (fh-improved . 469) (bu-improved . 13) (bh-improved . 23)) c (h - (equal) (text u . "Slender as was Jude Fawley’s frame he bore the two brimming house-buckets of water to the cottage without resting. Over the door was a little rectangular piece of blue board, on which was painted in yellow letters, “Drusilla Fawley, Baker.” Within the little lead panes of the window—this being one of the few old houses left—were five bottles of sweets, and three buns on a plate of the willow pattern.") (measure . 210) (bh h - (equal) (time . 17) (line-count . 9) (looseness-spread . 0.0799) (bps q 10 20 30 43 52 61 72 81) (piece-count . 92) (avg-piece-length . 17.89400000000001) (avg-looseness . 0.0345) (looseness-sd . 0.0251587335730557) (looseness-variance . 0.000632961875) (looses q 0.0462 0.039 0.0804 0.0005 0.0022 0.0546 0.0206 0.0327 0.0798)) (fu h - (equal) (time . 25) (line-count . 9) (looseness-spread . 0.0799) (bps q 8 16 23 32 39 46 56 64) (piece-count . 73) (avg-piece-length . 22.551342465753432) (avg-looseness . 0.0345) (looseness-sd . 0.0251587335730557) (looseness-variance . 0.000632961875) (looses q 0.0462 0.039 0.0804 0.0005 0.0022 0.0546 0.0206 0.0327 0.0798)) (bu h - (equal) (time . 14) (line-count . 9) (looseness-spread . 0.0799) (bps q 8 16 23 32 39 46 56 64) (piece-count . 73) (avg-piece-length . 22.551342465753432) (avg-looseness . 0.0345) (looseness-sd . 0.0251587335730557) (looseness-variance . 0.000632961875) (looses q 0.0462 0.039 0.0804 0.0005 0.0022 0.0546 0.0206 0.0327 0.0798)) (fh h - (equal) (time . 11) (line-count . 9) (looseness-spread . 0.0799) (bps q 10 20 30 43 52 61 72 81) (piece-count . 92) (avg-piece-length . 17.89400000000001) (avg-looseness . 0.0345) (looseness-sd . 0.0251587335730557) (looseness-variance . 0.000632961875) (looses q 0.0462 0.039 0.0804 0.0005 0.0022 0.0546 0.0206 0.0327 0.0798)) (fh-improved . 85) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "While emptying the buckets at the back of the house he could hear an animated conversation in progress within-doors between his great-aunt, the Drusilla of the sign-board, and some other villagers. Having seen the school-master depart, they were summing up particulars of the event, and indulging in predictions of his future.") (measure . 210) (bh h - (equal) (time . 13) (line-count . 8) (looseness-spread . 0.082) (bps q 12 23 30 39 49 60 70) (piece-count . 71) (avg-piece-length . 19.119154929577466) (avg-looseness . 0.0167) (looseness-sd . 0.027000657588364056) (looseness-variance . 0.0007290355102040815) (looses q 0.0017 -0.0075 0.0717 0.0023 -0.0103 0.0312 0.0277 0.8625)) (fu h - (equal) (time . 9) (line-count . 8) (looseness-spread . 0.082) (bps q 9 16 23 32 39 46 54) (piece-count . 55) (avg-piece-length . 24.681090909090905) (avg-looseness . 0.0167) (looseness-sd . 0.027000657588364056) (looseness-variance . 0.0007290355102040815) (looses q 0.0017 -0.0075 0.0717 0.0023 -0.0103 0.0312 0.0277 0.8625)) (bu h - (equal) (time . 25) (line-count . 8) (looseness-spread . 0.082) (bps q 9 16 23 32 39 46 54) (piece-count . 55) (avg-piece-length . 24.681090909090905) (avg-looseness . 0.0167) (looseness-sd . 0.027000657588364056) (looseness-variance . 0.0007290355102040815) (looses q 0.0017 -0.0075 0.0717 0.0023 -0.0103 0.0312 0.0277 0.8625)) (fh h - (equal) (time . 9) (line-count . 8) (looseness-spread . 0.082) (bps q 12 23 30 39 49 60 70) (piece-count . 71) (avg-piece-length . 19.119154929577466) (avg-looseness . 0.0167) (looseness-sd . 0.027000657588364056) (looseness-variance . 0.0007290355102040815) (looses q 0.0017 -0.0075 0.0717 0.0023 -0.0103 0.0312 0.0277 0.8625)) (fh-improved . 64) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since you was last this way.” The old inhabitant who answered was a tall, gaunt woman, who spoke tragically on the most trivial subject, and gave a phrase of her conversation to each auditor in turn. “He come from Mellstock, down in South Wessex, about a year ago—worse luck for ‘n, Belinda” (turning to the right) “where his father was living, and was took wi’ the shakings for death, and died in two days, as you know, Caroline” (turning to the left). “It would ha’ been a blessing if Goddy-mighty had took thee too, wi’ thy mother and father, poor useless boy! But I’ve got him here to stay with me till I can see what’s to be done with un, though I am obliged to let him earn any penny he can. Just now he’s a-scaring of birds for Farmer Troutham. It keeps him out of mischty. Why do ye turn away, Jude?” she continued, as the boy, feeling the impact of their glances like slaps upon his face, moved aside.") (measure . 210) (bh h - (equal) (time . 54) (line-count . 22) (looseness-spread . 0.1335) (bps q 9 17 26 36 47 59 68 77 86 96 105 116 126 135 146 157 167 177 186 197 206) (piece-count . 212) (avg-piece-length . 18.828971698113204) (avg-looseness . 0.0417) (looseness-sd . 0.03279110824667796) (looseness-variance . 0.0010752567800453516) (looses q 0.0461 0.0353 0.0373 0.0384 0.0343 0.0102 0.0087 0.0267 0.0711 0.1261 0.1126 0.0394 -0.0074 0.0483 0.0084 0.0232 0.0395 0.0707 0.0272 0.0069 0.0723 0.291)) (fu h - (equal) (time . 46) (line-count . 22) (looseness-spread . 0.1347) (bps q 9 17 25 33 42 49 56 65 73 81 90 98 107 115 126 137 147 156 164 173 181) (piece-count . 187) (avg-piece-length . 21.34621390374331) (avg-looseness . 0.0417) (looseness-sd . 0.03688739499201661) (looseness-variance . 0.001360679909297052) (looses q 0.0461 0.0353 0.0016 -0.0086 0.0321 0.095 0.0087 0.0267 0.0711 0.1261 0.1126 0.0394 -0.0074 0.0483 0.0084 0.0232 0.0395 0.0707 0.0272 0.0069 0.0723 0.291)) (bu h - (equal) (time . 38) (line-count . 22) (looseness-spread . 0.1335) (bps q 9 17 24 32 41 49 56 65 73 81 90 98 107 115 126 137 147 156 164 173 181) (piece-count . 187) (avg-piece-length . 21.34621390374331) (avg-looseness . 0.0417) (looseness-sd . 0.03279110824667796) (looseness-variance . 0.0010752567800453516) (looses q 0.0461 0.0353 0.0373 0.0384 0.0343 0.0102 0.0087 0.0267 0.0711 0.1261 0.1126 0.0394 -0.0074 0.0483 0.0084 0.0232 0.0395 0.0707 0.0272 0.0069 0.0723 0.291)) (fh h - (equal) (time . 41) (line-count . 22) (looseness-spread . 0.1347) (bps q 9 17 27 37 48 59 68 77 86 96 105 116 126 135 146 157 167 177 186 197 206) (piece-count . 212) (avg-piece-length . 18.828971698113204) (avg-looseness . 0.0417) (looseness-sd . 0.03688739499201661) (looseness-variance . 0.001360679909297052) (looses q 0.0461 0.0353 0.0016 -0.0086 0.0321 0.095 0.0087 0.0267 0.0711 0.1261 0.1126 0.0394 -0.0074 0.0483 0.0084 0.0232 0.0395 0.0707 0.0272 0.0069 0.0723 0.291)) (fh-improved . 298) (bu-improved . 3) (bh-improved . 3)) c (h - (equal) (text u . "The local washerwoman replied that it was perhaps a very good plan of Miss or Mrs. Fawley’s (as they called her indifferently) to have him with her—”to kip ‘ee company in your loneliness, fetch water, shet the winder-shetters o’ nights, and help in the bit o’ baking.”") (measure . 210) (bh h - (equal) (time . 10) (line-count . 7) (looseness-spread . 0.1234) (bps q 9 19 29 39 48 58) (piece-count . 60) (avg-piece-length . 18.324483333333337) (avg-looseness . 0.0787) (looseness-sd . 0.04399299186612946) (looseness-variance . 0.001935383333333333) (looses q 0.0637 0.1164 0.0453 0.054 0.0347 0.1581 0.8416)) (fu h - (equal) (time . 7) (line-count . 7) (looseness-spread . 0.1234) (bps q 7 16 23 32 39 48) (piece-count . 49) (avg-piece-length . 22.438142857142854) (avg-looseness . 0.0787) (looseness-sd . 0.04399299186612946) (looseness-variance . 0.001935383333333333) (looses q 0.0637 0.1164 0.0453 0.054 0.0347 0.1581 0.8416)) (bu h - (equal) (time . 10) (line-count . 7) (looseness-spread . 0.1234) (bps q 7 16 23 32 39 48) (piece-count . 49) (avg-piece-length . 22.438142857142854) (avg-looseness . 0.0787) (looseness-sd . 0.04399299186612946) (looseness-variance . 0.001935383333333333) (looses q 0.0637 0.1164 0.0453 0.054 0.0347 0.1581 0.8416)) (fh h - (equal) (time . 8) (line-count . 7) (looseness-spread . 0.0817) (bps q 9 19 29 39 48 59) (piece-count . 60) (avg-piece-length . 18.324483333333337) (avg-looseness . 0.0609) (looseness-sd . 0.026311763317742296) (looseness-variance . 0.000692308888888889) (looses q 0.0637 0.1164 0.0453 0.054 0.0347 0.0515 0.9171)) (fh-improved . 38) (bu-improved . 0) (bh-improved . 1)) c (h - (equal) (text u . "Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a better one. The boy is crazy for books, that he is. It runs in our family rather. His cousin Sue is just the same—so I’ve heard; but I have not seen the child for years, though she was born in this place, within these four walls, as it happened. My niece and her husband, after they were married, didn’ get a house of their own for some year or more; and then they only had one till—Well, I won’t go into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the Fawleys to take that step any more. She, their only one, was like a child o’ my own, Belinda, till the split come! Ah, that a little maid should know such changes!”") (measure . 210) (bh h - (equal) (time . 35) (line-count . 19) (looseness-spread . 0.1288) (bps q 8 19 29 39 50 61 70 80 89 98 107 117 126 135 143 153 163 173) (piece-count . 177) (avg-piece-length . 18.84115819209039) (avg-looseness . 0.0573) (looseness-sd . 0.03540373881699816) (looseness-variance . 0.001253424722222222) (looses q 0.0785 0.0132 0.0578 0.0215 0.0347 0.0333 0.0487 0.072 0.0582 0.0636 0.0558 0.0335 0.104 0.1228 0.0656 0.0103 0.0191 0.1391 0.3982)) (fu h - (equal) (time . 39) (line-count . 19) (looseness-spread . 0.1528) (bps q 8 15 24 30 40 50 58 68 77 85 93 102 111 121 129 138 148 157) (piece-count . 161) (avg-piece-length . 20.713571428571417) (avg-looseness . 0.0605) (looseness-sd . 0.04918429345047281) (looseness-variance . 0.0024190947222222222) (looses q -0.0008 0.0138 0.152 0.0215 0.0347 0.1317 0.1463 0.0247 0.0663 0.0206 0.0711 0.075 0.0682 0.0307 0.0656 0.0103 0.0191 0.1391 0.3982)) (bu h - (equal) (time . 32) (line-count . 19) (looseness-spread . 0.1528) (bps q 8 15 24 30 39 50 58 68 77 85 93 102 111 121 129 138 148 157) (piece-count . 161) (avg-piece-length . 20.713571428571417) (avg-looseness . 0.0605) (looseness-sd . 0.04645343247693209) (looseness-variance . 0.0021579213888888887) (looses q -0.0008 0.0138 0.152 0.0215 0.0819 0.0845 0.1463 0.0247 0.0663 0.0206 0.0711 0.075 0.0682 0.0307 0.0656 0.0103 0.0191 0.1391 0.3982)) (fh h - (equal) (time . 38) (line-count . 19) (looseness-spread . 0.1399) (bps q 9 20 30 40 50 61 71 81 89 98 107 117 126 135 143 153 163 173) (piece-count . 177) (avg-piece-length . 18.84115819209039) (avg-looseness . 0.058) (looseness-sd . 0.043841662354713366) (looseness-variance . 0.0019220913580246914) (looses q -0.0008 0.0138 0.0568 0.0355 0.0998 0.0333 0.0005 0.0574 0.1331 0.0636 0.0558 0.0335 0.104 0.1228 0.0656 0.0103 0.0191 0.1391 0.3982)) (fh-improved . 212) (bu-improved . 1) (bh-improved . 6)) c (h - (equal) (text u . "Jude, finding the general attention again centering on himself, went out to the bakehouse, where he ate the cake provided for his breakfast. The end of his spare time had now arrived, and emerging from the garden by getting over the hedge at the back he pursued a path northward, till he came to a wide and lonely depression in the general level of the upland, which was sown as a corn-field. This vast concave was the scene of his labours for Mr Troutham the farmer, and he descended into the midst of it.") (measure . 210) (bh h - (equal) (time . 37) (line-count . 12) (looseness-spread . 0.1292) (bps q 10 21 31 40 50 60 71 81 90 100 107) (piece-count . 111) (avg-piece-length . 18.720445945945947) (avg-looseness . 0.0488) (looseness-sd . 0.03369343070581078) (looseness-variance . 0.0011352472727272727) (looses q 0.0367 0.0302 0.0408 0.1416 0.0124 0.0781 0.0454 0.0578 0.0229 0.0326 0.0383 0.5934)) (fu h - (equal) (time . 13) (line-count . 12) (looseness-spread . 0.2067) (bps q 6 13 21 30 38 47 57 65 74 83 90) (piece-count . 94) (avg-piece-length . 22.1060585106383) (avg-looseness . 0.0519) (looseness-sd . 0.0582226987061584) (looseness-variance . 0.003389882644628099) (looses q 0.1294 0.1971 -0.0052 0.0514 -0.0096 0.0109 0.0454 0.0578 0.0229 0.0326 0.0383 0.5934)) (bu h - (equal) (time . 19) (line-count . 12) (looseness-spread . 0.2067) (bps q 6 13 21 30 38 47 57 65 74 83 90) (piece-count . 94) (avg-piece-length . 22.1060585106383) (avg-looseness . 0.0519) (looseness-sd . 0.0582226987061584) (looseness-variance . 0.003389882644628099) (looses q 0.1294 0.1971 -0.0052 0.0514 -0.0096 0.0109 0.0454 0.0578 0.0229 0.0326 0.0383 0.5934)) (fh h - (equal) (time . 14) (line-count . 12) (looseness-spread . 0.1292) (bps q 10 21 31 40 50 61 71 81 90 100 107) (piece-count . 111) (avg-piece-length . 18.720445945945947) (avg-looseness . 0.0488) (looseness-sd . 0.033970843113148984) (looseness-variance . 0.0011540181818181817) (looses q 0.0367 0.0302 0.0408 0.1416 0.0124 0.0425 0.081 0.0578 0.0229 0.0326 0.0383 0.5934)) (fh-improved . 138) (bu-improved . 0) (bh-improved . 1)) c (h - (equal) (text u . "The brown surface of the field went right up towards the sky all round, where it was lost by degrees in the mist that shut out the actual verge and accentuated the solitude. The only marks on the uniformity of the scene were a rick of last year’s produce standing in the midst of the arable, the rooks that rose at his approach, and the path athwart the fallow by which he had come, trodden now by he hardly knew whom, though once by many of his own dead family.") (measure . 210) (bh h - (equal) (time . 19) (line-count . 11) (looseness-spread . 0.0855) (bps q 10 19 29 39 49 60 70 79 89 98) (piece-count . 100) (avg-piece-length . 18.930609999999998) (avg-looseness . 0.0335) (looseness-sd . 0.026560054593317388) (looseness-variance . 0.0007054365) (looses q 0.0379 0.0616 0.0078 0.0194 0.0805 0.0636 0.0344 0.0296 -0.005 0.0057 0.7483)) (fu h - (equal) (time . 13) (line-count . 11) (looseness-spread . 0.1042) (bps q 9 19 28 35 44 52 62 70 79 88) (piece-count . 90) (avg-piece-length . 21.034011111111102) (avg-looseness . 0.0335) (looseness-sd . 0.030965311236930915) (looseness-variance . 0.0009588504999999999) (looses q 0.0379 -0.0017 0.0711 0.0194 0.0449 0.0992 0.0344 0.0296 -0.005 0.0057 0.7483)) (bu h - (equal) (time . 18) (line-count . 11) (looseness-spread . 0.0855) (bps q 9 18 28 35 43 52 62 70 79 88) (piece-count . 90) (avg-piece-length . 21.034011111111102) (avg-looseness . 0.0335) (looseness-sd . 0.026560054593317388) (looseness-variance . 0.0007054365) (looses q 0.0379 0.0616 0.0078 0.0194 0.0805 0.0636 0.0344 0.0296 -0.005 0.0057 0.7483)) (fh h - (equal) (time . 29) (line-count . 11) (looseness-spread . 0.1042) (bps q 10 20 29 39 50 60 70 79 89 98) (piece-count . 100) (avg-piece-length . 18.930609999999998) (avg-looseness . 0.0335) (looseness-sd . 0.030965311236930915) (looseness-variance . 0.0009588504999999999) (looses q 0.0379 -0.0017 0.0711 0.0194 0.0449 0.0992 0.0344 0.0296 -0.005 0.0057 0.7483)) (fh-improved . 58) (bu-improved . 2) (bh-improved . 2)) c (h - (equal) (text u . "The fresh harrow-lines seemed to stretch like the channellings in a piece of new corduroy, lending a meanly utilitarian air to the expanse, taking away its gradations, and depriving it of all history beyond that of the few recent months, though to every clod and stone there really attached associations enough and to spare—echoes of songs from ancient harvest-days, of spoken words, and of sturdy deeds. Every inch of ground had been the site, first or last, of energy, gaiety, horse-play, bickerings, weariness. Groups of gleaners had squatted in the sun on every square yard. Love-matches that had populated the adjoining hamlet had been made up there between reaping and carrying. Under the hedge which divided the field from a distant plantation girls had given themselves to lovers who would not turn their heads to look at them by the next harvest; and in that ancient cornfield many a man had made love-promises to a woman at whose voice he had trembled by the next seed-time after fulfilling them in the church adjoining. But this neither Jude nor the rooks around him considered. For them it was a lonely place, possessing, in the one view, only the quality of a work-ground, and in the other that of a granary good to feed in.") (measure . 210) (bh h - (equal) (time . 69) (line-count . 28) (looseness-spread . 0.1285) (bps q 9 19 31 42 52 60 69 77 86 95 104 113 122 131 140 150 161 170 180 189 198 208 218 228 238 248 259) (piece-count . 267) (avg-piece-length . 19.004589887640453) (avg-looseness . 0.0472) (looseness-sd . 0.03550639232233541) (looseness-variance . 0.0012607038957475993) (looses q 0.0132 0.0569 0.0059 0.0698 0.0793 0.0103 0.0845 0.0191 0.0646 0.0469 0.1128 0.0949 0.1184 0.038 0.0395 0.0119 -0.0101 -0.0017 0.0592 0.0639 0.0648 0.0619 0.0485 0.0161 0.0914 0.0074 0.0081 0.3053)) (fu h - (equal) (time . 48) (line-count . 29) (looseness-spread . 0.2331) (bps q 8 16 24 32 40 48 54 61 69 78 85 91 99 105 112 118 126 133 142 151 158 167 175 183 190 199 208 217) (piece-count . 220) (avg-piece-length . 23.064661363636375) (avg-looseness . 0.0706) (looseness-sd . 0.06347309358849526) (looseness-variance . 0.004028833609693878) (looses q 0.0132 0.0569 0.0059 0.0141 0.135 0.0103 0.0845 0.0191 0.0646 0.0469 0.2289 0.006 0.1184 0.1879 0.1 0.1052 0.0414 -0.0042 0.1005 0.025 0.2003 0.0508 0.0136 0.0024 0.0787 0.0239 0.1459 0.1011 0.6737)) (bu h - (equal) (time . 48) (line-count . 29) (looseness-spread . 0.1859) (bps q 7 15 22 29 38 45 51 59 66 74 83 89 97 104 111 117 125 131 140 150 158 167 175 183 190 198 208 217) (piece-count . 220) (avg-piece-length . 23.064661363636375) (avg-looseness . 0.0693) (looseness-sd . 0.04113306555111901) (looseness-variance . 0.0016919290816326531) (looses q 0.1022 0.1778 0.0569 0.0499 0.0547 0.1194 0.0582 0.0458 0.0634 0.0871 0.0797 0.0395 0.1006 -0.0081 0.1437 0.0615 0.121 0.0325 0.0598 0.0391 0.028 0.0508 0.0136 0.0024 0.0787 0.0901 0.0914 0.1011 0.6737)) (fh h - (equal) (time . 50) (line-count . 28) (looseness-spread . 0.1451) (bps q 9 19 31 43 52 60 69 77 86 95 105 114 123 132 141 150 161 170 180 190 199 208 218 228 238 248 259) (piece-count . 267) (avg-piece-length . 19.004589887640453) (avg-looseness . 0.0463) (looseness-sd . 0.04087562284797477) (looseness-variance . 0.0016708165432098767) (looses q 0.0132 0.0569 0.0059 0.0141 0.135 0.0103 0.0845 0.0191 0.0646 0.0469 0.0685 0.0064 0.0999 0.1002 0.0086 0.1071 -0.0101 -0.0017 0.0592 0.0282 0.0479 0.1145 0.0485 0.0161 0.0914 0.0074 0.0081 0.3053)) (fh-improved . 733) (bu-improved . 40) (bh-improved . 8)) c (h - (equal) (text u . "The boy stood under the rick before mentioned, and every few seconds used his clacker or rattle briskly. At each clack the rooks left off pecking, and rose and went away on their leisurely wings, burnished like tassets of mail, afterwards wheeling back and regarding him warily, and descending to feed at a more respectful distance.") (measure . 210) (bh h - (equal) (time . 14) (line-count . 8) (looseness-spread . 0.1542) (bps q 8 16 25 35 44 53 64) (piece-count . 69) (avg-piece-length . 19.823999999999995) (avg-looseness . 0.0656) (looseness-sd . 0.05553477307424748) (looseness-variance . 0.003084111020408163) (looses q 0.1041 0.1534 0.1058 -0.0006 -0.0008 0.0221 0.0755 0.4588)) (fu h - (equal) (time . 8) (line-count . 8) (looseness-spread . 0.2167) (bps q 7 14 22 31 38 44 51) (piece-count . 56) (avg-piece-length . 24.42600000000001) (avg-looseness . 0.0828) (looseness-sd . 0.0804611301771716) (looseness-variance . 0.006473993469387755) (looses q 0.2159 0.0577 0.1058 -0.0006 -0.0008 0.1777 0.0237 0.3705)) (bu h - (equal) (time . 12) (line-count . 8) (looseness-spread . 0.1965) (bps q 7 14 22 30 37 44 51) (piece-count . 56) (avg-piece-length . 24.42600000000001) (avg-looseness . 0.0828) (looseness-sd . 0.0652693070974374) (looseness-variance . 0.004260082448979592) (looses q 0.2159 0.0577 0.1058 0.1196 0.0372 0.0194 0.0237 0.3705)) (fh h - (equal) (time . 26) (line-count . 8) (looseness-spread . 0.1542) (bps q 8 16 25 35 44 53 64) (piece-count . 69) (avg-piece-length . 19.823999999999995) (avg-looseness . 0.0656) (looseness-sd . 0.05553477307424748) (looseness-variance . 0.003084111020408163) (looses q 0.1041 0.1534 0.1058 -0.0006 -0.0008 0.0221 0.0755 0.4588)) (fh-improved . 38) (bu-improved . 2) (bh-improved . 0)) c (h - (equal) (text u . "He sounded the clacker till his arm ached, and at length his heart grew sympathetic with the birds’ thwarted desires. They seemed, like himself, to be living in a world which did not want them. Why should he frighten them away? They took upon more and more the aspect of gentle friends and pensioners—the only friends he could claim as being in the least degree interested in him, for his aunt had often told him that she was not. He ceased his rattling, and they alighted anew.") (measure . 210) (bh h - (equal) (time . 20) (line-count . 11) (looseness-spread . 0.1028) (bps q 8 18 24 36 44 52 62 71 81 91) (piece-count . 97) (avg-piece-length . 20.275092783505155) (avg-looseness . 0.0418) (looseness-sd . 0.03934043848255889) (looseness-variance . 0.0015476701000000002) (looses q 0.0957 0.007 0.0907 0.0269 0.0147 0.0808 0.0253 0.0859 -0.0071 -0.0016 0.3145)) (fu h - (equal) (time . 13) (line-count . 11) (looseness-spread . 0.1084) (bps q 9 17 23 33 40 48 55 64 73 83) (piece-count . 88) (avg-piece-length . 22.34868181818182) (avg-looseness . 0.0395) (looseness-sd . 0.03942915165204547) (looseness-variance . 0.001554658) (looses q -0.0086 0.017 0.0726 0.0309 0.0998 0.0808 0.0253 0.0859 -0.0071 -0.0016 0.3145)) (bu h - (equal) (time . 18) (line-count . 11) (looseness-spread . 0.1028) (bps q 8 16 22 32 40 48 55 64 73 83) (piece-count . 88) (avg-piece-length . 22.34868181818182) (avg-looseness . 0.0418) (looseness-sd . 0.03934043848255889) (looseness-variance . 0.0015476701000000002) (looses q 0.0957 0.007 0.0907 0.0269 0.0147 0.0808 0.0253 0.0859 -0.0071 -0.0016 0.3145)) (fh h - (equal) (time . 30) (line-count . 11) (looseness-spread . 0.1084) (bps q 9 19 25 37 44 52 62 71 81 91) (piece-count . 97) (avg-piece-length . 20.275092783505155) (avg-looseness . 0.0395) (looseness-sd . 0.03942915165204547) (looseness-variance . 0.001554658) (looses q -0.0086 0.017 0.0726 0.0309 0.0998 0.0808 0.0253 0.0859 -0.0071 -0.0016 0.3145)) (fh-improved . 46) (bu-improved . 4) (bh-improved . 4)) c (h - (equal) (text u . "“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— you shall. There is enough for us all. Farmer Troutham can afford to let you have some. Eat, then my dear little birdies, and make a good meal!”") (measure . 210) (bh h - (equal) (time . 24) (line-count . 5) (looseness-spread . 0.0921) (bps q 8 16 24 34) (piece-count . 42) (avg-piece-length . 21.47077380952381) (avg-looseness . 0.0431) (looseness-sd . 0.042086599708220665) (looseness-variance . 0.001771281875) (looses q 0.0912 0.0035 0.0787 -0.0009 0.2094)) (fu h - (equal) (time . 6) (line-count . 5) (looseness-spread . 0.0921) (bps q 7 14 22 32) (piece-count . 39) (avg-piece-length . 23.122371794871793) (avg-looseness . 0.0431) (looseness-sd . 0.042086599708220665) (looseness-variance . 0.001771281875) (looses q 0.0912 0.0035 0.0787 -0.0009 0.2094)) (bu h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.0921) (bps q 7 14 22 32) (piece-count . 39) (avg-piece-length . 23.122371794871793) (avg-looseness . 0.0431) (looseness-sd . 0.042086599708220665) (looseness-variance . 0.001771281875) (looses q 0.0912 0.0035 0.0787 -0.0009 0.2094)) (fh h - (equal) (time . 6) (line-count . 5) (looseness-spread . 0.0921) (bps q 8 16 24 34) (piece-count . 42) (avg-piece-length . 21.47077380952381) (avg-looseness . 0.0431) (looseness-sd . 0.042086599708220665) (looseness-variance . 0.001771281875) (looses q 0.0912 0.0035 0.0787 -0.0009 0.2094)) (fh-improved . 7) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "They stayed and ate, inky spots on the nut-brown soil, and Jude enjoyed their appetite. A magic thread of fellow-feeling united his own life with theirs. Puny and sorry as those lives were, they much resembled his own.") (measure . 210) (bh h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.0741) (bps q 9 17 27 36) (piece-count . 42) (avg-piece-length . 21.34755952380953) (avg-looseness . 0.0315) (looseness-sd . 0.02737982834131726) (looseness-variance . 0.000749655) (looses q 0.076 0.0019 0.0201 0.028 0.2157)) (fu h - (equal) (time . 7) (line-count . 5) (looseness-spread . 0.0741) (bps q 9 17 25 34) (piece-count . 39) (avg-piece-length . 22.989679487179494) (avg-looseness . 0.0315) (looseness-sd . 0.02737982834131726) (looseness-variance . 0.000749655) (looses q 0.076 0.0019 0.0201 0.028 0.2157)) (bu h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.0741) (bps q 9 17 25 34) (piece-count . 39) (avg-piece-length . 22.989679487179494) (avg-looseness . 0.0315) (looseness-sd . 0.02737982834131726) (looseness-variance . 0.000749655) (looses q 0.076 0.0019 0.0201 0.028 0.2157)) (fh h - (equal) (time . 6) (line-count . 5) (looseness-spread . 0.0741) (bps q 9 17 27 36) (piece-count . 42) (avg-piece-length . 21.34755952380953) (avg-looseness . 0.0315) (looseness-sd . 0.02737982834131726) (looseness-variance . 0.000749655) (looses q 0.076 0.0019 0.0201 0.028 0.2157)) (fh-improved . 4) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "His clacker he had by this time thrown away from him, as being a mean and sordid instrument, offensive both to the birds and to himself as their friend. All at once he became conscious of a smart blow upon his buttocks, followed by a loud clack, which announced to his surprised senses that the clacker had been the instrument of offence used. The birds and Jude started up simultaneously, and the dazed eyes of the latter beheld the farmer in person, the great Troutham himself, his red face glaring down upon Jude’s cowering frame, the clacker swinging in his hand.") (measure . 210) (bh h - (equal) (time . 23) (line-count . 13) (looseness-spread . 0.1469) (bps q 9 19 28 38 48 57 66 75 85 96 105 114) (piece-count . 120) (avg-piece-length . 19.57299999999999) (avg-looseness . 0.0351) (looseness-sd . 0.0387834828460089) (looseness-variance . 0.0015041585416666666) (looses q 0.0405 0.039 0.1445 0.0165 0.0375 0.0118 0.01 0.0006 -0.0024 0.021 0.0268 0.0757 0.3854)) (fu h - (equal) (time . 15) (line-count . 13) (looseness-spread . 0.1906) (bps q 9 17 25 34 42 50 58 66 73 82 89 96) (piece-count . 101) (avg-piece-length . 23.255049504950488) (avg-looseness . 0.0377) (looseness-sd . 0.05519959930913347) (looseness-variance . 0.0030469957638888886) (looses q 0.0405 0.1838 0.0151 0.0165 0.0375 0.0118 0.01 0.0006 -0.0024 0.021 0.1247 -0.0068 0.3854)) (bu h - (equal) (time . 36) (line-count . 13) (looseness-spread . 0.1676) (bps q 8 17 25 34 42 50 58 66 73 82 89 96) (piece-count . 101) (avg-piece-length . 23.255049504950488) (avg-looseness . 0.0377) (looseness-sd . 0.050855448741178824) (looseness-variance . 0.0025862766666666665) (looses q 0.1608 0.0636 0.0151 0.0165 0.0375 0.0118 0.01 0.0006 -0.0024 0.021 0.1247 -0.0068 0.3854)) (fh h - (equal) (time . 17) (line-count . 13) (looseness-spread . 0.0902) (bps q 9 19 29 39 49 58 67 75 85 96 105 114) (piece-count . 120) (avg-piece-length . 19.57299999999999) (avg-looseness . 0.0303) (looseness-sd . 0.027471392948948833) (looseness-variance . 0.0007546774305555557) (looses q 0.0405 0.039 0.0433 0.0071 0.033 -0.0069 0.0031 0.0833 -0.0024 0.021 0.0268 0.0757 0.3854)) (fh-improved . 104) (bu-improved . 1) (bh-improved . 5)) c (h - (equal) (text u . "“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear birdies,’ indeed! I’ll tickle your breeches, and see if you say, ‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s how you earn your sixpence a day for keeping the rooks off my corn!”") (measure . 210) (bh h - (equal) (time . 13) (line-count . 8) (looseness-spread . 0.1225) (bps q 9 16 25 33 42 51 62) (piece-count . 65) (avg-piece-length . 20.546430769230764) (avg-looseness . 0.0576) (looseness-sd . 0.036651580693701856) (looseness-variance . 0.0013433383673469388) (looses q 0.1169 0.0745 0.0482 0.0683 0.0759 0.0249 -0.0056 0.7277)) (fu h - (equal) (time . 24) (line-count . 8) (looseness-spread . 0.1225) (bps q 9 16 25 33 40 48 57) (piece-count . 60) (avg-piece-length . 22.25863333333333) (avg-looseness . 0.0576) (looseness-sd . 0.036651580693701856) (looseness-variance . 0.0013433383673469388) (looses q 0.1169 0.0745 0.0482 0.0683 0.0759 0.0249 -0.0056 0.7277)) (bu h - (equal) (time . 12) (line-count . 8) (looseness-spread . 0.1225) (bps q 9 16 25 33 40 48 57) (piece-count . 60) (avg-piece-length . 22.25863333333333) (avg-looseness . 0.0576) (looseness-sd . 0.036651580693701856) (looseness-variance . 0.0013433383673469388) (looses q 0.1169 0.0745 0.0482 0.0683 0.0759 0.0249 -0.0056 0.7277)) (fh h - (equal) (time . 9) (line-count . 8) (looseness-spread . 0.1225) (bps q 9 16 25 33 42 51 62) (piece-count . 65) (avg-piece-length . 20.546430769230764) (avg-looseness . 0.0576) (looseness-sd . 0.036651580693701856) (looseness-variance . 0.0013433383673469388) (looses q 0.1169 0.0745 0.0482 0.0683 0.0759 0.0249 -0.0056 0.7277)) (fh-improved . 10) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham had seized his left hand with his own left, and swinging his slim frame round him at arm’s-length, again struck Jude on the hind parts with the flat side of Jude’s own rattle, till the field echoed with the blows, which were delivered once or twice at each revolution.") (measure . 210) (bh h - (equal) (time . 12) (line-count . 8) (looseness-spread . 0.0891) (bps q 8 15 25 33 43 52 61) (piece-count . 67) (avg-piece-length . 20.503298507462688) (avg-looseness . 0.0369) (looseness-sd . 0.03437851132344631) (looseness-variance . 0.0011818820408163264) (looses q 0.0669 0.0187 0.0222 -0.0025 0.0848 0.0727 -0.0043 0.6074)) (fu h - (equal) (time . 11) (line-count . 8) (looseness-spread . 0.1912) (bps q 6 11 20 28 37 46 53) (piece-count . 59) (avg-piece-length . 23.283406779661018) (avg-looseness . 0.0845) (looseness-sd . 0.061088994967362566) (looseness-variance . 0.003731865306122449) (looses q 0.2128 0.0493 0.0419 0.1047 0.0472 0.1137 0.0216 0.3025)) (bu h - (equal) (time . 27) (line-count . 8) (looseness-spread . 0.1912) (bps q 6 11 20 28 37 46 53) (piece-count . 59) (avg-piece-length . 23.283406779661018) (avg-looseness . 0.0845) (looseness-sd . 0.061088994967362566) (looseness-variance . 0.003731865306122449) (looses q 0.2128 0.0493 0.0419 0.1047 0.0472 0.1137 0.0216 0.3025)) (fh h - (equal) (time . 9) (line-count . 8) (looseness-spread . 0.0891) (bps q 8 15 25 33 43 52 61) (piece-count . 67) (avg-piece-length . 20.503298507462688) (avg-looseness . 0.0369) (looseness-sd . 0.03437851132344631) (looseness-variance . 0.0011818820408163264) (looses q 0.0669 0.0187 0.0222 -0.0025 0.0848 0.0727 -0.0043 0.6074)) (fh-improved . 36) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as helpless under the centrifugal tendency of his person as a hooked fish swinging to land, and beholding the hill, the rick, the plantation, the path, and the rooks going round and round him in an amazing circular race. “I—I sir—only meant that—there was a good crop in the ground—I saw ‘em sow it—and the rooks could have a little bit for dinner—and you wouldn’t miss it, sir—and Mr. Phillotson said I was to be kind to ‘em—oh, oh, oh!”") (measure . 210) (bh h - (equal) (time . 21) (line-count . 12) (looseness-spread . 0.0834) (bps q 8 17 28 38 48 58 68 78 89 98 109) (piece-count . 112) (avg-piece-length . 17.802) (avg-looseness . 0.0488) (looseness-sd . 0.025166782514830146) (looseness-variance . 0.0006333669421487604) (looses q 0.0439 0.0253 0.0767 0.0453 0.0575 0.0167 0.0015 0.079 0.0546 0.0516 0.0849 0.6322)) (fu h - (equal) (time . 13) (line-count . 12) (looseness-spread . 0.2192) (bps q 8 14 22 30 38 46 54 64 74 82 92) (piece-count . 97) (avg-piece-length . 20.554886597938147) (avg-looseness . 0.0688) (looseness-sd . 0.06311345942293592) (looseness-variance . 0.003983308760330579) (looses q 0.0439 0.2137 -0.0055 0.0489 0.1063 0.1524 0.0192 0.0027 0.0455 0.0492 0.0803 0.4512)) (bu h - (equal) (time . 36) (line-count . 12) (looseness-spread . 0.1398) (bps q 7 14 22 29 37 46 54 63 73 82 92) (piece-count . 97) (avg-piece-length . 20.554886597938147) (avg-looseness . 0.0666) (looseness-sd . 0.04840539209087222) (looseness-variance . 0.0023430819834710744) (looses q 0.1265 0.1311 -0.0055 0.1343 0.0919 0.0698 0.0192 0.0207 0.051 0.0136 0.0803 0.4512)) (fh h - (equal) (time . 14) (line-count . 12) (looseness-spread . 0.0834) (bps q 8 17 28 38 48 58 68 78 89 98 109) (piece-count . 112) (avg-piece-length . 17.802) (avg-looseness . 0.0488) (looseness-sd . 0.025166782514830146) (looseness-variance . 0.0006333669421487604) (looses q 0.0439 0.0253 0.0767 0.0453 0.0575 0.0167 0.0015 0.079 0.0546 0.0516 0.0849 0.6322)) (fh-improved . 115) (bu-improved . 5) (bh-improved . 0)) c (h - (equal) (text u . "This truthful explanation seemed to exasperate the farmer even more than if Jude had stoutly denied saying anything at all, and he still smacked the whirling urchin, the clacks of the instrument continuing to resound all across the field and as far as the ears of distant workers—who gathered thereupon that Jude was pursuing his business of clacking with great assiduity—and echoing from the brand-new church tower just behind the mist, towards the building of which structure the farmer had largely subscribed, to testify his love for God and man.") (measure . 210) (bh h - (equal) (time . 40) (line-count . 13) (looseness-spread . 0.0792) (bps q 10 19 29 36 47 58 67 78 86 94 103 112) (piece-count . 116) (avg-piece-length . 19.530073275862062) (avg-looseness . 0.0566) (looseness-sd . 0.020881085274051782) (looseness-variance . 0.00043601972222222224) (looses q 0.0334 0.0965 0.0496 0.0463 0.0637 0.078 0.0393 0.0803 0.0555 0.0173 0.0573 0.0622 0.5242)) (fu h - (equal) (time . 29) (line-count . 13) (looseness-spread . 0.2257) (bps q 5 13 21 28 34 44 50 57 64 72 79 86) (piece-count . 92) (avg-piece-length . 24.624875) (avg-looseness . 0.077) (looseness-sd . 0.07743270689587328) (looseness-variance . 0.005995824097222223) (looses q 0.215 0.023 0.0226 0.1248 0.1729 0.0609 0.1563 -0.0107 0.0099 0.0101 0.1475 -0.0088 0.2998)) (bu h - (equal) (time . 19) (line-count . 13) (looseness-spread . 0.2257) (bps q 5 12 19 27 34 43 50 57 64 72 79 86) (piece-count . 92) (avg-piece-length . 24.624875) (avg-looseness . 0.0779) (looseness-sd . 0.06885812053700631) (looseness-variance . 0.004741440763888889) (looses q 0.215 0.1353 0.0811 0.0483 0.0903 0.1436 0.0737 -0.0107 0.0099 0.0101 0.1475 -0.0088 0.2998)) (fh h - (equal) (time . 17) (line-count . 13) (looseness-spread . 0.1699) (bps q 10 19 29 37 47 59 68 79 87 94 103 112) (piece-count . 116) (avg-piece-length . 19.530073275862062) (avg-looseness . 0.0581) (looseness-sd . 0.04814669424443039) (looseness-variance . 0.0023181041666666667) (looses q 0.0334 0.0965 0.0496 -0.0094 0.1194 -0.0052 0.0257 0.0828 0.0238 0.1605 0.0573 0.0622 0.5242)) (fh-improved . 191) (bu-improved . 5) (bh-improved . 5)) c (h - (equal) (text u . "Presently Troutham grew tired of his punitive task, and depositing the quivering boy on his legs, took a sixpence from his pocket and gave it him in payment for his day’s work, telling him to go home and never let him see him in one of those fields again.") (measure . 210) (bh h - (equal) (time . 10) (line-count . 6) (looseness-spread . 0.0506) (bps q 8 19 29 39 50) (piece-count . 55) (avg-piece-length . 18.821527272727277) (avg-looseness . 0.0225) (looseness-sd . 0.019272944767211884) (looseness-variance . 0.00037144639999999997) (looses q 0.0017 0.0291 -0.0003 0.0503 0.0319 0.4746)) (fu h - (equal) (time . 7) (line-count . 6) (looseness-spread . 0.0506) (bps q 7 15 24 33 44) (piece-count . 49) (avg-piece-length . 21.126204081632654) (avg-looseness . 0.0225) (looseness-sd . 0.019272944767211884) (looseness-variance . 0.00037144639999999997) (looses q 0.0017 0.0291 -0.0003 0.0503 0.0319 0.4746)) (bu h - (equal) (time . 9) (line-count . 6) (looseness-spread . 0.0506) (bps q 7 15 24 33 44) (piece-count . 49) (avg-piece-length . 21.126204081632654) (avg-looseness . 0.0225) (looseness-sd . 0.019272944767211884) (looseness-variance . 0.00037144639999999997) (looses q 0.0017 0.0291 -0.0003 0.0503 0.0319 0.4746)) (fh h - (equal) (time . 7) (line-count . 6) (looseness-spread . 0.0506) (bps q 8 19 29 39 50) (piece-count . 55) (avg-piece-length . 18.821527272727277) (avg-looseness . 0.0225) (looseness-sd . 0.019272944767211884) (looseness-variance . 0.00037144639999999997) (looses q 0.0017 0.0291 -0.0003 0.0503 0.0319 0.4746)) (fh-improved . 22) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Jude leaped out of arm’s reach, and walked along the trackway weeping—not from the pain, though that was keen enough; not from the perception of the flaw in the terrestrial scheme, by which what was good for God’s birds was bad for God’s gardener; but with the awful sense that he had wholly disgraced himself before he had been a year in the parish, and hence might be a burden to his great-aunt for life.") (measure . 210) (bh h - (equal) (time . 17) (line-count . 10) (looseness-spread . 0.1158) (bps q 8 17 25 37 45 54 63 73 83) (piece-count . 87) (avg-piece-length . 19.24425862068965) (avg-looseness . 0.0671) (looseness-sd . 0.030930962552827946) (looseness-variance . 0.0009567244444444446) (looses q 0.0648 0.0681 0.022 0.0772 0.0563 0.0684 0.0319 0.1378 0.0777 0.6187)) (fu h - (equal) (time . 11) (line-count . 10) (looseness-spread . 0.1158) (bps q 8 15 23 31 39 47 55 64 73) (piece-count . 77) (avg-piece-length . 21.743512987012977) (avg-looseness . 0.0671) (looseness-sd . 0.030930962552827946) (looseness-variance . 0.0009567244444444446) (looses q 0.0648 0.0681 0.022 0.0772 0.0563 0.0684 0.0319 0.1378 0.0777 0.6187)) (bu h - (equal) (time . 30) (line-count . 10) (looseness-spread . 0.1158) (bps q 8 15 23 31 39 47 55 64 73) (piece-count . 77) (avg-piece-length . 21.743512987012977) (avg-looseness . 0.0671) (looseness-sd . 0.030930962552827946) (looseness-variance . 0.0009567244444444446) (looses q 0.0648 0.0681 0.022 0.0772 0.0563 0.0684 0.0319 0.1378 0.0777 0.6187)) (fh h - (equal) (time . 11) (line-count . 10) (looseness-spread . 0.1158) (bps q 8 17 25 37 45 54 63 73 83) (piece-count . 87) (avg-piece-length . 19.24425862068965) (avg-looseness . 0.0671) (looseness-sd . 0.030930962552827946) (looseness-variance . 0.0009567244444444446) (looses q 0.0648 0.0681 0.022 0.0772 0.0563 0.0684 0.0319 0.1378 0.0777 0.6187)) (fh-improved . 50) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "With this shadow on his mind he did not care to show himself in the village, and went homeward by a roundabout track behind a high hedge and across a pasture. Here he beheld scores of coupled earthworms lying half their length on the surface of the damp ground, as they always did in such weather at that time of the year. It was impossible to advance in regular steps without crushing some of them at each tread.") (measure . 210) (bh h - (equal) (time . 17) (line-count . 10) (looseness-spread . 0.0795) (bps q 9 20 29 38 46 56 64 75 86) (piece-count . 92) (avg-piece-length . 18.551874999999995) (avg-looseness . 0.0761) (looseness-sd . 0.028513193827107867) (looseness-variance . 0.0008130022222222222) (looses q 0.1155 0.036 0.0835 0.1079 0.0695 0.0572 0.0703 0.1086 0.0361 0.4101)) (fu h - (equal) (time . 13) (line-count . 10) (looseness-spread . 0.1275) (bps q 10 18 25 33 39 48 57 66 72) (piece-count . 78) (avg-piece-length . 21.881698717948716) (avg-looseness . 0.0761) (looseness-sd . 0.03962073281926778) (looseness-variance . 0.0015698024691358026) (looses q 0.012 0.1395 0.0835 0.1079 0.0695 0.0572 0.0176 0.1055 0.0918 0.4101)) (bu h - (equal) (time . 1085) (line-count . 10) (looseness-spread . 0.0795) (bps q 9 18 25 33 39 48 56 65 72) (piece-count . 78) (avg-piece-length . 21.881698717948716) (avg-looseness . 0.0761) (looseness-sd . 0.028513193827107867) (looseness-variance . 0.0008130022222222222) (looses q 0.1155 0.036 0.0835 0.1079 0.0695 0.0572 0.0703 0.1086 0.0361 0.4101)) (fh h - (equal) (time . 11) (line-count . 10) (looseness-spread . 0.1275) (bps q 10 20 29 38 46 56 65 76 86) (piece-count . 92) (avg-piece-length . 18.551874999999995) (avg-looseness . 0.0761) (looseness-sd . 0.03962073281926778) (looseness-variance . 0.0015698024691358026) (looses q 0.012 0.1395 0.0835 0.1079 0.0695 0.0572 0.0176 0.1055 0.0918 0.4101)) (fh-improved . 58) (bu-improved . 3) (bh-improved . 3)) c (h - (equal) (text u . "Though Farmer Troutham had just hurt him, he was a boy who could not himself bear to hurt anything. He had never brought home a nest of young birds without lying awake in misery half the night after, and often reinstating them and the nest in their original place the next morning. He could scarcely bear to see trees cut down or lopped, from a fancy that it hurt them; and late pruning, when the sap was up and the tree bled profusely, had been a positive grief to him in his infancy. This weakness of character, as it may be called, suggested that he was the sort of man who was born to ache a good deal before the fall of the curtain upon his unnecessary life should signify that all was well with him again. He carefully picked his way on tiptoe among the earthworms, without killing a single one.") (measure . 210) (bh h - (equal) (time . 35) (line-count . 18) (looseness-spread . 0.1311) (bps q 7 18 26 36 46 57 66 75 85 95 106 117 127 137 148 158 168) (piece-count . 177) (avg-piece-length . 18.446454802259886) (avg-looseness . 0.0528) (looseness-sd . 0.03152251241457977) (looseness-variance . 0.0009936687889273356) (looses q 0.0225 0.066 0.0647 0.0491 0.0245 0.0524 0.0474 0.0762 0.0249 0.0659 0.1093 0.1305 0.0275 0.0404 0.0626 -0.0006 0.0342 0.0411)) (fu h - (equal) (time . 1073) (line-count . 19) (looseness-spread . 0.2122) (bps q 7 17 25 33 40 48 55 65 73 82 91 99 108 118 126 133 141 148) (piece-count . 151) (avg-piece-length . 21.62266556291391) (avg-looseness . 0.0756) (looseness-sd . 0.060691871036214914) (looseness-variance . 0.0036835032098765427) (looses q 0.0225 0.066 0.0291 0.0848 0.2055 0.0131 0.0831 0.0436 0.1212 0.1716 0.0367 0.0385 0.0245 0.1096 0.1934 0.075 0.0495 -0.0067 0.5948)) (bu h - (equal) (time . 30) (line-count . 19) (looseness-spread . 0.1783) (bps q 7 17 24 32 40 48 55 64 73 82 91 98 107 117 126 133 141 148) (piece-count . 151) (avg-piece-length . 21.62266556291391) (avg-looseness . 0.0756) (looseness-sd . 0.043174020895058104) (looseness-variance . 0.0018639960802469139) (looses q 0.0225 0.066 0.0647 0.1037 0.151 0.0131 0.0831 0.0792 0.0856 0.1716 0.0367 0.082 0.0787 0.1144 0.0908 0.075 0.0495 -0.0067 0.5948)) (fh h - (equal) (time . 37) (line-count . 18) (looseness-spread . 0.1311) (bps q 7 18 27 36 46 57 66 75 85 95 106 117 127 137 148 158 168) (piece-count . 177) (avg-piece-length . 18.446454802259886) (avg-looseness . 0.0528) (looseness-sd . 0.032830007794161516) (looseness-variance . 0.001077809411764706) (looses q 0.0225 0.066 0.0291 0.0848 0.0245 0.0524 0.0474 0.0762 0.0249 0.0659 0.1093 0.1305 0.0275 0.0404 0.0626 -0.0006 0.0342 0.0411)) (fh-improved . 212) (bu-improved . 6) (bh-improved . 1)) c (h - (equal) (text u . "On entering the cottage he found his aunt selling a penny loaf to a little girl, and when the customer was gone she said, “Well, how do you come to be back here in the middle of the morning like this?”") (measure . 210) (bh h - (equal) (time . 10) (line-count . 5) (looseness-spread . 0.0455) (bps q 11 23 32 44) (piece-count . 48) (avg-piece-length . 16.973041666666667) (avg-looseness . 0.0277) (looseness-sd . 0.020317603205102713) (looseness-variance . 0.00041280500000000003) (looses q 0.0048 0.0454 0.0503 0.0103 0.6049)) (fu h - (equal) (time . 6) (line-count . 5) (looseness-spread . 0.0685) (bps q 8 18 26 37) (piece-count . 41) (avg-piece-length . 19.870878048780487) (avg-looseness . 0.0522) (looseness-sd . 0.026255332791644444) (looseness-variance . 0.0006893425000000001) (looses q 0.094 0.0544 0.0351 0.0255 0.5222)) (bu h - (equal) (time . 7) (line-count . 5) (looseness-spread . 0.0685) (bps q 8 18 26 37) (piece-count . 41) (avg-piece-length . 19.870878048780487) (avg-looseness . 0.0522) (looseness-sd . 0.026255332791644444) (looseness-variance . 0.0006893425000000001) (looses q 0.094 0.0544 0.0351 0.0255 0.5222)) (fh h - (equal) (time . 7) (line-count . 5) (looseness-spread . 0.0455) (bps q 11 23 32 44) (piece-count . 48) (avg-piece-length . 16.973041666666667) (avg-looseness . 0.0277) (looseness-sd . 0.020317603205102713) (looseness-variance . 0.00041280500000000003) (looses q 0.0048 0.0454 0.0503 0.0103 0.6049)) (fh-improved . 21) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Mr. Troutham have turned me away because I let the rooks have a few peckings of corn. And there’s my wages—the last I shall ever hae!”") (measure . 210) (bh h - (equal) (time . 6) (line-count . 4) (looseness-spread . 0.1881) (bps q 6 17 26) (piece-count . 28) (avg-piece-length . 20.311464285714287) (avg-looseness . 0.0855) (looseness-sd . 0.0856666796368343) (looseness-variance . 0.0073387800000000005) (looses q 0.2064 0.0183 0.0318 0.7965)) (fu h - (equal) (time . 4) (line-count . 4) (looseness-spread . 0.1881) (bps q 6 16 25) (piece-count . 27) (avg-piece-length . 21.06374074074074) (avg-looseness . 0.0855) (looseness-sd . 0.0856666796368343) (looseness-variance . 0.0073387800000000005) (looses q 0.2064 0.0183 0.0318 0.7965)) (bu h - (equal) (time . 6) (line-count . 4) (looseness-spread . 0.1881) (bps q 6 16 25) (piece-count . 27) (avg-piece-length . 21.06374074074074) (avg-looseness . 0.0855) (looseness-sd . 0.0856666796368343) (looseness-variance . 0.0073387800000000005) (looses q 0.2064 0.0183 0.0318 0.7965)) (fh h - (equal) (time . 4) (line-count . 4) (looseness-spread . 0.1881) (bps q 6 17 26) (piece-count . 28) (avg-piece-length . 20.311464285714287) (avg-looseness . 0.0855) (looseness-sd . 0.0856666796368343) (looseness-variance . 0.0073387800000000005) (looses q 0.2064 0.0183 0.0318 0.7965)) (fh-improved . 2) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Ah!” said his aunt, suspending her breath. And she opened upon him a lecture on how she would now have him all the spring upon her hands doing nothing. “If you can’t skeer birds, what can ye do? There! don’t ye look so deedy! Farmer Troutham is not so much better than myself, come to that. But ‘tis as Job said, ‘Now they that are younger than I have me in derision, whose fathers I would have disdained to have set with the dogs of my flock.’ His father was my father’s journeyman, anyhow, and I must have been a fool to let ‘ee go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of mischty.”") (measure . 210) (bh h - (equal) (time . 39) (line-count . 14) (looseness-spread . 0.0707) (bps q 9 19 28 37 46 54 64 73 82 92 101 112 122) (piece-count . 132) (avg-piece-length . 19.122496212121213) (avg-looseness . 0.0542) (looseness-sd . 0.018294785366263062) (looseness-variance . 0.0003346991715976331) (looses q 0.0857 0.0505 0.0439 0.0339 0.0555 0.0522 0.0589 0.0585 0.0702 0.0701 0.015 0.036 0.0743 0.1361)) (fu h - (equal) (time . 33) (line-count . 15) (looseness-spread . 0.2007) (bps q 7 16 25 33 43 50 59 68 76 85 92 100 111 120) (piece-count . 121) (avg-piece-length . 20.860904958677686) (avg-looseness . 0.0752) (looseness-sd . 0.05027014420070011) (looseness-variance . 0.0025270873979591833) (looses q 0.0857 0.0505 0.0439 0.0339 -0.0048 0.1125 0.0589 0.0585 0.0702 0.0701 0.1959 0.0213 0.1445 0.1114 0.8146)) (bu h - (equal) (time . 24) (line-count . 15) (looseness-spread . 0.1063) (bps q 7 16 25 33 42 50 59 68 76 84 92 99 111 120) (piece-count . 121) (avg-piece-length . 20.860904958677686) (avg-looseness . 0.0752) (looseness-sd . 0.03213672084283977) (looseness-variance . 0.001032768826530612) (looses q 0.0857 0.0505 0.0439 0.0339 0.0555 0.0522 0.0589 0.0585 0.0702 0.1258 0.1402 0.0569 0.1089 0.1114 0.8146)) (fh h - (equal) (time . 17) (line-count . 14) (looseness-spread . 0.1076) (bps q 9 19 28 37 47 55 65 74 83 93 101 112 122) (piece-count . 132) (avg-piece-length . 19.122496212121213) (avg-looseness . 0.053) (looseness-sd . 0.029609002309288965) (looseness-variance . 0.0008766930177514793) (looses q 0.0857 0.0505 0.0439 0.0339 -0.0048 0.0286 0.043 0.0298 0.0702 0.1028 0.0952 0.036 0.0743 0.1361)) (fh-improved . 80) (bu-improved . 3) (bh-improved . 6)) c (h - (equal) (text u . "More angry with Jude for demeaning her by coming there than for dereliction of duty, she rated him primarily from that point of view, and only secondarily from a moral one.") (measure . 210) (bh h - (equal) (time . 7) (line-count . 4) (looseness-spread . 0.0505) (bps q 9 20 30) (piece-count . 39) (avg-piece-length . 18.52089743589744) (avg-looseness . 0.0409) (looseness-sd . 0.020839545740410626) (looseness-variance . 0.0004342866666666667) (looses q 0.0452 0.0135 0.064 0.1634)) (fu h - (equal) (time . 4) (line-count . 4) (looseness-spread . 0.0505) (bps q 8 16 24) (piece-count . 30) (avg-piece-length . 24.077166666666663) (avg-looseness . 0.0409) (looseness-sd . 0.020839545740410626) (looseness-variance . 0.0004342866666666667) (looses q 0.0452 0.0135 0.064 0.1634)) (bu h - (equal) (time . 6) (line-count . 4) (looseness-spread . 0.0505) (bps q 8 16 24) (piece-count . 30) (avg-piece-length . 24.077166666666663) (avg-looseness . 0.0409) (looseness-sd . 0.020839545740410626) (looseness-variance . 0.0004342866666666667) (looses q 0.0452 0.0135 0.064 0.1634)) (fh h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.0505) (bps q 9 20 30) (piece-count . 39) (avg-piece-length . 18.52089743589744) (avg-looseness . 0.0409) (looseness-sd . 0.020839545740410626) (looseness-variance . 0.0004342866666666667) (looses q 0.0452 0.0135 0.064 0.1634)) (fh-improved . 11) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Not that you should have let the birds eat what Farmer Troutham planted. Of course you was wrong in that. Jude, Jude, why didstn’t go off with that schoolmaster of thine to Christminster or somewhere? But, oh no—poor or’nary child—there never was any sprawl on thy side of the family, and never will be!”") (measure . 210) (bh h - (equal) (time . 11) (line-count . 8) (looseness-spread . 0.0951) (bps q 9 15 24 35 44 51 61) (piece-count . 62) (avg-piece-length . 20.614677419354845) (avg-looseness . 0.0699) (looseness-sd . 0.02839141865179027) (looseness-variance . 0.0008060726530612245) (looses q 0.0941 0.0681 0.0652 0.0157 0.0534 0.1108 0.0821 0.8358)) (fu h - (equal) (time . 9) (line-count . 8) (looseness-spread . 0.1539) (bps q 9 15 23 31 38 45 54) (piece-count . 55) (avg-piece-length . 23.238363636363637) (avg-looseness . 0.0721) (looseness-sd . 0.05218722965223878) (looseness-variance . 0.00272350693877551) (looses q 0.0941 0.0681 0.1515 0.0006 -0.0024 0.1108 0.0821 0.8358)) (bu h - (equal) (time . 24) (line-count . 8) (looseness-spread . 0.1556) (bps q 9 15 23 30 37 45 54) (piece-count . 55) (avg-piece-length . 23.238363636363637) (avg-looseness . 0.0738) (looseness-sd . 0.05457384811390144) (looseness-variance . 0.0029783048979591838) (looses q 0.0941 0.0681 0.1515 0.1257 -0.0041 -0.0006 0.0821 0.8358)) (fh h - (equal) (time . 9) (line-count . 8) (looseness-spread . 0.0951) (bps q 9 15 24 35 44 51 61) (piece-count . 62) (avg-piece-length . 20.614677419354845) (avg-looseness . 0.0699) (looseness-sd . 0.02839141865179027) (looseness-variance . 0.0008060726530612245) (looses q 0.0941 0.0681 0.0652 0.0157 0.0534 0.1108 0.0821 0.8358)) (fh-improved . 24) (bu-improved . 2) (bh-improved . 0)) c (h - (equal) (text u . "“Where is this beautiful city, Aunt—this place where Mr. Phillotson is gone to?” asked the boy, after meditating in silence.") (measure . 210) (bh h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.132) (bps q 9 18) (piece-count . 27) (avg-piece-length . 18.773111111111113) (avg-looseness . 0.0692) (looseness-sd . 0.066) (looseness-variance . 0.004356) (looses q 0.1352 0.0032 0.2464)) (fu h - (equal) (time . 3) (line-count . 3) (looseness-spread . 0.132) (bps q 7 15) (piece-count . 21) (avg-piece-length . 24.136857142857142) (avg-looseness . 0.0692) (looseness-sd . 0.066) (looseness-variance . 0.004356) (looses q 0.1352 0.0032 0.2464)) (bu h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.132) (bps q 7 15) (piece-count . 21) (avg-piece-length . 24.136857142857142) (avg-looseness . 0.0692) (looseness-sd . 0.066) (looseness-variance . 0.004356) (looses q 0.1352 0.0032 0.2464)) (fh h - (equal) (time . 3) (line-count . 3) (looseness-spread . 0.132) (bps q 9 18) (piece-count . 27) (avg-piece-length . 18.773111111111113) (avg-looseness . 0.0692) (looseness-sd . 0.066) (looseness-variance . 0.004356) (looses q 0.1352 0.0032 0.2464)) (fh-improved . 5) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Lord! you ought to know where the city of Christminster is. Near a score of miles from here. It is a place much too good for you ever to have much to do with, poor boy, I’m a-thinking.”") (measure . 210) (bh h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.09) (bps q 9 19 30 40) (piece-count . 42) (avg-piece-length . 18.068964285714287) (avg-looseness . 0.0626) (looseness-sd . 0.033755999466761465) (looseness-variance . 0.0011394675) (looses q 0.073 0.0436 0.022 0.112 0.803)) (fu h - (equal) (time . 6) (line-count . 5) (looseness-spread . 0.09) (bps q 9 17 28 38) (piece-count . 39) (avg-piece-length . 19.458884615384616) (avg-looseness . 0.0626) (looseness-sd . 0.033755999466761465) (looseness-variance . 0.0011394675) (looses q 0.073 0.0436 0.022 0.112 0.803)) (bu h - (equal) (time . 7) (line-count . 5) (looseness-spread . 0.09) (bps q 9 17 28 38) (piece-count . 39) (avg-piece-length . 19.458884615384616) (avg-looseness . 0.0626) (looseness-sd . 0.033755999466761465) (looseness-variance . 0.0011394675) (looses q 0.073 0.0436 0.022 0.112 0.803)) (fh h - (equal) (time . 21) (line-count . 5) (looseness-spread . 0.09) (bps q 9 19 30 40) (piece-count . 42) (avg-piece-length . 18.068964285714287) (avg-looseness . 0.0626) (looseness-sd . 0.033755999466761465) (looseness-variance . 0.0011394675) (looses q 0.073 0.0436 0.022 0.112 0.803)) (fh-improved . 6) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as that. We’ve never had anything to do with folk in Christminster, nor folk in Christminster with we.”") (measure . 210) (bh h - (equal) (time . 6) (line-count . 4) (looseness-spread . 0.0397) (bps q 9 17 28) (piece-count . 35) (avg-piece-length . 20.56594285714286) (avg-looseness . 0.0393) (looseness-sd . 0.016735789992308896) (looseness-variance . 0.0002800866666666666) (looses q 0.0452 0.0562 0.0165 0.2583)) (fu h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.0397) (bps q 8 16 24) (piece-count . 29) (avg-piece-length . 24.820965517241376) (avg-looseness . 0.0393) (looseness-sd . 0.016735789992308896) (looseness-variance . 0.0002800866666666666) (looses q 0.0452 0.0562 0.0165 0.2583)) (bu h - (equal) (time . 6) (line-count . 4) (looseness-spread . 0.0397) (bps q 8 16 24) (piece-count . 29) (avg-piece-length . 24.820965517241376) (avg-looseness . 0.0393) (looseness-sd . 0.016735789992308896) (looseness-variance . 0.0002800866666666666) (looses q 0.0452 0.0562 0.0165 0.2583)) (fh h - (equal) (time . 4) (line-count . 4) (looseness-spread . 0.0397) (bps q 9 17 28) (piece-count . 35) (avg-piece-length . 20.56594285714286) (avg-looseness . 0.0393) (looseness-sd . 0.016735789992308896) (looseness-variance . 0.0002800866666666666) (looses q 0.0452 0.0562 0.0165 0.2583)) (fh-improved . 6) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Jude went out, and, feeling more than ever his existence to be an undemanded one, he lay down upon his back on a heap of litter near the pig-sty. The fog had by this time become more translucent, and the position of the sun could be seen through it. He pulled his straw hat over his face, and peered through the interstices of the plaiting at the white brightness, vaguely reflecting. Growing up brought responsibilities, he found. Events did not rhyme quite as he had thought. Nature’s logic was too horrid for him to care for. That mercy towards one set of creatures was cruelty towards another sickened his sense of harmony. As you got older, and felt yourself to be at the centre of your time, and not at a point in its circumference, as you had felt when you were little, you were seized with a sort of shuddering, he perceived. All around you there seemed to be something glaring, garish, rattling, and the noises and glares hit upon the little cell called your life, and shook it, and warped it.") (measure . 210) (bh h - (equal) (time . 60) (line-count . 23) (looseness-spread . 0.1121) (bps q 10 20 31 41 50 59 67 77 85 95 103 114 123 131 141 153 165 175 185 194 204 214) (piece-count . 217) (avg-piece-length . 18.67255529953916) (avg-looseness . 0.0558) (looseness-sd . 0.029215961688011778) (looseness-variance . 0.0008535724173553721) (looses q -0.0025 0.0704 0.0652 0.0318 0.1096 0.0653 0.0618 0.1076 0.0756 0.0093 0.0338 0.0316 0.0595 0.0864 0.0466 0.0845 0.0637 0.0401 0.0361 0.0897 0.0395 0.0211 0.6405)) (fu h - (equal) (time . 41) (line-count . 23) (looseness-spread . 0.1927) (bps q 9 17 27 37 45 54 62 69 74 80 88 98 105 112 120 132 140 149 156 163 171 180) (piece-count . 183) (avg-piece-length . 22.141773224043693) (avg-looseness . 0.0565) (looseness-sd . 0.0459509395222253) (looseness-variance . 0.002111488842975207) (looses q -0.0025 0.0704 0.0652 0.0318 0.0194 0.0253 0.1093 0.1902 0.0756 0.0093 0.0338 0.0316 0.1472 0.0141 0.0466 0.0488 0.0994 0.0401 0.0361 0.0897 0.0395 0.0211 0.6405)) (bu h - (equal) (time . 36) (line-count . 23) (looseness-spread . 0.1653) (bps q 9 17 27 37 44 53 61 69 74 80 88 97 105 112 120 131 140 149 156 163 171 180) (piece-count . 183) (avg-piece-length . 22.141773224043693) (avg-looseness . 0.057) (looseness-sd . 0.037673677155451966) (looseness-variance . 0.0014193059504132232) (looses q -0.0025 0.0704 0.0652 0.0318 0.1096 0.0653 0.0618 0.1076 0.0756 0.0093 0.0338 0.1628 0.0271 0.0141 0.0466 0.0845 0.0637 0.0401 0.0361 0.0897 0.0395 0.0211 0.6405)) (fh h - (equal) (time . 29) (line-count . 23) (looseness-spread . 0.1382) (bps q 10 20 31 41 51 60 68 78 86 96 104 115 124 132 143 155 167 177 186 196 206 216) (piece-count . 217) (avg-piece-length . 18.67255529953916) (avg-looseness . 0.0482) (looseness-sd . 0.0433651305250491) (looseness-variance . 0.0018805345454545456) (looses q -0.0025 0.0704 0.0652 0.0318 0.0194 0.0253 0.1093 0.0441 0.0226 0.1078 0.0026 -0.0001 0.1295 0.0926 -0.0001 0.0405 0.0028 0.1101 0.0975 0.0229 -0.0087 0.0774 0.7913)) (fh-improved . 374) (bu-improved . 5) (bh-improved . 25)) c (h - (equal) (text u . "Then, like the natural boy, he forgot his despondency, and sprang up. During the remainder of the morning he helped his aunt, and in the afternoon, when there was nothing more to be done, he went into the village. Here he asked a man whereabouts Christminster lay.") (measure . 210) (bh h - (equal) (time . 24) (line-count . 7) (looseness-spread . 0.1241) (bps q 10 18 28 37 48 57) (piece-count . 58) (avg-piece-length . 19.236922413793103) (avg-looseness . 0.0669) (looseness-sd . 0.047019700362956614) (looseness-variance . 0.0022108522222222225) (looses q 0.1398 0.115 0.0251 0.074 0.032 0.0157 0.8444)) (fu h - (equal) (time . 7) (line-count . 7) (looseness-spread . 0.246) (bps q 8 14 22 30 39 45) (piece-count . 46) (avg-piece-length . 24.25525) (avg-looseness . 0.1095) (looseness-sd . 0.08104630363769426) (looseness-variance . 0.006568503333333333) (looses q 0.1398 0.115 0.0251 0.0097 0.1117 0.2557 0.6199)) (bu h - (equal) (time . 9) (line-count . 7) (looseness-spread . 0.0718) (bps q 8 14 21 29 38 45) (piece-count . 46) (avg-piece-length . 24.25525) (avg-looseness . 0.1057) (looseness-sd . 0.02670790561279979) (looseness-variance . 0.0007133122222222225) (looses q 0.1398 0.115 0.1365 0.068 0.0866 0.0885 0.6199)) (fh h - (equal) (time . 7) (line-count . 7) (looseness-spread . 0.1301) (bps q 10 18 28 38 48 57) (piece-count . 58) (avg-piece-length . 19.236922413793103) (avg-looseness . 0.0695) (looseness-sd . 0.053595739880454435) (looseness-variance . 0.002872503333333334) (looses q 0.1398 0.115 0.0251 0.0097 0.1117 0.0157 0.8444)) (fh-improved . 41) (bu-improved . 3) (bh-improved . 1)) c (h - (equal) (text u . "“Christminster? Oh, well, out by there yonder; though I’ve never bin there—not I. I’ve never had any business at such a place.”") (measure . 210) (bh h - (equal) (time . 29) (line-count . 3) (looseness-spread . 0.053) (bps q 9 18) (piece-count . 27) (avg-piece-length . 19.480574074074074) (avg-looseness . 0.0562) (looseness-sd . 0.026499999999999996) (looseness-variance . 0.0007022499999999999) (looses q 0.0827 0.0297 0.156)) (fu h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.1181) (bps q 6 14) (piece-count . 23) (avg-piece-length . 22.8685) (avg-looseness . 0.1194) (looseness-sd . 0.059050000000000005) (looseness-variance . 0.0034869025000000002) (looses q 0.1784 0.0603 0.0563)) (bu h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.1181) (bps q 6 14) (piece-count . 23) (avg-piece-length . 22.8685) (avg-looseness . 0.1194) (looseness-sd . 0.059050000000000005) (looseness-variance . 0.0034869025000000002) (looses q 0.1784 0.0603 0.0563)) (fh h - (equal) (time . 29) (line-count . 3) (looseness-spread . 0.053) (bps q 9 18) (piece-count . 27) (avg-piece-length . 19.480574074074074) (avg-looseness . 0.0562) (looseness-sd . 0.026499999999999996) (looseness-variance . 0.0007022499999999999) (looses q 0.0827 0.0297 0.156)) (fh-improved . 7) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "The man pointed north-eastward, in the very direction where lay that field in which Jude had so disgraced himself. There was something unpleasant about the coincidence for the moment, but the fearsomeness of this fact rather increased his curiosity about the city. The farmer had said he was never to be seen in that field again; yet Christminster lay across it, and the path was a public one. So, stealing out of the hamlet, he descended into the same hollow which had witnessed his punishment in the morning, never swerving an inch from the path, and climbing up the long and tedious ascent on the other side till the track joined the highway by a little clump of trees. Here the ploughed land ended, and all before him was bleak open down.") (measure . 210) (bh h - (equal) (time . 45) (line-count . 17) (looseness-spread . 0.0942) (bps q 9 18 27 36 45 53 63 73 84 94 104 114 124 133 144 152) (piece-count . 158) (avg-piece-length . 19.360905063291128) (avg-looseness . 0.0486) (looseness-sd . 0.02499368592139823) (looseness-variance . 0.0006246843359375001) (looses q 0.0149 0.0638 0.079 0.0701 0.0966 0.0578 0.0416 0.0249 0.0665 0.0234 0.0024 0.0655 0.0278 0.0623 0.0482 0.0329 0.2875)) (fu h - (equal) (time . 20) (line-count . 17) (looseness-spread . 0.1955) (bps q 8 16 22 27 35 42 52 60 70 78 85 91 100 109 118 126) (piece-count . 133) (avg-piece-length . 23.000172932330816) (avg-looseness . 0.0545) (looseness-sd . 0.04619767944320905) (looseness-variance . 0.0021342255859375) (looses q 0.0149 0.0638 0.2104 0.029 0.0217 0.0578 0.0416 0.0249 0.0665 0.0234 0.1033 0.0443 0.0703 0.0382 0.0212 0.0408 0.2239)) (bu h - (equal) (time . 50) (line-count . 17) (looseness-spread . 0.1175) (bps q 7 15 22 27 35 42 51 59 69 77 85 91 100 109 118 126) (piece-count . 133) (avg-piece-length . 23.000172932330816) (avg-looseness . 0.0545) (looseness-sd . 0.0320210380062858) (looseness-variance . 0.0010253468749999999) (looses q 0.1231 0.068 0.0981 0.029 0.0217 0.0578 0.1045 0.036 0.0755 0.0375 0.0056 0.0443 0.0703 0.0382 0.0212 0.0408 0.2239)) (fh h - (equal) (time . 20) (line-count . 17) (looseness-spread . 0.1482) (bps q 9 18 27 37 46 54 64 73 84 94 104 114 124 133 144 152) (piece-count . 158) (avg-piece-length . 19.360905063291128) (avg-looseness . 0.0493) (looseness-sd . 0.03496530423148067) (looseness-variance . 0.0012225724999999998) (looses q 0.0149 0.0638 0.079 -0.0125 0.0864 0.058 0.0345 0.1357 0.0665 0.0234 0.0024 0.0655 0.0278 0.0623 0.0482 0.0329 0.2875)) (fh-improved . 238) (bu-improved . 6) (bh-improved . 4)) c (h - (equal) (text u . "The schoolmaster was leaving the village, and everybody seemed sorry. The miller at Cresscombe lent him the small white tilted cart and horse to carry his goods to the city of his destination, about twenty miles off, such a vehicle proving of quite sufficient size for the departing teacher’s effects. For the schoolhouse had been partly furnished by the managers, and the only cumbersome article possessed by the master, in addition to the packing-case of books, was a cottage piano that he had bought at an auction during the year in which he thought of learning instrumental music. But the enthusiasm having waned he had never acquired any skill in playing, and the purchased article had been a perpetual trouble to him ever since in moving house.") (measure . 240) (bh h - (equal) (time . 49) (line-count . 15) (looseness-spread . 0.1023) (bps q 12 21 31 44 57 66 76 87 100 112 124 136 146 159) (piece-count . 168) (avg-piece-length . 18.455788690476183) (avg-looseness . 0.0441) (looseness-sd . 0.03145210888098324) (looseness-variance . 0.0009892351530612245) (looses q 0.0077 0.0399 0.0712 0.0066 0.0455 0.1084 0.0387 0.0522 0.0905 0.0256 0.0061 0.0297 0.0792 0.0166 0.28)) (fu h - (equal) (time . 20) (line-count . 15) (looseness-spread . 0.1816) (bps q 7 14 25 35 44 52 59 65 74 84 94 101 109 119) (piece-count . 128) (avg-piece-length . 24.223222656249998) (avg-looseness . 0.0669) (looseness-sd . 0.05790190552361214) (looseness-variance . 0.003352630663265306) (looses q 0.1254 0.0189 -0.0128 0.0066 0.0455 0.1084 0.1356 0.1688 0.0331 0.1306 0.08 0.0894 0.0002 0.0068 0.0059)) (bu h - (equal) (time . 42) (line-count . 15) (looseness-spread . 0.1304) (bps q 7 14 24 34 43 50 58 65 74 84 94 101 109 119) (piece-count . 128) (avg-piece-length . 24.223222656249998) (avg-looseness . 0.0676) (looseness-sd . 0.04070755395475872) (looseness-variance . 0.001657104948979592) (looses q 0.1254 0.0189 0.0973 0.0383 0.0911 0.0821 0.0566 0.0965 0.0331 0.1306 0.08 0.0894 0.0002 0.0068 0.0059)) (fh h - (equal) (time . 21) (line-count . 15) (looseness-spread . 0.1116) (bps q 12 21 32 44 57 66 76 88 101 114 125 136 146 159) (piece-count . 168) (avg-piece-length . 18.455788690476183) (avg-looseness . 0.0458) (looseness-sd . 0.03811378841504658) (looseness-variance . 0.001452660867346939) (looses q 0.0077 0.0399 0.005 0.0729 0.0455 0.1084 0.0387 -0.0032 0.022 0.0073 0.1022 0.0995 0.0792 0.0166 0.28)) (fh-improved . 295) (bu-improved . 6) (bh-improved . 6)) c (h - (equal) (text u . "The rector had gone away for the day, being a man who disliked the sight of changes. He did not mean to return till the evening, when the new school-teacher would have arrived and settled in, and everything would be smooth again.") (measure . 240) (bh h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.0957) (bps q 12 23 32 41) (piece-count . 47) (avg-piece-length . 20.3178085106383) (avg-looseness . 0.0752) (looseness-sd . 0.04152725008954963) (looseness-variance . 0.0017245125) (looses q 0.0411 0.0273 0.1092 0.123 0.344)) (fu h - (equal) (time . 6) (line-count . 5) (looseness-spread . 0.0957) (bps q 11 21 30 38) (piece-count . 43) (avg-piece-length . 22.20783720930233) (avg-looseness . 0.0752) (looseness-sd . 0.04152725008954963) (looseness-variance . 0.0017245125) (looses q 0.0411 0.0273 0.1092 0.123 0.344)) (bu h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.0957) (bps q 11 21 30 38) (piece-count . 43) (avg-piece-length . 22.20783720930233) (avg-looseness . 0.0752) (looseness-sd . 0.04152725008954963) (looseness-variance . 0.0017245125) (looses q 0.0411 0.0273 0.1092 0.123 0.344)) (fh h - (equal) (time . 6) (line-count . 5) (looseness-spread . 0.1039) (bps q 12 23 32 42) (piece-count . 47) (avg-piece-length . 20.3178085106383) (avg-looseness . 0.0457) (looseness-sd . 0.03880762650562387) (looseness-variance . 0.001506031875) (looses q 0.0411 0.0273 0.1092 0.0053 0.4491)) (fh-improved . 9) (bu-improved . 0) (bh-improved . 1)) c (h - (equal) (text u . "The blacksmith, the farm bailiff, and the schoolmaster himself were standing in perplexed attitudes in the parlour before the instrument. The master had remarked that even if he got it into the cart he should not know what to do with it on his arrival at Christminster, the city he was bound for, since he was only going into temporary lodgings just at first.") (measure . 240) (bh h - (equal) (time . 15) (line-count . 7) (looseness-spread . 0.0794) (bps q 9 21 32 44 56 67) (piece-count . 79) (avg-piece-length . 18.455898734177218) (avg-looseness . 0.0521) (looseness-sd . 0.025558717799521076) (looseness-variance . 0.0006532480555555554) (looses q 0.0945 0.0151 0.0691 0.0474 0.0313 0.0551 0.0353)) (fu h - (equal) (time . 9) (line-count . 8) (looseness-spread . 0.2272) (bps q 7 13 21 32 44 53 62) (piece-count . 64) (avg-piece-length . 22.78150000000001) (avg-looseness . 0.0724) (looseness-sd . 0.06843902097368675) (looseness-variance . 0.004683899591836733) (looses q 0.2322 0.0696 0.0313 0.0487 0.0688 0.0515 0.005 0.8751)) (bu h - (equal) (time . 28) (line-count . 8) (looseness-spread . 0.2272) (bps q 7 13 21 32 44 53 62) (piece-count . 64) (avg-piece-length . 22.78150000000001) (avg-looseness . 0.0724) (looseness-sd . 0.06843902097368675) (looseness-variance . 0.004683899591836733) (looses q 0.2322 0.0696 0.0313 0.0487 0.0688 0.0515 0.005 0.8751)) (fh h - (equal) (time . 10) (line-count . 7) (looseness-spread . 0.1105) (bps q 10 22 33 44 56 67) (piece-count . 79) (avg-piece-length . 18.455898734177218) (avg-looseness . 0.0521) (looseness-sd . 0.03584710200591147) (looseness-variance . 0.001285014722222222) (looses q 0.0175 0.0443 0.0363 0.128 0.0313 0.0551 0.0353)) (fh-improved . 62) (bu-improved . 0) (bh-improved . 3)) c (h - (equal) (text u . "A little boy of eleven, who had been thoughtfully assisting in the packing, joined the group of men, and as they rubbed their chins he spoke up, blushing at the sound of his own voice: “Aunt have got a great fuel-house, and it could be put there, perhaps, till you’ve found a place to settle in, sir.”") (measure . 240) (bh h - (equal) (time . 12) (line-count . 6) (looseness-spread . 0.052) (bps q 11 22 32 44 55) (piece-count . 65) (avg-piece-length . 18.452015384615382) (avg-looseness . 0.0521) (looseness-sd . 0.021332172885104788) (looseness-variance . 0.0004550616) (looses q 0.072 0.0757 0.0588 0.0304 0.0237 0.2493)) (fu h - (equal) (time . 8) (line-count . 6) (looseness-spread . 0.0976) (bps q 9 18 28 39 49) (piece-count . 58) (avg-piece-length . 20.678982758620695) (avg-looseness . 0.0548) (looseness-sd . 0.036016251887168935) (looseness-variance . 0.0012971704) (looses q 0.072 0.0757 0.0026 0.1002 0.0237 0.2493)) (bu h - (equal) (time . 11) (line-count . 6) (looseness-spread . 0.0976) (bps q 9 18 28 39 49) (piece-count . 58) (avg-piece-length . 20.678982758620695) (avg-looseness . 0.0548) (looseness-sd . 0.036016251887168935) (looseness-variance . 0.0012971704) (looses q 0.072 0.0757 0.0026 0.1002 0.0237 0.2493)) (fh h - (equal) (time . 23) (line-count . 6) (looseness-spread . 0.0976) (bps q 11 22 33 44 55) (piece-count . 65) (avg-piece-length . 18.452015384615382) (avg-looseness . 0.0548) (looseness-sd . 0.036016251887168935) (looseness-variance . 0.0012971704) (looses q 0.072 0.0757 0.0026 0.1002 0.0237 0.2493)) (fh-improved . 22) (bu-improved . 0) (bh-improved . 1)) c (h - (equal) (text u . "It was decided that a deputation should wait on the boy’s aunt—an old maiden resident—and ask her if she would house the piano till Mr. Phillotson should send for it. The smith and the bailiff started to see about the practicability of the suggested shelter, and the boy and the schoolmaster were left standing alone.") (measure . 240) (bh h - (equal) (time . 27) (line-count . 7) (looseness-spread . 0.0857) (bps q 13 25 35 46 60 71) (piece-count . 72) (avg-piece-length . 17.800402777777776) (avg-looseness . 0.0318) (looseness-sd . 0.02973189458402467) (looseness-variance . 0.0008839855555555556) (looses q 0.026 0.0143 0.0045 0.0475 0.0081 0.0902 0.8947)) (fu h - (equal) (time . 8) (line-count . 7) (looseness-spread . 0.0857) (bps q 10 20 29 40 48 56) (piece-count . 57) (avg-piece-length . 22.484719298245615) (avg-looseness . 0.0318) (looseness-sd . 0.02973189458402467) (looseness-variance . 0.0008839855555555556) (looses q 0.026 0.0143 0.0045 0.0475 0.0081 0.0902 0.8947)) (bu h - (equal) (time . 11) (line-count . 7) (looseness-spread . 0.0857) (bps q 10 20 29 40 48 56) (piece-count . 57) (avg-piece-length . 22.484719298245615) (avg-looseness . 0.0318) (looseness-sd . 0.02973189458402467) (looseness-variance . 0.0008839855555555556) (looses q 0.026 0.0143 0.0045 0.0475 0.0081 0.0902 0.8947)) (fh h - (equal) (time . 9) (line-count . 7) (looseness-spread . 0.0857) (bps q 13 25 35 46 60 71) (piece-count . 72) (avg-piece-length . 17.800402777777776) (avg-looseness . 0.0318) (looseness-sd . 0.02973189458402467) (looseness-variance . 0.0008839855555555556) (looses q 0.026 0.0143 0.0045 0.0475 0.0081 0.0902 0.8947)) (fh-improved . 47) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Tears rose into the boy’s eyes, for he was not among the regular day scholars, who came unromantically close to the schoolmaster’s life, but one who had attended the night school only during the present teacher’s term of office. The regular scholars, if the truth must be told, stood at the present moment afar off, like certain historic disciples, indisposed to any enthusiastic volunteering of aid.") (measure . 240) (bh h - (equal) (time . 32) (line-count . 8) (looseness-spread . 0.0711) (bps q 11 24 35 44 56 66 79) (piece-count . 88) (avg-piece-length . 18.639670454545453) (avg-looseness . 0.0304) (looseness-sd . 0.02479731716890983) (looseness-variance . 0.0006149069387755103) (looses q 0.004 0.0317 0.0712 0.06 0.0188 0.0001 0.0269 0.3994)) (fu h - (equal) (time . 10) (line-count . 8) (looseness-spread . 0.0711) (bps q 11 18 27 35 44 54 62) (piece-count . 65) (avg-piece-length . 25.235246153846152) (avg-looseness . 0.0304) (looseness-sd . 0.02479731716890983) (looseness-variance . 0.0006149069387755103) (looses q 0.004 0.0317 0.0712 0.06 0.0188 0.0001 0.0269 0.3994)) (bu h - (equal) (time . 13) (line-count . 8) (looseness-spread . 0.0711) (bps q 11 18 27 35 44 54 62) (piece-count . 65) (avg-piece-length . 25.235246153846152) (avg-looseness . 0.0304) (looseness-sd . 0.02479731716890983) (looseness-variance . 0.0006149069387755103) (looses q 0.004 0.0317 0.0712 0.06 0.0188 0.0001 0.0269 0.3994)) (fh h - (equal) (time . 11) (line-count . 8) (looseness-spread . 0.0711) (bps q 11 24 35 44 56 66 79) (piece-count . 88) (avg-piece-length . 18.639670454545453) (avg-looseness . 0.0304) (looseness-sd . 0.02479731716890983) (looseness-variance . 0.0006149069387755103) (looses q 0.004 0.0317 0.0712 0.06 0.0188 0.0001 0.0269 0.3994)) (fh-improved . 64) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "The boy awkwardly opened the book he held in his hand, which Mr. Phillotson had bestowed on him as a parting gift, and admitted that he was sorry.") (measure . 240) (bh h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0198) (bps q 11 21) (piece-count . 32) (avg-piece-length . 19.244890625000004) (avg-looseness . 0.0232) (looseness-sd . 0.009899999999999999) (looseness-variance . 9.800999999999998e-05) (looses q 0.0331 0.0133 0.1448)) (fu h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0198) (bps q 10 19) (piece-count . 28) (avg-piece-length . 21.99416071428572) (avg-looseness . 0.0232) (looseness-sd . 0.009899999999999999) (looseness-variance . 9.800999999999998e-05) (looses q 0.0331 0.0133 0.1448)) (bu h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.0198) (bps q 10 19) (piece-count . 28) (avg-piece-length . 21.99416071428572) (avg-looseness . 0.0232) (looseness-sd . 0.009899999999999999) (looseness-variance . 9.800999999999998e-05) (looses q 0.0331 0.0133 0.1448)) (fh h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.0198) (bps q 11 21) (piece-count . 32) (avg-piece-length . 19.244890625000004) (avg-looseness . 0.0232) (looseness-sd . 0.009899999999999999) (looseness-variance . 9.800999999999998e-05) (looses q 0.0331 0.0133 0.1448)) (fh-improved . 3) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Ah—that would be a long story. You wouldn’t understand my reasons, Jude. You will, perhaps, when you are older.”") (measure . 240) (bh h - (equal) (time . 31) (line-count . 3) (looseness-spread . 0.0321) (bps q 9 19) (piece-count . 23) (avg-piece-length . 21.266999999999996) (avg-looseness . 0.1038) (looseness-sd . 0.016050000000000002) (looseness-variance . 0.00025760250000000007) (looses q 0.1199 0.0878 0.6252)) (fu h - (equal) (time . 3) (line-count . 3) (looseness-spread . 0.0321) (bps q 9 16) (piece-count . 20) (avg-piece-length . 24.457049999999995) (avg-looseness . 0.1038) (looseness-sd . 0.016050000000000002) (looseness-variance . 0.00025760250000000007) (looses q 0.1199 0.0878 0.6252)) (bu h - (equal) (time . 3) (line-count . 3) (looseness-spread . 0.0321) (bps q 9 16) (piece-count . 20) (avg-piece-length . 24.457049999999995) (avg-looseness . 0.1038) (looseness-sd . 0.016050000000000002) (looseness-variance . 0.00025760250000000007) (looses q 0.1199 0.0878 0.6252)) (fh h - (equal) (time . 3) (line-count . 3) (looseness-spread . 0.0321) (bps q 9 19) (piece-count . 23) (avg-piece-length . 21.266999999999996) (avg-looseness . 0.1038) (looseness-sd . 0.016050000000000002) (looseness-variance . 0.00025760250000000007) (looses q 0.1199 0.0878 0.6252)) (fh-improved . 3) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Well—don’t speak of this everywhere. You know what a university is, and a university degree? It is the necessary hallmark of a man who wants to do anything in teaching. My scheme, or dream, is to be a university graduate, and then to be ordained. By going to live at Christminster, or near it, I shall be at headquarters, so to speak, and if my scheme is practicable at all, I consider that being on the spot will afford me a better chance of carrying it out than I should have elsewhere.”") (measure . 240) (bh h - (equal) (time . 37) (line-count . 10) (looseness-spread . 0.0566) (bps q 9 23 36 48 61 75 87 101 115) (piece-count . 119) (avg-piece-length . 16.541445378151263) (avg-looseness . 0.045) (looseness-sd . 0.021541043224734418) (looseness-variance . 0.00046401654320987653) (looses q 0.0585 0.0644 0.0658 0.0151 0.0528 0.0092 0.0221 0.0534 0.0638 0.5574)) (fu h - (equal) (time . 13) (line-count . 10) (looseness-spread . 0.146) (bps q 8 19 28 38 47 59 68 78 89) (piece-count . 93) (avg-piece-length . 21.165935483870978) (avg-looseness . 0.0494) (looseness-sd . 0.0475960341744541) (looseness-variance . 0.0022653824691358025) (looses q 0.0585 -0.0079 0.1381 0.0151 0.0528 0.0092 0.1186 0.0507 0.0099 0.531)) (bu h - (equal) (time . 20) (line-count . 10) (looseness-spread . 0.0627) (bps q 8 18 28 38 47 58 68 78 89) (piece-count . 93) (avg-piece-length . 21.165935483870978) (avg-looseness . 0.0494) (looseness-sd . 0.02081298265298802) (looseness-variance . 0.0004331802469135802) (looses q 0.0585 0.0644 0.0658 0.0151 0.0528 0.0552 0.0726 0.0507 0.0099 0.531)) (fh h - (equal) (time . 14) (line-count . 10) (looseness-spread . 0.0919) (bps q 9 24 37 49 61 75 87 101 115) (piece-count . 119) (avg-piece-length . 16.541445378151263) (avg-looseness . 0.0436) (looseness-sd . 0.02774016119653735) (looseness-variance . 0.0007695165432098766) (looses q 0.0585 -0.0079 0.0581 0.0513 0.084 0.0092 0.0221 0.0534 0.0638 0.5574)) (fh-improved . 124) (bu-improved . 2) (bh-improved . 3)) c (h - (equal) (text u . "The smith and his companion returned. Old Miss Fawley’s fuel-house was dry, and eminently practicable; and she seemed willing to give the instrument standing-room there. It was accordingly left in the school till the evening, when more hands would be available for removing it; and the schoolmaster gave a final glance round.") (measure . 240) (bh h - (equal) (time . 28) (line-count . 7) (looseness-spread . 0.0496) (bps q 10 21 33 44 53 65) (piece-count . 69) (avg-piece-length . 19.830333333333336) (avg-looseness . 0.0315) (looseness-sd . 0.018467847435174704) (looseness-variance . 0.0003410613888888889) (looses q 0.052 0.0412 0.0024 0.0468 0.0358 0.0107 0.6245)) (fu h - (equal) (time . 8) (line-count . 7) (looseness-spread . 0.17) (bps q 8 15 23 30 40 48) (piece-count . 54) (avg-piece-length . 25.338759259259252) (avg-looseness . 0.0939) (looseness-sd . 0.06661412929868725) (looseness-variance . 0.004437442222222222) (looses q 0.052 0.1652 0.1147 0.0181 0.0251 0.1881 0.2637)) (bu h - (equal) (time . 11) (line-count . 7) (looseness-spread . 0.1378) (bps q 7 15 23 30 39 48) (piece-count . 54) (avg-piece-length . 25.338759259259252) (avg-looseness . 0.0939) (looseness-sd . 0.05016490860706871) (looseness-variance . 0.002516518055555556) (looses q 0.1559 0.0614 0.1147 0.0181 0.1496 0.0636 0.2637)) (fh h - (equal) (time . 9) (line-count . 7) (looseness-spread . 0.0496) (bps q 10 21 33 44 53 65) (piece-count . 69) (avg-piece-length . 19.830333333333336) (avg-looseness . 0.0315) (looseness-sd . 0.018467847435174704) (looseness-variance . 0.0003410613888888889) (looses q 0.052 0.0412 0.0024 0.0468 0.0358 0.0107 0.6245)) (fh-improved . 62) (bu-improved . 2) (bh-improved . 0)) c (h - (equal) (text u . "The boy Jude assisted in loading some small articles, and at nine o’clock Mr. Phillotson mounted beside his box of books and other impedimenta, and bade his friends good-bye.") (measure . 240) (bh h - (equal) (time . 6) (line-count . 4) (looseness-spread . 0.036) (bps q 11 20 31) (piece-count . 34) (avg-piece-length . 21.65077941176471) (avg-looseness . 0.0302) (looseness-sd . 0.015731143915459198) (looseness-variance . 0.0002474688888888889) (looses q 0.0082 0.0381 0.0442 0.6121)) (fu h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.036) (bps q 9 17 26) (piece-count . 29) (avg-piece-length . 25.383672413793107) (avg-looseness . 0.0302) (looseness-sd . 0.015731143915459198) (looseness-variance . 0.0002474688888888889) (looses q 0.0082 0.0381 0.0442 0.6121)) (bu h - (equal) (time . 6) (line-count . 4) (looseness-spread . 0.036) (bps q 9 17 26) (piece-count . 29) (avg-piece-length . 25.383672413793107) (avg-looseness . 0.0302) (looseness-sd . 0.015731143915459198) (looseness-variance . 0.0002474688888888889) (looses q 0.0082 0.0381 0.0442 0.6121)) (fh h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.036) (bps q 11 20 31) (piece-count . 34) (avg-piece-length . 21.65077941176471) (avg-looseness . 0.0302) (looseness-sd . 0.015731143915459198) (looseness-variance . 0.0002474688888888889) (looses q 0.0082 0.0381 0.0442 0.6121)) (fh-improved . 10) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. “Be a good boy, remember; and be kind to animals and birds, and read all you can. And if ever you come to Christminster remember you hunt me out for old acquaintance’ sake.”") (measure . 240) (bh h - (equal) (time . 24) (line-count . 5) (looseness-spread . 0.0547) (bps q 12 23 35 46) (piece-count . 54) (avg-piece-length . 18.791) (avg-looseness . 0.0442) (looseness-sd . 0.020235488627656114) (looseness-variance . 0.00040947499999999996) (looses q 0.054 0.0379 0.0151 0.0698 0.2458)) (fu h - (equal) (time . 6) (line-count . 5) (looseness-spread . 0.0547) (bps q 10 20 31 39) (piece-count . 46) (avg-piece-length . 22.059) (avg-looseness . 0.0442) (looseness-sd . 0.020235488627656114) (looseness-variance . 0.00040947499999999996) (looses q 0.054 0.0379 0.0151 0.0698 0.2458)) (bu h - (equal) (time . 9) (line-count . 5) (looseness-spread . 0.0547) (bps q 10 20 31 39) (piece-count . 46) (avg-piece-length . 22.059) (avg-looseness . 0.0442) (looseness-sd . 0.020235488627656114) (looseness-variance . 0.00040947499999999996) (looses q 0.054 0.0379 0.0151 0.0698 0.2458)) (fh h - (equal) (time . 7) (line-count . 5) (looseness-spread . 0.0547) (bps q 12 23 35 46) (piece-count . 54) (avg-piece-length . 18.791) (avg-looseness . 0.0442) (looseness-sd . 0.020235488627656114) (looseness-variance . 0.00040947499999999996) (looses q 0.054 0.0379 0.0151 0.0698 0.2458)) (fh-improved . 16) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "The cart creaked across the green, and disappeared round the corner by the rectory-house. The boy returned to the draw-well at the edge of the greensward, where he had left his buckets when he went to help his patron and teacher in the loading. There was a quiver in his lip now and after opening the well-cover to begin lowering the bucket he paused and leant with his forehead and arms against the framework, his face wearing the fixity of a thoughtful child’s who has felt the pricks of life somewhat before his time. The well into which he was looking was as ancient as the village itself, and from his present position appeared as a long circular perspective ending in a shining disk of quivering water at a distance of a hundred feet down. There was a lining of green moss near the top, and nearer still the hart’s-tongue fern.") (measure . 240) (bh h - (equal) (time . 52) (line-count . 17) (looseness-spread . 0.1605) (bps q 10 21 31 41 51 62 74 84 96 107 117 129 140 155 167 179) (piece-count . 184) (avg-piece-length . 18.36781249999998) (avg-looseness . 0.0619) (looseness-sd . 0.0430408994264467) (looseness-variance . 0.0018525190234375) (looses q 0.0224 0.0903 0.1759 0.0322 0.1139 0.1076 0.0154 0.0969 0.0196 0.0681 0.0497 0.0388 0.0519 0.0194 0.0529 0.0351 0.4964)) (fu h - (equal) (time . 21) (line-count . 17) (looseness-spread . 0.1711) (bps q 8 17 27 36 46 57 66 75 84 93 102 112 121 129 139 150) (piece-count . 155) (avg-piece-length . 21.804370967741917) (avg-looseness . 0.0642) (looseness-sd . 0.047247198577667016) (looseness-variance . 0.0022322977734375) (looses q 0.0224 0.0903 0.1759 0.0322 0.0553 0.0248 0.1231 0.0089 0.1334 0.0993 0.0497 0.0388 0.0048 0.08 0.0529 0.0351 0.4964)) (bu h - (equal) (time . 46) (line-count . 17) (looseness-spread . 0.1711) (bps q 8 17 27 35 45 56 65 74 83 93 102 112 121 129 139 150) (piece-count . 155) (avg-piece-length . 21.804370967741917) (avg-looseness . 0.0636) (looseness-sd . 0.04716804400226916) (looseness-variance . 0.002224824375) (looses q 0.0224 0.0903 0.1759 0.0892 0.1514 0.0267 0.0154 0.0969 0.0196 0.0681 0.0497 0.0388 0.0048 0.08 0.0529 0.0351 0.4964)) (fh h - (equal) (time . 23) (line-count . 17) (looseness-spread . 0.1711) (bps q 10 21 31 41 52 64 75 85 97 107 117 129 141 155 167 179) (piece-count . 184) (avg-piece-length . 18.36781249999998) (avg-looseness . 0.0642) (looseness-sd . 0.047247198577667016) (looseness-variance . 0.0022322977734375) (looses q 0.0224 0.0903 0.1759 0.0322 0.0553 0.0248 0.1231 0.0089 0.1334 0.0993 0.0497 0.0388 0.0048 0.08 0.0529 0.0351 0.4964)) (fh-improved . 209) (bu-improved . 6) (bh-improved . 7)) c (h - (equal) (text u . "He said to himself, in the melodramatic tones of a whimsical boy, that the schoolmaster had drawn at that well scores of times on a morning like this, and would never draw there any more. “I’ve seen him look down into it, when he was tired with his drawing, just as I do now, and when he rested a bit before carrying the buckets home! But he was too clever to bide here any longer—a small sleepy place like this!”") (measure . 240) (bh h - (equal) (time . 31) (line-count . 9) (looseness-spread . 0.0579) (bps q 13 25 37 46 57 70 82 92) (piece-count . 93) (avg-piece-length . 18.083564516129027) (avg-looseness . 0.0418) (looseness-sd . 0.01830207894611976) (looseness-variance . 0.0003349660937500001) (looses q 0.0528 0.0383 0.0231 0.0505 0.04 0.0058 0.0603 0.0637 0.9099)) (fu h - (equal) (time . 11) (line-count . 9) (looseness-spread . 0.1312) (bps q 10 18 29 38 48 60 69 79) (piece-count . 81) (avg-piece-length . 20.762611111111113) (avg-looseness . 0.0531) (looseness-sd . 0.03783597618338926) (looseness-variance . 0.0014315610937499995) (looses q 0.0528 0.0383 0.0231 0.0505 0.147 0.0424 0.055 0.0158 0.832)) (bu h - (equal) (time . 16) (line-count . 9) (looseness-spread . 0.0682) (bps q 9 17 28 37 48 60 69 79) (piece-count . 81) (avg-piece-length . 20.762611111111113) (avg-looseness . 0.0544) (looseness-sd . 0.01856121207653207) (looseness-variance . 0.00034451859375) (looses q 0.084 0.0531 0.0683 0.055 0.0615 0.0424 0.055 0.0158 0.832)) (fh h - (equal) (time . 12) (line-count . 9) (looseness-spread . 0.1066) (bps q 13 25 37 46 57 70 83 92) (piece-count . 93) (avg-piece-length . 18.083564516129027) (avg-looseness . 0.0418) (looseness-sd . 0.03114546515947386) (looseness-variance . 0.00097004) (looses q 0.0528 0.0383 0.0231 0.0505 0.04 0.0058 0.0115 0.1124 0.9099)) (fh-improved . 72) (bu-improved . 4) (bh-improved . 1)) c (h - (equal) (text u . "A tear rolled from his eye into the depths of the well. The morning was a little foggy, and the boy’s breathing unfurled itself as a thicker fog upon the still and heavy air. His thoughts were interrupted by a sudden outcry:") (measure . 240) (bh h - (equal) (time . 10) (line-count . 5) (looseness-spread . 0.0559) (bps q 12 24 35 45) (piece-count . 47) (avg-piece-length . 19.089265957446806) (avg-looseness . 0.0231) (looseness-sd . 0.022681421361986996) (looseness-variance . 0.000514446875) (looses q 0.0056 0.0048 0.0214 0.0607 0.791)) (fu h - (equal) (time . 6) (line-count . 5) (looseness-spread . 0.1345) (bps q 12 21 30 39) (piece-count . 42) (avg-piece-length . 21.361797619047618) (avg-looseness . 0.0548) (looseness-sd . 0.053859400293727745) (looseness-variance . 0.002900835) (looses q 0.0056 0.1401 0.0618 0.0117 0.6915)) (bu h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.0851) (bps q 11 21 30 39) (piece-count . 42) (avg-piece-length . 21.361797619047618) (avg-looseness . 0.0524) (looseness-sd . 0.03118672594229795) (looseness-variance . 0.0009726118749999999) (looses q 0.0968 0.0392 0.0618 0.0117 0.6915)) (fh h - (equal) (time . 7) (line-count . 5) (looseness-spread . 0.0559) (bps q 12 24 35 45) (piece-count . 47) (avg-piece-length . 19.089265957446806) (avg-looseness . 0.0231) (looseness-sd . 0.022681421361986996) (looseness-variance . 0.000514446875) (looses q 0.0056 0.0048 0.0214 0.0607 0.791)) (fh-improved . 14) (bu-improved . 1) (bh-improved . 0)) c (h - (equal) (text u . "It came from an old woman who had emerged from her door towards the garden gate of a green-thatched cottage not far off. The boy quickly waved a signal of assent, drew the water with what was a great effort for one of his stature, landed and emptied the big bucket into his own pair of smaller ones, and pausing a moment for breath, started with them across the patch of clammy greensward whereon the well stood—nearly in the centre of the little village, or rather hamlet of Marygreen.") (measure . 240) (bh h - (equal) (time . 36) (line-count . 10) (looseness-spread . 0.0722) (bps q 10 21 34 44 55 65 74 82 95) (piece-count . 101) (avg-piece-length . 19.84581188118812) (avg-looseness . 0.0349) (looseness-sd . 0.0239403425205238) (looseness-variance . 0.00057314) (looses q 0.0237 -0.0079 -0.0016 0.0368 0.0643 0.0499 0.0494 0.0423 0.0575 0.467)) (fu h - (equal) (time . 25) (line-count . 10) (looseness-spread . 0.1225) (bps q 10 20 31 41 51 61 70 77 87) (piece-count . 91) (avg-piece-length . 22.026670329670328) (avg-looseness . 0.0364) (looseness-sd . 0.03777171519981324) (looseness-variance . 0.0014267024691358024) (looses q 0.0237 -0.0079 -0.0016 0.0368 0.0643 -0.0063 0.0469 0.1146 0.0575 0.467)) (bu h - (equal) (time . 18) (line-count . 10) (looseness-spread . 0.1271) (bps q 10 20 31 41 51 61 69 77 87) (piece-count . 91) (avg-piece-length . 22.026670329670328) (avg-looseness . 0.0364) (looseness-sd . 0.038737696573266575) (looseness-variance . 0.001500609135802469) (looses q 0.0237 -0.0079 -0.0016 0.0368 0.0643 -0.0063 0.1192 0.0423 0.0575 0.467)) (fh h - (equal) (time . 13) (line-count . 10) (looseness-spread . 0.1225) (bps q 10 21 34 44 55 66 75 82 95) (piece-count . 101) (avg-piece-length . 19.84581188118812) (avg-looseness . 0.0364) (looseness-sd . 0.03777171519981324) (looseness-variance . 0.0014267024691358024) (looses q 0.0237 -0.0079 -0.0016 0.0368 0.0643 -0.0063 0.0469 0.1146 0.0575 0.467)) (fh-improved . 34) (bu-improved . 1) (bh-improved . 2)) c (h - (equal) (text u . "It was as old-fashioned as it was small, and it rested in the lap of an undulating upland adjoining the North Wessex downs. Old as it was, however, the well-shaft was probably the only relic of the local history that remained absolutely unchanged. Many of the thatched and dormered dwelling-houses had been pulled down of late years, and many trees felled on the green. Above all, the original church, hump-backed, wood-turreted, and quaintly hipped, had been taken down, and either cracked up into heaps of road-metal in the lane, or utilized as pig-sty walls, garden seats, guard-stones to fences, and rockeries in the flower-beds of the neighbourhood. In place of it a tall new building of modern Gothic design, unfamiliar to English eyes, had been erected on a new piece of ground by a certain obliterator of historic records who had run down from London and back in a day. The site whereon so long had stood the ancient temple to the Christian divinities was not even recorded on the green and level grass-plot that had immemorially been the churchyard, the obliterated graves being commemorated by eighteen-penny cast-iron crosses warranted to last five years.") (measure . 240) (bh h - (equal) (time . 48) (line-count . 23) (looseness-spread . 0.1049) (bps q 13 25 36 48 55 63 73 84 92 101 114 124 136 148 160 174 184 195 207 217 228 239) (piece-count . 248) (avg-piece-length . 19.40513709677419) (avg-looseness . 0.0404) (looseness-sd . 0.02724806157333274) (looseness-variance . 0.0007424568595041322) (looses q 0.0219 0.0981 0.0594 0.0722 0.0299 0.0313 -0.0068 0.0373 0.0717 0.0372 0.0144 0.036 0.0114 0.0158 0.0638 0.0581 0.047 0.0849 0.0612 0.0156 0.0276 0.0 0.1607)) (fu h - (equal) (time . 30) (line-count . 23) (looseness-spread . 0.1766) (bps q 12 21 30 40 46 54 64 73 80 89 101 109 119 128 137 146 155 166 175 185 191 197) (piece-count . 206) (avg-piece-length . 23.361524271844665) (avg-looseness . 0.048) (looseness-sd . 0.04601611377846599) (looseness-variance . 0.0021174827272727277) (looses q 0.0219 0.0981 0.0594 0.0722 0.0299 0.0313 -0.0068 0.0373 0.0717 0.0372 0.0144 0.036 0.0114 0.1242 0.0687 0.1237 -0.0108 0.06 -0.0111 0.0156 0.1655 0.0062 0.0321)) (bu h - (equal) (time . 59) (line-count . 23) (looseness-spread . 0.1174) (bps q 12 21 30 40 46 54 63 72 79 88 99 108 116 127 135 145 154 165 173 183 191 197) (piece-count . 206) (avg-piece-length . 23.361524271844665) (avg-looseness . 0.0485) (looseness-sd . 0.030866861861177673) (looseness-variance . 0.0009527631611570248) (looses q 0.0219 0.0981 0.0594 0.0722 0.0299 0.0313 0.11 0.0562 0.0354 0.0772 0.0718 0.0338 0.0471 0.0509 0.0116 0.0822 0.0214 0.0948 0.0303 0.0328 -0.0074 0.0062 0.0321)) (fh h - (equal) (time . 46) (line-count . 23) (looseness-spread . 0.1395) (bps q 13 25 36 49 56 63 73 84 92 101 114 124 136 148 160 174 185 195 207 217 228 239) (piece-count . 248) (avg-piece-length . 19.40513709677419) (avg-looseness . 0.0398) (looseness-sd . 0.034565139128538265) (looseness-variance . 0.0011947488429752068) (looses q 0.0219 0.0981 0.0594 0.003 0.0369 0.08 -0.0068 0.0373 0.0717 0.0372 0.0144 0.036 0.0114 0.0158 0.0638 0.0581 -0.0007 0.1327 0.0612 0.0156 0.0276 0.0 0.1607)) (fh-improved . 401) (bu-improved . 20) (bh-improved . 3)) c (h - (equal) (text u . "Slender as was Jude Fawley’s frame he bore the two brimming house-buckets of water to the cottage without resting. Over the door was a little rectangular piece of blue board, on which was painted in yellow letters, “Drusilla Fawley, Baker.” Within the little lead panes of the window—this being one of the few old houses left—were five bottles of sweets, and three buns on a plate of the willow pattern.") (measure . 240) (bh h - (equal) (time . 17) (line-count . 8) (looseness-spread . 0.0841) (bps q 11 23 36 47 57 69 80) (piece-count . 92) (avg-piece-length . 17.89400000000001) (avg-looseness . 0.0441) (looseness-sd . 0.02955773319855118) (looseness-variance . 0.0008736595918367347) (looses q 0.0931 0.009 0.0707 0.048 0.0099 0.0556 0.0227 0.1138)) (fu h - (equal) (time . 11) (line-count . 9) (looseness-spread . 0.1932) (bps q 10 18 26 34 41 50 60 71) (piece-count . 73) (avg-piece-length . 22.551342465753432) (avg-looseness . 0.0922) (looseness-sd . 0.05435572072008612) (looseness-variance . 0.0029545443749999997) (looses q 0.0113 0.0908 0.2045 0.1292 0.0496 0.0817 0.1087 0.062 0.7225)) (bu h - (equal) (time . 14) (line-count . 9) (looseness-spread . 0.1158) (bps q 8 17 26 34 41 50 60 71) (piece-count . 73) (avg-piece-length . 22.551342465753432) (avg-looseness . 0.0922) (looseness-sd . 0.03757236143430434) (looseness-variance . 0.00141168234375) (looses q 0.1654 0.0869 0.0544 0.1292 0.0496 0.0817 0.1087 0.062 0.7225)) (fh h - (equal) (time . 12) (line-count . 8) (looseness-spread . 0.0795) (bps q 12 23 37 48 57 69 80) (piece-count . 92) (avg-piece-length . 17.89400000000001) (avg-looseness . 0.0422) (looseness-sd . 0.026714224598860574) (looseness-variance . 0.0007136497959183674) (looses q 0.0113 0.0908 0.0238 0.0262 0.0651 0.0556 0.0227 0.1138)) (fh-improved . 87) (bu-improved . 3) (bh-improved . 3)) c (h - (equal) (text u . "While emptying the buckets at the back of the house he could hear an animated conversation in progress within-doors between his great-aunt, the Drusilla of the sign-board, and some other villagers. Having seen the school-master depart, they were summing up particulars of the event, and indulging in predictions of his future.") (measure . 240) (bh h - (equal) (time . 13) (line-count . 7) (looseness-spread . 0.0598) (bps q 13 25 33 44 54 67) (piece-count . 71) (avg-piece-length . 19.119154929577466) (avg-looseness . 0.0287) (looseness-sd . 0.017662452327528652) (looseness-variance . 0.0003119622222222223) (looses q 0.0025 0.0221 0.0623 0.0262 0.0278 0.0311 0.6595)) (fu h - (equal) (time . 23) (line-count . 7) (looseness-spread . 0.1635) (bps q 10 18 27 35 43 51) (piece-count . 55) (avg-piece-length . 24.681090909090905) (avg-looseness . 0.0511) (looseness-sd . 0.05616649851606877) (looseness-variance . 0.0031546755555555556) (looses q 0.0025 0.0221 0.0135 0.0749 0.0278 0.166 0.5382)) (bu h - (equal) (time . 11) (line-count . 7) (looseness-spread . 0.1051) (bps q 9 17 25 34 42 50) (piece-count . 55) (avg-piece-length . 24.681090909090905) (avg-looseness . 0.0607) (looseness-sd . 0.03497017777097127) (looseness-variance . 0.0012229133333333333) (looses q 0.1265 0.0708 0.054 0.0214 0.0666 0.0249 0.4904)) (fh h - (equal) (time . 9) (line-count . 7) (looseness-spread . 0.0724) (bps q 13 25 34 44 54 67) (piece-count . 71) (avg-piece-length . 19.119154929577466) (avg-looseness . 0.0286) (looseness-sd . 0.022737762276295644) (looseness-variance . 0.0005170058333333333) (looses q 0.0025 0.0221 0.0135 0.0749 0.0278 0.0311 0.6595)) (fh-improved . 53) (bu-improved . 7) (bh-improved . 1)) c (h - (equal) (text u . "“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since you was last this way.” The old inhabitant who answered was a tall, gaunt woman, who spoke tragically on the most trivial subject, and gave a phrase of her conversation to each auditor in turn. “He come from Mellstock, down in South Wessex, about a year ago—worse luck for ‘n, Belinda” (turning to the right) “where his father was living, and was took wi’ the shakings for death, and died in two days, as you know, Caroline” (turning to the left). “It would ha’ been a blessing if Goddy-mighty had took thee too, wi’ thy mother and father, poor useless boy! But I’ve got him here to stay with me till I can see what’s to be done with un, though I am obliged to let him earn any penny he can. Just now he’s a-scaring of birds for Farmer Troutham. It keeps him out of mischty. Why do ye turn away, Jude?” she continued, as the boy, feeling the impact of their glances like slaps upon his face, moved aside.") (measure . 240) (bh h - (equal) (time . 58) (line-count . 20) (looseness-spread . 0.1562) (bps q 9 18 29 41 54 64 75 85 97 109 121 130 141 154 165 177 188 200 210) (piece-count . 212) (avg-piece-length . 18.828971698113204) (avg-looseness . 0.0494) (looseness-sd . 0.035309474688390415) (looseness-variance . 0.0012467590027700833) (looses q 0.1653 0.0599 0.0455 0.0091 0.0461 0.0622 0.0355 0.0204 0.0327 0.0281 0.1136 0.0687 0.0356 0.0275 0.0504 0.0405 0.0362 0.0157 0.0462 0.7599)) (fu h - (equal) (time . 41) (line-count . 20) (looseness-spread . 0.1458) (bps q 10 19 27 35 44 52 61 70 80 90 100 110 119 132 143 154 163 173 182) (piece-count . 187) (avg-piece-length . 21.34621390374331) (avg-looseness . 0.0639) (looseness-sd . 0.03630967530529051) (looseness-variance . 0.0013183925207756234) (looses q 0.056 0.0558 0.1365 0.0891 0.078 0.0907 0.0757 0.0392 0.028 0.158 0.0122 0.0193 0.0653 0.0483 0.0554 0.0515 0.044 0.0279 0.0834 0.4845)) (bu h - (equal) (time . 54) (line-count . 20) (looseness-spread . 0.1531) (bps q 9 18 27 35 44 52 61 70 80 90 100 110 119 132 143 154 163 173 182) (piece-count . 187) (avg-piece-length . 21.34621390374331) (avg-looseness . 0.0651) (looseness-sd . 0.03990799807368577) (looseness-variance . 0.0015926483102493075) (looses q 0.1653 0.0599 0.0455 0.0891 0.078 0.0907 0.0757 0.0392 0.028 0.158 0.0122 0.0193 0.0653 0.0483 0.0554 0.0515 0.044 0.0279 0.0834 0.4845)) (fh h - (equal) (time . 28) (line-count . 20) (looseness-spread . 0.1431) (bps q 10 19 29 41 54 65 76 85 97 109 121 130 141 154 166 177 188 200 210) (piece-count . 212) (avg-piece-length . 18.828971698113204) (avg-looseness . 0.048) (looseness-sd . 0.0356703512909368) (looseness-variance . 0.0012723739612188368) (looses q 0.056 0.0558 0.1365 0.0091 0.0461 0.0145 0.0269 0.0723 0.0327 0.0281 0.1136 0.0687 0.0356 0.0275 -0.0066 0.0974 0.0362 0.0157 0.0462 0.7599)) (fh-improved . 308) (bu-improved . 2) (bh-improved . 5)) c (h - (equal) (text u . "The local washerwoman replied that it was perhaps a very good plan of Miss or Mrs. Fawley’s (as they called her indifferently) to have him with her—”to kip ‘ee company in your loneliness, fetch water, shet the winder-shetters o’ nights, and help in the bit o’ baking.”") (measure . 240) (bh h - (equal) (time . 24) (line-count . 6) (looseness-spread . 0.0407) (bps q 11 23 34 46 58) (piece-count . 60) (avg-piece-length . 18.324483333333337) (avg-looseness . 0.0283) (looseness-sd . 0.016012694963684283) (looseness-variance . 0.0002564064) (looses q 0.018 0.0398 0.0398 0.0015 0.0422 0.8614)) (fu h - (equal) (time . 7) (line-count . 6) (looseness-spread . 0.0842) (bps q 9 19 28 37 48) (piece-count . 49) (avg-piece-length . 22.438142857142854) (avg-looseness . 0.0283) (looseness-sd . 0.03029597993133742) (looseness-variance . 0.0009178463999999999) (looses q -0.0132 0.071 0.0398 0.0015 0.0422 0.8614)) (bu h - (equal) (time . 10) (line-count . 6) (looseness-spread . 0.0407) (bps q 8 19 28 37 48) (piece-count . 49) (avg-piece-length . 22.438142857142854) (avg-looseness . 0.0283) (looseness-sd . 0.016012694963684283) (looseness-variance . 0.0002564064) (looses q 0.018 0.0398 0.0398 0.0015 0.0422 0.8614)) (fh h - (equal) (time . 7) (line-count . 6) (looseness-spread . 0.0842) (bps q 12 23 34 46 58) (piece-count . 60) (avg-piece-length . 18.324483333333337) (avg-looseness . 0.0283) (looseness-sd . 0.03029597993133742) (looseness-variance . 0.0009178463999999999) (looses q -0.0132 0.071 0.0398 0.0015 0.0422 0.8614)) (fh-improved . 32) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a better one. The boy is crazy for books, that he is. It runs in our family rather. His cousin Sue is just the same—so I’ve heard; but I have not seen the child for years, though she was born in this place, within these four walls, as it happened. My niece and her husband, after they were married, didn’ get a house of their own for some year or more; and then they only had one till—Well, I won’t go into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the Fawleys to take that step any more. She, their only one, was like a child o’ my own, Belinda, till the split come! Ah, that a little maid should know such changes!”") (measure . 240) (bh h - (equal) (time . 50) (line-count . 17) (looseness-spread . 0.0966) (bps q 10 22 34 44 57 69 80 90 101 112 123 134 143 154 165 176) (piece-count . 177) (avg-piece-length . 18.84115819209039) (avg-looseness . 0.051) (looseness-sd . 0.026934979580463765) (looseness-variance . 0.000725493125) (looses q 0.052 0.0724 0.0156 0.0924 0.0327 0.0328 0.0407 0.0325 0.0468 0.0178 0.0507 0.0585 0.1122 0.0409 0.0898 0.0278 0.8272)) (fu h - (equal) (time . 21) (line-count . 17) (looseness-spread . 0.1455) (bps q 9 17 26 34 47 58 69 79 89 98 109 120 129 139 151 160) (piece-count . 161) (avg-piece-length . 20.713571428571417) (avg-looseness . 0.0518) (looseness-sd . 0.04068657977069958) (looseness-variance . 0.0016553977734375) (looses q 0.052 0.0724 0.1416 0.0111 0.0015 0.0328 0.0407 0.0325 0.0468 0.0178 0.0507 0.0585 0.1122 0.0409 -0.0039 0.1215 0.8272)) (bu h - (equal) (time . 49) (line-count . 17) (looseness-spread . 0.1365) (bps q 8 16 26 34 46 57 68 78 88 97 108 119 128 138 150 160) (piece-count . 161) (avg-piece-length . 20.713571428571417) (avg-looseness . 0.0533) (looseness-sd . 0.034292299951118765) (looseness-variance . 0.0011759618359374999) (looses q 0.1243 0.0776 0.0685 0.0111 0.0529 0.0634 0.0743 0.07 -0.0122 0.0676 0.0208 0.0749 0.0735 0.0617 -0.0033 0.0278 0.8272)) (fh h - (equal) (time . 23) (line-count . 17) (looseness-spread . 0.1327) (bps q 10 22 34 45 58 69 80 90 101 112 123 134 144 155 166 176) (piece-count . 177) (avg-piece-length . 18.84115819209039) (avg-looseness . 0.05) (looseness-sd . 0.036252715415538185) (looseness-variance . 0.0013142593750000001) (looses q 0.052 0.0724 0.0156 0.019 -0.0037 0.129 0.0407 0.0325 0.0468 0.0178 0.0507 0.0585 0.0198 0.0375 0.0895 0.1215 0.8272)) (fh-improved . 185) (bu-improved . 13) (bh-improved . 5)) c (h - (equal) (text u . "Jude, finding the general attention again centering on himself, went out to the bakehouse, where he ate the cake provided for his breakfast. The end of his spare time had now arrived, and emerging from the garden by getting over the hedge at the back he pursued a path northward, till he came to a wide and lonely depression in the general level of the upland, which was sown as a corn-field. This vast concave was the scene of his labours for Mr Troutham the farmer, and he descended into the midst of it.") (measure . 240) (bh h - (equal) (time . 21) (line-count . 10) (looseness-spread . 0.0521) (bps q 12 24 36 46 59 71 82 93 103) (piece-count . 111) (avg-piece-length . 18.720445945945947) (avg-looseness . 0.0391) (looseness-sd . 0.016337354002483668) (looseness-variance . 0.00026690913580246917) (looses q 0.0481 0.0123 0.0461 0.0225 0.0246 0.0644 0.03 0.0482 0.0553 0.143)) (fu h - (equal) (time . 13) (line-count . 10) (looseness-spread . 0.1078) (bps q 7 17 27 36 46 57 66 76 86) (piece-count . 94) (avg-piece-length . 22.1060585106383) (avg-looseness . 0.0406) (looseness-sd . 0.02913684189399317) (looseness-variance . 0.0008489555555555555) (looses q 0.0481 0.0123 0.0461 0.0225 0.1052 -0.0026 0.03 0.0482 0.0553 0.143)) (bu h - (equal) (time . 19) (line-count . 10) (looseness-spread . 0.0817) (bps q 7 16 26 35 46 57 66 76 86) (piece-count . 94) (avg-piece-length . 22.1060585106383) (avg-looseness . 0.0406) (looseness-sd . 0.02113617810038887) (looseness-variance . 0.000446738024691358) (looses q 0.0481 0.0791 0.0455 0.0285 0.0329 -0.0026 0.03 0.0482 0.0553 0.143)) (fh h - (equal) (time . 28) (line-count . 10) (looseness-spread . 0.0521) (bps q 12 24 36 46 59 71 82 93 103) (piece-count . 111) (avg-piece-length . 18.720445945945947) (avg-looseness . 0.0391) (looseness-sd . 0.016337354002483668) (looseness-variance . 0.00026690913580246917) (looses q 0.0481 0.0123 0.0461 0.0225 0.0246 0.0644 0.03 0.0482 0.0553 0.143)) (fh-improved . 108) (bu-improved . 3) (bh-improved . 0)) c (h - (equal) (text u . "The brown surface of the field went right up towards the sky all round, where it was lost by degrees in the mist that shut out the actual verge and accentuated the solitude. The only marks on the uniformity of the scene were a rick of last year’s produce standing in the midst of the arable, the rooks that rose at his approach, and the path athwart the fallow by which he had come, trodden now by he hardly knew whom, though once by many of his own dead family.") (measure . 240) (bh h - (equal) (time . 19) (line-count . 9) (looseness-spread . 0.0601) (bps q 11 23 34 46 58 70 80 91) (piece-count . 100) (avg-piece-length . 18.930609999999998) (avg-looseness . 0.0198) (looseness-sd . 0.018583443572169286) (looseness-variance . 0.000345344375) (looses q -0.004 0.0085 0.0282 0.0561 0.0077 0.0351 0.024 0.003 0.1539)) (fu h - (equal) (time . 12) (line-count . 9) (looseness-spread . 0.0601) (bps q 10 22 31 40 50 62 71 81) (piece-count . 90) (avg-piece-length . 21.034011111111102) (avg-looseness . 0.0198) (looseness-sd . 0.018583443572169286) (looseness-variance . 0.000345344375) (looses q -0.004 0.0085 0.0282 0.0561 0.0077 0.0351 0.024 0.003 0.1539)) (bu h - (equal) (time . 33) (line-count . 9) (looseness-spread . 0.0601) (bps q 10 22 31 40 50 62 71 81) (piece-count . 90) (avg-piece-length . 21.034011111111102) (avg-looseness . 0.0198) (looseness-sd . 0.018583443572169286) (looseness-variance . 0.000345344375) (looses q -0.004 0.0085 0.0282 0.0561 0.0077 0.0351 0.024 0.003 0.1539)) (fh h - (equal) (time . 13) (line-count . 9) (looseness-spread . 0.0601) (bps q 11 23 34 46 58 70 80 91) (piece-count . 100) (avg-piece-length . 18.930609999999998) (avg-looseness . 0.0198) (looseness-sd . 0.018583443572169286) (looseness-variance . 0.000345344375) (looses q -0.004 0.0085 0.0282 0.0561 0.0077 0.0351 0.024 0.003 0.1539)) (fh-improved . 46) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "The fresh harrow-lines seemed to stretch like the channellings in a piece of new corduroy, lending a meanly utilitarian air to the expanse, taking away its gradations, and depriving it of all history beyond that of the few recent months, though to every clod and stone there really attached associations enough and to spare—echoes of songs from ancient harvest-days, of spoken words, and of sturdy deeds. Every inch of ground had been the site, first or last, of energy, gaiety, horse-play, bickerings, weariness. Groups of gleaners had squatted in the sun on every square yard. Love-matches that had populated the adjoining hamlet had been made up there between reaping and carrying. Under the hedge which divided the field from a distant plantation girls had given themselves to lovers who would not turn their heads to look at them by the next harvest; and in that ancient cornfield many a man had made love-promises to a woman at whose voice he had trembled by the next seed-time after fulfilling them in the church adjoining. But this neither Jude nor the rooks around him considered. For them it was a lonely place, possessing, in the one view, only the quality of a work-ground, and in the other that of a granary good to feed in.") (measure . 240) (bh h - (equal) (time . 69) (line-count . 25) (looseness-spread . 0.0941) (bps q 10 22 34 47 57 67 76 86 96 107 118 128 139 149 160 170 182 193 203 215 226 237 249 262) (piece-count . 267) (avg-piece-length . 19.004589887640453) (avg-looseness . 0.0525) (looseness-sd . 0.02755953372801426) (looseness-variance . 0.0007595278993055556) (looses q 0.0642 0.0524 0.071 0.0205 0.0221 0.0235 0.0903 0.089 0.1146 0.0314 0.0787 0.0335 0.0363 0.0917 0.0822 0.0307 0.022 0.0269 0.0754 0.0268 0.0626 0.0488 0.028 0.0381 0.5584)) (fu h - (equal) (time . 48) (line-count . 25) (looseness-spread . 0.1796) (bps q 9 18 27 36 46 53 61 70 81 87 97 105 113 120 129 138 150 158 167 176 186 195 204 216) (piece-count . 220) (avg-piece-length . 23.064661363636375) (avg-looseness . 0.0538) (looseness-sd . 0.04832367414258656) (looseness-variance . 0.0023351774826388884) (looses q 0.0642 0.0524 0.0144 -0.0092 0.0274 0.0235 0.0929 0.049 0.0986 0.0877 0.0097 0.0456 0.042 0.1354 0.0356 0.0093 -0.0101 0.1495 0.1695 0.0268 -0.0097 0.0899 0.0592 0.0381 0.5584)) (bu h - (equal) (time . 58) (line-count . 25) (looseness-spread . 0.1257) (bps q 9 18 26 35 45 52 61 70 81 87 97 105 113 120 129 137 147 157 167 176 185 194 204 216) (piece-count . 220) (avg-piece-length . 23.064661363636375) (avg-looseness . 0.0542) (looseness-sd . 0.03383262699385839) (looseness-variance . 0.0011446466493055555) (looses q 0.0642 0.0524 0.071 0.0205 0.0221 0.0235 0.0119 0.049 0.0986 0.0877 0.0097 0.0456 0.042 0.1354 0.0356 0.1111 0.115 0.0269 0.0754 0.0268 0.0626 0.0488 0.028 0.0381 0.5584)) (fh h - (equal) (time . 34) (line-count . 25) (looseness-spread . 0.1596) (bps q 10 22 35 48 58 68 77 87 98 108 120 130 140 150 162 172 185 194 204 217 228 239 252 264) (piece-count . 267) (avg-piece-length . 19.004589887640453) (avg-looseness . 0.0467) (looseness-sd . 0.04383572533872597) (looseness-variance . 0.0019215708159722221) (looses q 0.0642 0.0524 0.0144 -0.0092 0.0274 0.0235 0.0929 0.049 0.0986 0.0877 0.0097 0.0456 0.042 0.1354 0.0356 0.0093 -0.0101 0.1495 0.0645 -0.0018 -0.0048 0.0781 -0.0046 0.0726 0.7145)) (fh-improved . 626) (bu-improved . 11) (bh-improved . 35)) c (h - (equal) (text u . "The boy stood under the rick before mentioned, and every few seconds used his clacker or rattle briskly. At each clack the rooks left off pecking, and rose and went away on their leisurely wings, burnished like tassets of mail, afterwards wheeling back and regarding him warily, and descending to feed at a more respectful distance.") (measure . 240) (bh h - (equal) (time . 13) (line-count . 7) (looseness-spread . 0.0841) (bps q 10 21 33 42 53 65) (piece-count . 69) (avg-piece-length . 19.823999999999995) (avg-looseness . 0.0301) (looseness-sd . 0.030651250654201153) (looseness-variance . 0.0009394991666666666) (looses q 0.0033 0.0399 -0.0032 0.0535 0.0059 0.0809 0.6366)) (fu h - (equal) (time . 9) (line-count . 7) (looseness-spread . 0.1452) (bps q 9 18 29 37 44 53) (piece-count . 56) (avg-piece-length . 24.42600000000001) (avg-looseness . 0.0507) (looseness-sd . 0.048181900705094184) (looseness-variance . 0.0023214955555555554) (looses q 0.0033 0.0399 -0.0032 0.0535 0.142 0.0685 0.5264)) (bu h - (equal) (time . 25) (line-count . 7) (looseness-spread . 0.0745) (bps q 9 18 28 36 44 53) (piece-count . 56) (avg-piece-length . 24.42600000000001) (avg-looseness . 0.0506) (looseness-sd . 0.02447568521342491) (looseness-variance . 0.0005990591666666668) (looses q 0.0033 0.0399 0.0778 0.0503 0.0641 0.0685 0.5264)) (fh h - (equal) (time . 9) (line-count . 7) (looseness-spread . 0.0841) (bps q 10 21 33 42 53 65) (piece-count . 69) (avg-piece-length . 19.823999999999995) (avg-looseness . 0.0301) (looseness-sd . 0.030651250654201153) (looseness-variance . 0.0009394991666666666) (looses q 0.0033 0.0399 -0.0032 0.0535 0.0059 0.0809 0.6366)) (fh-improved . 34) (bu-improved . 2) (bh-improved . 0)) c (h - (equal) (text u . "He sounded the clacker till his arm ached, and at length his heart grew sympathetic with the birds’ thwarted desires. They seemed, like himself, to be living in a world which did not want them. Why should he frighten them away? They took upon more and more the aspect of gentle friends and pensioners—the only friends he could claim as being in the least degree interested in him, for his aunt had often told him that she was not. He ceased his rattling, and they alighted anew.") (measure . 240) (bh h - (equal) (time . 19) (line-count . 10) (looseness-spread . 0.1006) (bps q 10 20 29 40 49 60 71 82 94) (piece-count . 97) (avg-piece-length . 20.275092783505155) (avg-looseness . 0.0381) (looseness-sd . 0.03536577127361678) (looseness-variance . 0.0012507377777777778) (looses q 0.0714 0.0773 0.0438 0.0906 -0.0097 0.0485 0.0217 0.009 -0.01 0.6436)) (fu h - (equal) (time . 13) (line-count . 10) (looseness-spread . 0.2224) (bps q 10 18 26 36 45 53 62 73 83) (piece-count . 88) (avg-piece-length . 22.34868181818182) (avg-looseness . 0.0666) (looseness-sd . 0.06826936481936467) (looseness-variance . 0.004660706172839506) (looses q 0.0714 0.0773 0.0438 0.0906 -0.0097 0.2127 -0.0089 -0.0012 0.1236 0.4002)) (bu h - (equal) (time . 31) (line-count . 10) (looseness-spread . 0.1114) (bps q 10 18 26 36 44 53 62 72 83) (piece-count . 88) (avg-piece-length . 22.34868181818182) (avg-looseness . 0.0666) (looseness-sd . 0.03348624925083263) (looseness-variance . 0.0011213288888888887) (looses q 0.0714 0.0773 0.0438 0.0906 0.1006 0.1025 -0.0089 0.0793 0.0431 0.4002)) (fh h - (equal) (time . 13) (line-count . 10) (looseness-spread . 0.1006) (bps q 10 20 29 40 49 60 71 82 94) (piece-count . 97) (avg-piece-length . 20.275092783505155) (avg-looseness . 0.0381) (looseness-sd . 0.03536577127361678) (looseness-variance . 0.0012507377777777778) (looses q 0.0714 0.0773 0.0438 0.0906 -0.0097 0.0485 0.0217 0.009 -0.01 0.6436)) (fh-improved . 49) (bu-improved . 2) (bh-improved . 0)) c (h - (equal) (text u . "“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— you shall. There is enough for us all. Farmer Troutham can afford to let you have some. Eat, then my dear little birdies, and make a good meal!”") (measure . 240) (bh h - (equal) (time . 9) (line-count . 5) (looseness-spread . 0.0258) (bps q 9 19 29 40) (piece-count . 42) (avg-piece-length . 21.47077380952381) (avg-looseness . 0.0437) (looseness-sd . 0.009720178753500371) (looseness-variance . 9.448187500000002e-05) (looses q 0.0394 0.0341 0.0415 0.0599 0.7841)) (fu h - (equal) (time . 6) (line-count . 5) (looseness-spread . 0.0258) (bps q 8 17 27 37) (piece-count . 39) (avg-piece-length . 23.122371794871793) (avg-looseness . 0.0437) (looseness-sd . 0.009720178753500371) (looseness-variance . 9.448187500000002e-05) (looses q 0.0394 0.0341 0.0415 0.0599 0.7841)) (bu h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.0258) (bps q 8 17 27 37) (piece-count . 39) (avg-piece-length . 23.122371794871793) (avg-looseness . 0.0437) (looseness-sd . 0.009720178753500371) (looseness-variance . 9.448187500000002e-05) (looses q 0.0394 0.0341 0.0415 0.0599 0.7841)) (fh h - (equal) (time . 23) (line-count . 5) (looseness-spread . 0.0258) (bps q 9 19 29 40) (piece-count . 42) (avg-piece-length . 21.47077380952381) (avg-looseness . 0.0437) (looseness-sd . 0.009720178753500371) (looseness-variance . 9.448187500000002e-05) (looses q 0.0394 0.0341 0.0415 0.0599 0.7841)) (fh-improved . 8) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "They stayed and ate, inky spots on the nut-brown soil, and Jude enjoyed their appetite. A magic thread of fellow-feeling united his own life with theirs. Puny and sorry as those lives were, they much resembled his own.") (measure . 240) (bh h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.0656) (bps q 10 19 31 41) (piece-count . 42) (avg-piece-length . 21.34755952380953) (avg-looseness . 0.0181) (looseness-sd . 0.025591441440450363) (looseness-variance . 0.0006549218750000001) (looses q 0.0585 -0.0004 -0.0071 0.0213 0.8502)) (fu h - (equal) (time . 6) (line-count . 5) (looseness-spread . 0.0656) (bps q 10 19 29 38) (piece-count . 39) (avg-piece-length . 22.989679487179494) (avg-looseness . 0.0181) (looseness-sd . 0.025591441440450363) (looseness-variance . 0.0006549218750000001) (looses q 0.0585 -0.0004 -0.0071 0.0213 0.8502)) (bu h - (equal) (time . 7) (line-count . 5) (looseness-spread . 0.0656) (bps q 10 19 29 38) (piece-count . 39) (avg-piece-length . 22.989679487179494) (avg-looseness . 0.0181) (looseness-sd . 0.025591441440450363) (looseness-variance . 0.0006549218750000001) (looses q 0.0585 -0.0004 -0.0071 0.0213 0.8502)) (fh h - (equal) (time . 6) (line-count . 5) (looseness-spread . 0.0656) (bps q 10 19 31 41) (piece-count . 42) (avg-piece-length . 21.34755952380953) (avg-looseness . 0.0181) (looseness-sd . 0.025591441440450363) (looseness-variance . 0.0006549218750000001) (looses q 0.0585 -0.0004 -0.0071 0.0213 0.8502)) (fh-improved . 5) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "His clacker he had by this time thrown away from him, as being a mean and sordid instrument, offensive both to the birds and to himself as their friend. All at once he became conscious of a smart blow upon his buttocks, followed by a loud clack, which announced to his surprised senses that the clacker had been the instrument of offence used. The birds and Jude started up simultaneously, and the dazed eyes of the latter beheld the farmer in person, the great Troutham himself, his red face glaring down upon Jude’s cowering frame, the clacker swinging in his hand.") (measure . 240) (bh h - (equal) (time . 38) (line-count . 12) (looseness-spread . 0.076) (bps q 10 21 33 44 55 64 74 85 97 107 118) (piece-count . 120) (avg-piece-length . 19.57299999999999) (avg-looseness . 0.0443) (looseness-sd . 0.018519888795339338) (looseness-variance . 0.0003429862809917355) (looses q 0.0571 0.0425 0.0392 0.0799 0.0446 0.0449 0.0246 0.0419 0.0608 0.048 0.0039 0.8359)) (fu h - (equal) (time . 30) (line-count . 12) (looseness-spread . 0.1235) (bps q 10 18 28 38 47 55 63 71 81 89 96) (piece-count . 101) (avg-piece-length . 23.255049504950488) (avg-looseness . 0.0814) (looseness-sd . 0.033691618007554075) (looseness-variance . 0.001135125123966942) (looses q 0.0571 0.1638 0.07 0.0438 0.0798 0.0635 0.086 0.0403 0.0917 0.0801 0.1191 0.4622)) (bu h - (equal) (time . 21) (line-count . 12) (looseness-spread . 0.1202) (bps q 9 18 28 38 47 55 63 71 81 89 96) (piece-count . 101) (avg-piece-length . 23.255049504950488) (avg-looseness . 0.0814) (looseness-sd . 0.032752167299431) (looseness-variance . 0.0010727044628099174) (looses q 0.1605 0.0605 0.07 0.0438 0.0798 0.0635 0.086 0.0403 0.0917 0.0801 0.1191 0.4622)) (fh h - (equal) (time . 16) (line-count . 12) (looseness-spread . 0.076) (bps q 10 21 33 44 55 64 74 85 97 107 118) (piece-count . 120) (avg-piece-length . 19.57299999999999) (avg-looseness . 0.0443) (looseness-sd . 0.018519888795339338) (looseness-variance . 0.0003429862809917355) (looses q 0.0571 0.0425 0.0392 0.0799 0.0446 0.0449 0.0246 0.0419 0.0608 0.048 0.0039 0.8359)) (fh-improved . 112) (bu-improved . 1) (bh-improved . 0)) c (h - (equal) (text u . "“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear birdies,’ indeed! I’ll tickle your breeches, and see if you say, ‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s how you earn your sixpence a day for keeping the rooks off my corn!”") (measure . 240) (bh h - (equal) (time . 12) (line-count . 7) (looseness-spread . 0.1111) (bps q 10 18 29 39 49 61) (piece-count . 65) (avg-piece-length . 20.546430769230764) (avg-looseness . 0.0595) (looseness-sd . 0.03842009023067663) (looseness-variance . 0.0014761033333333335) (looses q 0.114 0.0383 0.1013 0.0029 0.0377 0.0628 0.6467)) (fu h - (equal) (time . 8) (line-count . 7) (looseness-spread . 0.1111) (bps q 10 18 29 37 46 56) (piece-count . 60) (avg-piece-length . 22.25863333333333) (avg-looseness . 0.0595) (looseness-sd . 0.03842009023067663) (looseness-variance . 0.0014761033333333335) (looses q 0.114 0.0383 0.1013 0.0029 0.0377 0.0628 0.6467)) (bu h - (equal) (time . 12) (line-count . 7) (looseness-spread . 0.1111) (bps q 10 18 29 37 46 56) (piece-count . 60) (avg-piece-length . 22.25863333333333) (avg-looseness . 0.0595) (looseness-sd . 0.03842009023067663) (looseness-variance . 0.0014761033333333335) (looses q 0.114 0.0383 0.1013 0.0029 0.0377 0.0628 0.6467)) (fh h - (equal) (time . 9) (line-count . 7) (looseness-spread . 0.1111) (bps q 10 18 29 39 49 61) (piece-count . 65) (avg-piece-length . 20.546430769230764) (avg-looseness . 0.0595) (looseness-sd . 0.03842009023067663) (looseness-variance . 0.0014761033333333335) (looses q 0.114 0.0383 0.1013 0.0029 0.0377 0.0628 0.6467)) (fh-improved . 10) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham had seized his left hand with his own left, and swinging his slim frame round him at arm’s-length, again struck Jude on the hind parts with the flat side of Jude’s own rattle, till the field echoed with the blows, which were delivered once or twice at each revolution.") (measure . 240) (bh h - (equal) (time . 13) (line-count . 7) (looseness-spread . 0.0763) (bps q 9 18 29 38 50 60) (piece-count . 67) (avg-piece-length . 20.503298507462688) (avg-looseness . 0.0364) (looseness-sd . 0.028213791938616752) (looseness-variance . 0.0007960180555555556) (looses q 0.0614 0.0093 0.0338 0.0671 0.0561 -0.0092 0.5428)) (fu h - (equal) (time . 23) (line-count . 7) (looseness-spread . 0.0763) (bps q 7 16 26 35 46 55) (piece-count . 59) (avg-piece-length . 23.283406779661018) (avg-looseness . 0.0364) (looseness-sd . 0.028213791938616752) (looseness-variance . 0.0007960180555555556) (looses q 0.0614 0.0093 0.0338 0.0671 0.0561 -0.0092 0.5428)) (bu h - (equal) (time . 12) (line-count . 7) (looseness-spread . 0.0763) (bps q 7 16 26 35 46 55) (piece-count . 59) (avg-piece-length . 23.283406779661018) (avg-looseness . 0.0364) (looseness-sd . 0.028213791938616752) (looseness-variance . 0.0007960180555555556) (looses q 0.0614 0.0093 0.0338 0.0671 0.0561 -0.0092 0.5428)) (fh h - (equal) (time . 9) (line-count . 7) (looseness-spread . 0.0763) (bps q 9 18 29 38 50 60) (piece-count . 67) (avg-piece-length . 20.503298507462688) (avg-looseness . 0.0364) (looseness-sd . 0.028213791938616752) (looseness-variance . 0.0007960180555555556) (looses q 0.0614 0.0093 0.0338 0.0671 0.0561 -0.0092 0.5428)) (fh-improved . 19) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as helpless under the centrifugal tendency of his person as a hooked fish swinging to land, and beholding the hill, the rick, the plantation, the path, and the rooks going round and round him in an amazing circular race. “I—I sir—only meant that—there was a good crop in the ground—I saw ‘em sow it—and the rooks could have a little bit for dinner—and you wouldn’t miss it, sir—and Mr. Phillotson said I was to be kind to ‘em—oh, oh, oh!”") (measure . 240) (bh h - (equal) (time . 21) (line-count . 10) (looseness-spread . 0.145) (bps q 8 19 31 43 53 66 77 89 100) (piece-count . 112) (avg-piece-length . 17.802) (avg-looseness . 0.0591) (looseness-sd . 0.04624744504120747) (looseness-variance . 0.0021388261728395057) (looses q 0.1634 0.0206 0.0893 0.0184 0.0279 0.0379 0.0455 0.1008 0.0279 0.0148)) (fu h - (equal) (time . 13) (line-count . 10) (looseness-spread . 0.145) (bps q 8 15 25 34 44 54 65 77 86) (piece-count . 97) (avg-piece-length . 20.554886597938147) (avg-looseness . 0.0606) (looseness-sd . 0.044867272022772145) (looseness-variance . 0.002013072098765432) (looses q 0.1634 0.0952 0.0283 0.0184 0.0279 0.0379 0.0455 0.0353 0.0934 0.0148)) (bu h - (equal) (time . 20) (line-count . 10) (looseness-spread . 0.145) (bps q 8 15 25 34 44 54 65 76 86) (piece-count . 97) (avg-piece-length . 20.554886597938147) (avg-looseness . 0.0606) (looseness-sd . 0.04605196206326657) (looseness-variance . 0.002120783209876543) (looses q 0.1634 0.0952 0.0283 0.0184 0.0279 0.0379 0.0455 0.1008 0.0279 0.0148)) (fh h - (equal) (time . 14) (line-count . 10) (looseness-spread . 0.145) (bps q 8 19 31 43 53 66 77 90 100) (piece-count . 112) (avg-piece-length . 17.802) (avg-looseness . 0.0591) (looseness-sd . 0.04506789391272233) (looseness-variance . 0.002031115061728395) (looses q 0.1634 0.0206 0.0893 0.0184 0.0279 0.0379 0.0455 0.0353 0.0934 0.0148)) (fh-improved . 79) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "This truthful explanation seemed to exasperate the farmer even more than if Jude had stoutly denied saying anything at all, and he still smacked the whirling urchin, the clacks of the instrument continuing to resound all across the field and as far as the ears of distant workers—who gathered thereupon that Jude was pursuing his business of clacking with great assiduity—and echoing from the brand-new church tower just behind the mist, towards the building of which structure the farmer had largely subscribed, to testify his love for God and man.") (measure . 240) (bh h - (equal) (time . 38) (line-count . 11) (looseness-spread . 0.1208) (bps q 12 21 32 41 54 65 78 87 96 106) (piece-count . 116) (avg-piece-length . 19.530073275862062) (avg-looseness . 0.0538) (looseness-sd . 0.03154775586313549) (looseness-variance . 0.0009952608999999999) (looses q 0.0291 0.0666 0.1209 0.0677 0.0552 0.0759 0.0001 0.0498 0.0208 0.0518 0.1104)) (fu h - (equal) (time . 29) (line-count . 12) (looseness-spread . 0.1443) (bps q 7 16 25 32 42 50 58 66 74 82 91) (piece-count . 92) (avg-piece-length . 24.624875) (avg-looseness . 0.0784) (looseness-sd . 0.04881319256712309) (looseness-variance . 0.002382727768595041) (looses q 0.0291 0.0666 0.1209 0.151 0.0357 0.1398 0.0669 0.0067 0.1402 0.0361 0.069 0.8331)) (bu h - (equal) (time . 20) (line-count . 12) (looseness-spread . 0.0986) (bps q 6 15 24 32 41 50 58 65 74 82 91) (piece-count . 92) (avg-piece-length . 24.624875) (avg-looseness . 0.0784) (looseness-sd . 0.024987464625882954) (looseness-variance . 0.0006243733884297519) (looses q 0.1014 0.1347 0.0528 0.0787 0.0982 0.0772 0.0669 0.079 0.0679 0.0361 0.069 0.8331)) (fh h - (equal) (time . 15) (line-count . 11) (looseness-spread . 0.108) (bps q 12 21 32 42 55 66 79 88 96 106) (piece-count . 116) (avg-piece-length . 19.530073275862062) (avg-looseness . 0.055) (looseness-sd . 0.03455700941921913) (looseness-variance . 0.0011941869) (looses q 0.0291 0.0666 0.1209 0.0157 0.0349 0.0529 0.0129 0.0548 0.1103 0.0518 0.1104)) (fh-improved . 145) (bu-improved . 5) (bh-improved . 5)) c (h - (equal) (text u . "Presently Troutham grew tired of his punitive task, and depositing the quivering boy on his legs, took a sixpence from his pocket and gave it him in payment for his day’s work, telling him to go home and never let him see him in one of those fields again.") (measure . 240) (bh h - (equal) (time . 10) (line-count . 5) (looseness-spread . 0.0359) (bps q 9 22 34 45) (piece-count . 55) (avg-piece-length . 18.821527272727277) (avg-looseness . 0.0184) (looseness-sd . 0.014136013405483174) (looseness-variance . 0.000199826875) (looses q 0.0364 0.0271 0.0005 0.0095 0.1899)) (fu h - (equal) (time . 7) (line-count . 5) (looseness-spread . 0.0359) (bps q 8 18 28 39) (piece-count . 49) (avg-piece-length . 21.126204081632654) (avg-looseness . 0.0184) (looseness-sd . 0.014136013405483174) (looseness-variance . 0.000199826875) (looses q 0.0364 0.0271 0.0005 0.0095 0.1899)) (bu h - (equal) (time . 9) (line-count . 5) (looseness-spread . 0.0359) (bps q 8 18 28 39) (piece-count . 49) (avg-piece-length . 21.126204081632654) (avg-looseness . 0.0184) (looseness-sd . 0.014136013405483174) (looseness-variance . 0.000199826875) (looses q 0.0364 0.0271 0.0005 0.0095 0.1899)) (fh h - (equal) (time . 7) (line-count . 5) (looseness-spread . 0.0359) (bps q 9 22 34 45) (piece-count . 55) (avg-piece-length . 18.821527272727277) (avg-looseness . 0.0184) (looseness-sd . 0.014136013405483174) (looseness-variance . 0.000199826875) (looses q 0.0364 0.0271 0.0005 0.0095 0.1899)) (fh-improved . 17) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Jude leaped out of arm’s reach, and walked along the trackway weeping—not from the pain, though that was keen enough; not from the perception of the flaw in the terrestrial scheme, by which what was good for God’s birds was bad for God’s gardener; but with the awful sense that he had wholly disgraced himself before he had been a year in the parish, and hence might be a burden to his great-aunt for life.") (measure . 240) (bh h - (equal) (time . 17) (line-count . 9) (looseness-spread . 0.0541) (bps q 9 19 30 41 51 61 73 84) (piece-count . 87) (avg-piece-length . 19.24425862068965) (avg-looseness . 0.065) (looseness-sd . 0.017658315144712985) (looseness-variance . 0.00031181609375000003) (looses q 0.0677 0.0462 0.0583 0.0759 0.0946 0.0405 0.053 0.0837 0.7772)) (fu h - (equal) (time . 26) (line-count . 9) (looseness-spread . 0.1803) (bps q 10 18 27 36 45 54 64 74) (piece-count . 77) (avg-piece-length . 21.743512987012977) (avg-looseness . 0.0682) (looseness-sd . 0.048280586160484834) (looseness-variance . 0.0023310149999999996) (looses q -0.0046 0.0322 0.0723 0.0654 0.0679 0.1757 0.053 0.0837 0.7772)) (bu h - (equal) (time . 15) (line-count . 9) (looseness-spread . 0.1826) (bps q 9 17 26 36 45 54 64 74) (piece-count . 77) (avg-piece-length . 21.743512987012977) (avg-looseness . 0.0682) (looseness-sd . 0.0477623020801971) (looseness-variance . 0.0022812375) (looses q 0.0677 0.0462 0.0583 -0.0069 0.0679 0.1757 0.053 0.0837 0.7772)) (fh h - (equal) (time . 12) (line-count . 9) (looseness-spread . 0.1132) (bps q 10 20 31 42 52 62 73 84) (piece-count . 87) (avg-piece-length . 19.24425862068965) (avg-looseness . 0.0665) (looseness-sd . 0.03525756789329065) (looseness-variance . 0.00124309609375) (looses q -0.0046 0.0322 0.0723 0.0654 0.0679 0.1066 0.1086 0.0837 0.7772)) (fh-improved . 46) (bu-improved . 3) (bh-improved . 6)) c (h - (equal) (text u . "With this shadow on his mind he did not care to show himself in the village, and went homeward by a roundabout track behind a high hedge and across a pasture. Here he beheld scores of coupled earthworms lying half their length on the surface of the damp ground, as they always did in such weather at that time of the year. It was impossible to advance in regular steps without crushing some of them at each tread.") (measure . 240) (bh h - (equal) (time . 17) (line-count . 9) (looseness-spread . 0.0838) (bps q 11 23 33 44 55 65 78 91) (piece-count . 92) (avg-piece-length . 18.551874999999995) (avg-looseness . 0.0355) (looseness-sd . 0.02613510271167879) (looseness-variance . 0.0006830435937499999) (looses q 0.0867 0.0272 0.0367 0.0544 0.0499 0.0217 0.0029 0.0046 0.899)) (fu h - (equal) (time . 26) (line-count . 9) (looseness-spread . 0.2037) (bps q 11 21 30 37 46 56 67 76) (piece-count . 78) (avg-piece-length . 21.881698717948716) (avg-looseness . 0.0495) (looseness-sd . 0.06371532390249617) (looseness-variance . 0.004059642499999999) (looses q 0.0867 -0.004 0.0367 0.1991 0.0228 -0.0046 0.0046 0.0551 0.8007)) (bu h - (equal) (time . 15) (line-count . 9) (looseness-spread . 0.1148) (bps q 11 19 28 37 46 56 67 76) (piece-count . 78) (avg-piece-length . 21.881698717948716) (avg-looseness . 0.0495) (looseness-sd . 0.03866723419123742) (looseness-variance . 0.0014951550000000002) (looses q 0.0867 0.0826 0.1102 0.039 0.0228 -0.0046 0.0046 0.0551 0.8007)) (fh h - (equal) (time . 12) (line-count . 9) (looseness-spread . 0.0907) (bps q 11 24 34 44 55 65 78 91) (piece-count . 92) (avg-piece-length . 18.551874999999995) (avg-looseness . 0.0355) (looseness-sd . 0.03374260798678727) (looseness-variance . 0.00113856359375) (looses q 0.0867 -0.004 0.0367 0.0856 0.0499 0.0217 0.0029 0.0046 0.899)) (fh-improved . 58) (bu-improved . 4) (bh-improved . 2)) c (h - (equal) (text u . "Though Farmer Troutham had just hurt him, he was a boy who could not himself bear to hurt anything. He had never brought home a nest of young birds without lying awake in misery half the night after, and often reinstating them and the nest in their original place the next morning. He could scarcely bear to see trees cut down or lopped, from a fancy that it hurt them; and late pruning, when the sap was up and the tree bled profusely, had been a positive grief to him in his infancy. This weakness of character, as it may be called, suggested that he was the sort of man who was born to ache a good deal before the fall of the curtain upon his unnecessary life should signify that all was well with him again. He carefully picked his way on tiptoe among the earthworms, without killing a single one.") (measure . 240) (bh h - (equal) (time . 49) (line-count . 16) (looseness-spread . 0.0917) (bps q 9 21 31 42 54 65 76 88 101 114 126 138 150 161 171) (piece-count . 177) (avg-piece-length . 18.446454802259886) (avg-looseness . 0.0368) (looseness-sd . 0.02773101272342333) (looseness-variance . 0.0007690090666666666) (looses q -0.0053 0.0499 0.0596 0.0676 0.0127 0.0242 0.0565 0.0159 0.0081 0.0147 0.0596 -0.0034 0.0435 0.0614 0.0864 0.4856)) (fu h - (equal) (time . 21) (line-count . 16) (looseness-spread . 0.1751) (bps q 9 19 29 38 47 55 66 77 87 96 106 118 127 137 146) (piece-count . 151) (avg-piece-length . 21.62266556291391) (avg-looseness . 0.0554) (looseness-sd . 0.04072874169428759) (looseness-variance . 0.0016588304000000004) (looses q -0.0053 0.0499 0.0596 0.0676 0.1014 0.042 0.05 -0.0101 0.0459 0.165 0.0178 0.063 0.047 0.054 0.0826 0.2333)) (bu h - (equal) (time . 31) (line-count . 16) (looseness-spread . 0.1294) (bps q 9 19 29 38 47 55 66 76 86 96 106 118 127 137 146) (piece-count . 151) (avg-piece-length . 21.62266556291391) (avg-looseness . 0.0554) (looseness-sd . 0.03279940649869547) (looseness-variance . 0.0010758010666666667) (looses q -0.0053 0.0499 0.0596 0.0676 0.1014 0.042 0.05 0.0726 0.1241 0.0041 0.0178 0.063 0.047 0.054 0.0826 0.2333)) (fh h - (equal) (time . 37) (line-count . 16) (looseness-spread . 0.0917) (bps q 9 21 31 42 55 65 77 88 101 114 126 138 150 161 171) (piece-count . 177) (avg-piece-length . 18.446454802259886) (avg-looseness . 0.0368) (looseness-sd . 0.02819328052332092) (looseness-variance . 0.0007948610666666667) (looses q -0.0053 0.0499 0.0596 0.0676 0.0005 0.0364 0.0184 0.054 0.0081 0.0147 0.0596 -0.0034 0.0435 0.0614 0.0864 0.4856)) (fh-improved . 192) (bu-improved . 2) (bh-improved . 2)) c (h - (equal) (text u . "On entering the cottage he found his aunt selling a penny loaf to a little girl, and when the customer was gone she said, “Well, how do you come to be back here in the middle of the morning like this?”") (measure . 240) (bh h - (equal) (time . 8) (line-count . 4) (looseness-spread . 0.0523) (bps q 13 26 37) (piece-count . 48) (avg-piece-length . 16.973041666666667) (avg-looseness . 0.0268) (looseness-sd . 0.023851252005339725) (looseness-variance . 0.0005688822222222222) (looses q 0.0418 -0.0069 0.0454 0.174)) (fu h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.0523) (bps q 10 21 32) (piece-count . 41) (avg-piece-length . 19.870878048780487) (avg-looseness . 0.0268) (looseness-sd . 0.023851252005339725) (looseness-variance . 0.0005688822222222222) (looses q 0.0418 -0.0069 0.0454 0.174)) (bu h - (equal) (time . 10) (line-count . 4) (looseness-spread . 0.0523) (bps q 10 21 32) (piece-count . 41) (avg-piece-length . 19.870878048780487) (avg-looseness . 0.0268) (looseness-sd . 0.023851252005339725) (looseness-variance . 0.0005688822222222222) (looses q 0.0418 -0.0069 0.0454 0.174)) (fh h - (equal) (time . 6) (line-count . 4) (looseness-spread . 0.0523) (bps q 13 26 37) (piece-count . 48) (avg-piece-length . 16.973041666666667) (avg-looseness . 0.0268) (looseness-sd . 0.023851252005339725) (looseness-variance . 0.0005688822222222222) (looses q 0.0418 -0.0069 0.0454 0.174)) (fh-improved . 13) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Mr. Troutham have turned me away because I let the rooks have a few peckings of corn. And there’s my wages—the last I shall ever hae!”") (measure . 240) (bh h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0193) (bps q 9 20) (piece-count . 28) (avg-piece-length . 20.311464285714287) (avg-looseness . 0.0494) (looseness-sd . 0.009649999999999999) (looseness-variance . 9.312249999999997e-05) (looses q 0.059 0.0397 0.3121)) (fu h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.0193) (bps q 9 19) (piece-count . 27) (avg-piece-length . 21.06374074074074) (avg-looseness . 0.0494) (looseness-sd . 0.009649999999999999) (looseness-variance . 9.312249999999997e-05) (looses q 0.059 0.0397 0.3121)) (bu h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0193) (bps q 9 19) (piece-count . 27) (avg-piece-length . 21.06374074074074) (avg-looseness . 0.0494) (looseness-sd . 0.009649999999999999) (looseness-variance . 9.312249999999997e-05) (looses q 0.059 0.0397 0.3121)) (fh h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.0193) (bps q 9 20) (piece-count . 28) (avg-piece-length . 20.311464285714287) (avg-looseness . 0.0494) (looseness-sd . 0.009649999999999999) (looseness-variance . 9.312249999999997e-05) (looses q 0.059 0.0397 0.3121)) (fh-improved . 1) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Ah!” said his aunt, suspending her breath. And she opened upon him a lecture on how she would now have him all the spring upon her hands doing nothing. “If you can’t skeer birds, what can ye do? There! don’t ye look so deedy! Farmer Troutham is not so much better than myself, come to that. But ‘tis as Job said, ‘Now they that are younger than I have me in derision, whose fathers I would have disdained to have set with the dogs of my flock.’ His father was my father’s journeyman, anyhow, and I must have been a fool to let ‘ee go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of mischty.”") (measure . 240) (bh h - (equal) (time . 25) (line-count . 13) (looseness-spread . 0.0836) (bps q 10 21 31 42 50 62 73 84 95 106 119 130) (piece-count . 132) (avg-piece-length . 19.122496212121213) (avg-looseness . 0.0543) (looseness-sd . 0.02249764648184832) (looseness-variance . 0.0005061440972222222) (looses q 0.0965 0.0591 0.0503 0.0397 0.053 0.0129 0.0671 0.0184 0.0626 0.0458 0.0768 0.0693 0.8378)) (fu h - (equal) (time . 16) (line-count . 13) (looseness-spread . 0.1351) (bps q 9 19 28 38 47 57 68 77 88 96 109 120) (piece-count . 121) (avg-piece-length . 20.860904958677686) (avg-looseness . 0.0554) (looseness-sd . 0.035664644607790494) (looseness-variance . 0.0012719668749999998) (looses q 0.021 0.043 0.142 0.0397 0.0117 0.0542 0.0671 0.0876 0.0069 0.0458 0.0768 0.0693 0.8378)) (bu h - (equal) (time . 23) (line-count . 13) (looseness-spread . 0.0896) (bps q 8 18 28 38 46 57 67 77 88 96 109 120) (piece-count . 121) (avg-piece-length . 20.860904958677686) (avg-looseness . 0.0554) (looseness-sd . 0.0264092826167871) (looseness-variance . 0.0006974502083333333) (looses q 0.0965 0.0591 0.0503 0.0397 0.053 0.0129 0.0935 0.0613 0.0069 0.0458 0.0768 0.0693 0.8378)) (fh h - (equal) (time . 32) (line-count . 13) (looseness-spread . 0.1169) (bps q 11 22 32 42 51 62 73 84 95 106 119 130) (piece-count . 132) (avg-piece-length . 19.122496212121213) (avg-looseness . 0.0532) (looseness-sd . 0.030414506772627796) (looseness-variance . 0.0009250422222222221) (looses q 0.021 0.043 0.0395 0.1286 0.0117 0.0542 0.0671 0.0184 0.0626 0.0458 0.0768 0.0693 0.8378)) (fh-improved . 71) (bu-improved . 4) (bh-improved . 4)) c (h - (equal) (text u . "More angry with Jude for demeaning her by coming there than for dereliction of duty, she rated him primarily from that point of view, and only secondarily from a moral one.") (measure . 240) (bh h - (equal) (time . 23) (line-count . 4) (looseness-spread . 0.0151) (bps q 11 23 36) (piece-count . 39) (avg-piece-length . 18.52089743589744) (avg-looseness . 0.0184) (looseness-sd . 0.006467525716136651) (looseness-variance . 4.182888888888889e-05) (looses q 0.0122 0.0273 0.0156 0.6714)) (fu h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.1783) (bps q 9 18 26) (piece-count . 30) (avg-piece-length . 24.077166666666663) (avg-looseness . 0.0993) (looseness-sd . 0.07284838135927707) (looseness-variance . 0.0053068866666666666) (looses q 0.0122 0.0952 0.1905 0.4421)) (bu h - (equal) (time . 6) (line-count . 4) (looseness-spread . 0.1362) (bps q 8 17 26) (piece-count . 30) (avg-piece-length . 24.077166666666663) (avg-looseness . 0.0993) (looseness-sd . 0.055747605828013407) (looseness-variance . 0.0031077955555555547) (looses q 0.1646 0.0284 0.105 0.4421)) (fh h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.0151) (bps q 11 23 36) (piece-count . 39) (avg-piece-length . 18.52089743589744) (avg-looseness . 0.0184) (looseness-sd . 0.006467525716136651) (looseness-variance . 4.182888888888889e-05) (looses q 0.0122 0.0273 0.0156 0.6714)) (fh-improved . 17) (bu-improved . 2) (bh-improved . 0)) c (h - (equal) (text u . "“Not that you should have let the birds eat what Farmer Troutham planted. Of course you was wrong in that. Jude, Jude, why didstn’t go off with that schoolmaster of thine to Christminster or somewhere? But, oh no—poor or’nary child—there never was any sprawl on thy side of the family, and never will be!”") (measure . 240) (bh h - (equal) (time . 12) (line-count . 7) (looseness-spread . 0.109) (bps q 10 18 29 40 48 60) (piece-count . 62) (avg-piece-length . 20.614677419354845) (avg-looseness . 0.07) (looseness-sd . 0.04087478508268338) (looseness-variance . 0.0016707480555555555) (looses q 0.1033 -0.0057 0.0901 0.0933 0.103 0.0361 0.7389)) (fu h - (equal) (time . 8) (line-count . 7) (looseness-spread . 0.214) (bps q 10 18 28 34 42 53) (piece-count . 55) (avg-piece-length . 23.238363636363637) (avg-looseness . 0.0724) (looseness-sd . 0.07315549079415253) (looseness-variance . 0.0053517258333333345) (looses q 0.1033 -0.0057 0.0901 0.2083 0.002 0.0361 0.7389)) (bu h - (equal) (time . 10) (line-count . 7) (looseness-spread . 0.1395) (bps q 10 17 26 34 42 53) (piece-count . 55) (avg-piece-length . 23.238363636363637) (avg-looseness . 0.0723) (looseness-sd . 0.05315626857567119) (looseness-variance . 0.0028255888888888887) (looses q 0.1033 0.1252 0.1415 0.0259 0.002 0.0361 0.7389)) (fh h - (equal) (time . 9) (line-count . 7) (looseness-spread . 0.109) (bps q 10 18 29 40 48 60) (piece-count . 62) (avg-piece-length . 20.614677419354845) (avg-looseness . 0.07) (looseness-sd . 0.04087478508268338) (looseness-variance . 0.0016707480555555555) (looses q 0.1033 -0.0057 0.0901 0.0933 0.103 0.0361 0.7389)) (fh-improved . 20) (bu-improved . 3) (bh-improved . 0)) c (h - (equal) (text u . "“Where is this beautiful city, Aunt—this place where Mr. Phillotson is gone to?” asked the boy, after meditating in silence.") (measure . 240) (bh h - (equal) (time . 20) (line-count . 3) (looseness-spread . 0.0457) (bps q 10 20) (piece-count . 27) (avg-piece-length . 18.773111111111113) (avg-looseness . 0.11) (looseness-sd . 0.022849999999999995) (looseness-variance . 0.0005221224999999998) (looses q 0.1329 0.0872 0.5018)) (fu h - (equal) (time . 3) (line-count . 3) (looseness-spread . 0.0457) (bps q 8 17) (piece-count . 21) (avg-piece-length . 24.136857142857142) (avg-looseness . 0.11) (looseness-sd . 0.022849999999999995) (looseness-variance . 0.0005221224999999998) (looses q 0.1329 0.0872 0.5018)) (bu h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.0457) (bps q 8 17) (piece-count . 21) (avg-piece-length . 24.136857142857142) (avg-looseness . 0.11) (looseness-sd . 0.022849999999999995) (looseness-variance . 0.0005221224999999998) (looses q 0.1329 0.0872 0.5018)) (fh h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.0457) (bps q 10 20) (piece-count . 27) (avg-piece-length . 18.773111111111113) (avg-looseness . 0.11) (looseness-sd . 0.022849999999999995) (looseness-variance . 0.0005221224999999998) (looses q 0.1329 0.0872 0.5018)) (fh-improved . 5) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Lord! you ought to know where the city of Christminster is. Near a score of miles from here. It is a place much too good for you ever to have much to do with, poor boy, I’m a-thinking.”") (measure . 240) (bh h - (equal) (time . 7) (line-count . 4) (looseness-spread . 0.0126) (bps q 10 23 34) (piece-count . 42) (avg-piece-length . 18.068964285714287) (avg-looseness . 0.0558) (looseness-sd . 0.005322488974989886) (looseness-variance . 2.832888888888889e-05) (looses q 0.0539 0.0631 0.0505 0.3537)) (fu h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.1747) (bps q 9 19 31) (piece-count . 39) (avg-piece-length . 19.458884615384616) (avg-looseness . 0.0766) (looseness-sd . 0.07955100390455311) (looseness-variance . 0.006328362222222223) (looses q 0.1889 0.0142 0.0268 0.305)) (bu h - (equal) (time . 7) (line-count . 4) (looseness-spread . 0.1747) (bps q 9 19 31) (piece-count . 39) (avg-piece-length . 19.458884615384616) (avg-looseness . 0.0766) (looseness-sd . 0.07955100390455311) (looseness-variance . 0.006328362222222223) (looses q 0.1889 0.0142 0.0268 0.305)) (fh h - (equal) (time . 6) (line-count . 4) (looseness-spread . 0.0126) (bps q 10 23 34) (piece-count . 42) (avg-piece-length . 18.068964285714287) (avg-looseness . 0.0558) (looseness-sd . 0.005322488974989886) (looseness-variance . 2.832888888888889e-05) (looses q 0.0539 0.0631 0.0505 0.3537)) (fh-improved . 8) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as that. We’ve never had anything to do with folk in Christminster, nor folk in Christminster with we.”") (measure . 240) (bh h - (equal) (time . 20) (line-count . 4) (looseness-spread . 0.024) (bps q 10 19 31) (piece-count . 35) (avg-piece-length . 20.56594285714286) (avg-looseness . 0.0828) (looseness-sd . 0.009830677607480692) (looseness-variance . 9.66422222222223e-05) (looses q 0.0839 0.0942 0.0702 0.558)) (fu h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.1714) (bps q 9 17 27) (piece-count . 29) (avg-piece-length . 24.820965517241376) (avg-looseness . 0.087) (looseness-sd . 0.07000734882059803) (looseness-variance . 0.004901028888888889) (looses q 0.0839 0.1742 0.0028 0.558)) (bu h - (equal) (time . 6) (line-count . 4) (looseness-spread . 0.1617) (bps q 8 17 27) (piece-count . 29) (avg-piece-length . 24.820965517241376) (avg-looseness . 0.087) (looseness-sd . 0.06618017494352486) (looseness-variance . 0.004379815555555556) (looses q 0.1645 0.0936 0.0028 0.558)) (fh h - (equal) (time . 4) (line-count . 4) (looseness-spread . 0.024) (bps q 10 19 31) (piece-count . 35) (avg-piece-length . 20.56594285714286) (avg-looseness . 0.0828) (looseness-sd . 0.009830677607480692) (looseness-variance . 9.66422222222223e-05) (looses q 0.0839 0.0942 0.0702 0.558)) (fh-improved . 7) (bu-improved . 1) (bh-improved . 0)) c (h - (equal) (text u . "Jude went out, and, feeling more than ever his existence to be an undemanded one, he lay down upon his back on a heap of litter near the pig-sty. The fog had by this time become more translucent, and the position of the sun could be seen through it. He pulled his straw hat over his face, and peered through the interstices of the plaiting at the white brightness, vaguely reflecting. Growing up brought responsibilities, he found. Events did not rhyme quite as he had thought. Nature’s logic was too horrid for him to care for. That mercy towards one set of creatures was cruelty towards another sickened his sense of harmony. As you got older, and felt yourself to be at the centre of your time, and not at a point in its circumference, as you had felt when you were little, you were seized with a sort of shuddering, he perceived. All around you there seemed to be something glaring, garish, rattling, and the noises and glares hit upon the little cell called your life, and shook it, and warped it.") (measure . 240) (bh h - (equal) (time . 59) (line-count . 20) (looseness-spread . 0.0991) (bps q 11 22 35 45 56 66 77 86 97 107 118 128 139 154 167 179 189 201 213) (piece-count . 217) (avg-piece-length . 18.67255529953916) (avg-looseness . 0.0467) (looseness-sd . 0.030883772823648258) (looseness-variance . 0.0009538074238227148) (looses q 0.0359 0.0346 0.0939 0.036 0.0995 0.0752 0.056 0.0305 0.0855 0.0266 0.0373 0.0493 0.0999 0.0031 0.0164 0.0515 0.0512 0.0047 0.0008 0.5617)) (fu h - (equal) (time . 26) (line-count . 20) (looseness-spread . 0.1632) (bps q 9 18 30 39 50 60 69 75 82 91 101 108 118 130 141 151 158 166 176) (piece-count . 183) (avg-piece-length . 22.141773224043693) (avg-looseness . 0.0637) (looseness-sd . 0.046501419273607486) (looseness-variance . 0.002162381994459834) (looses q 0.1228 0.0701 0.0858 0.0362 0.0184 0.0752 0.056 0.0305 0.0855 0.106 0.0373 0.1601 -0.0031 0.0067 0.0198 0.1408 0.0997 0.0019 0.0608 0.2995)) (bu h - (equal) (time . 55) (line-count . 20) (looseness-spread . 0.1219) (bps q 9 18 30 39 49 60 69 75 82 91 100 108 117 128 139 150 158 166 176) (piece-count . 183) (avg-piece-length . 22.141773224043693) (avg-looseness . 0.0643) (looseness-sd . 0.03427598918927136) (looseness-variance . 0.0011748434349030472) (looses q 0.1228 0.0701 0.0858 0.0362 0.059 0.025 0.056 0.0305 0.0855 0.106 0.1179 0.0795 0.0882 0.0914 0.0529 0.0009 0.051 0.0019 0.0608 0.2995)) (fh h - (equal) (time . 29) (line-count . 20) (looseness-spread . 0.1487) (bps q 11 22 36 46 57 66 77 86 97 107 118 128 139 154 167 179 190 201 213) (piece-count . 217) (avg-piece-length . 18.67255529953916) (avg-looseness . 0.0462) (looseness-sd . 0.036661140522039566) (looseness-variance . 0.0013440392243767314) (looses q 0.0359 0.0346 0.0236 0.034 0.0925 0.1448 0.056 0.0305 0.0855 0.0266 0.0373 0.0493 0.0999 0.0031 0.0164 0.0515 -0.0039 0.0597 0.0008 0.5617)) (fh-improved . 322) (bu-improved . 8) (bh-improved . 4)) c (h - (equal) (text u . "Then, like the natural boy, he forgot his despondency, and sprang up. During the remainder of the morning he helped his aunt, and in the afternoon, when there was nothing more to be done, he went into the village. Here he asked a man whereabouts Christminster lay.") (measure . 240) (bh h - (equal) (time . 11) (line-count . 6) (looseness-spread . 0.0605) (bps q 11 22 33 44 55) (piece-count . 58) (avg-piece-length . 19.236922413793103) (avg-looseness . 0.0582) (looseness-sd . 0.02113474863820244) (looseness-variance . 0.00044667759999999997) (looses q 0.0954 0.0349 0.0659 0.0503 0.0446 0.6674)) (fu h - (equal) (time . 7) (line-count . 6) (looseness-spread . 0.2347) (bps q 8 15 25 34 44) (piece-count . 46) (avg-piece-length . 24.25525) (avg-looseness . 0.1118) (looseness-sd . 0.08805468755267944) (looseness-variance . 0.0077536279999999985) (looses q 0.2473 0.0176 0.1437 0.0126 0.1378 0.4131)) (bu h - (equal) (time . 22) (line-count . 6) (looseness-spread . 0.2347) (bps q 8 15 25 34 44) (piece-count . 46) (avg-piece-length . 24.25525) (avg-looseness . 0.1118) (looseness-sd . 0.08805468755267944) (looseness-variance . 0.0077536279999999985) (looses q 0.2473 0.0176 0.1437 0.0126 0.1378 0.4131)) (fh h - (equal) (time . 7) (line-count . 6) (looseness-spread . 0.0605) (bps q 11 22 33 44 55) (piece-count . 58) (avg-piece-length . 19.236922413793103) (avg-looseness . 0.0582) (looseness-sd . 0.02113474863820244) (looseness-variance . 0.00044667759999999997) (looses q 0.0954 0.0349 0.0659 0.0503 0.0446 0.6674)) (fh-improved . 39) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Christminster? Oh, well, out by there yonder; though I’ve never bin there—not I. I’ve never had any business at such a place.”") (measure . 240) (bh h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.092) (bps q 10 20) (piece-count . 27) (avg-piece-length . 19.480574074074074) (avg-looseness . 0.0879) (looseness-sd . 0.046) (looseness-variance . 0.002116) (looses q 0.1339 0.0419 0.4594)) (fu h - (equal) (time . 3) (line-count . 3) (looseness-spread . 0.092) (bps q 7 17) (piece-count . 23) (avg-piece-length . 22.8685) (avg-looseness . 0.0879) (looseness-sd . 0.046) (looseness-variance . 0.002116) (looses q 0.1339 0.0419 0.4594)) (bu h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.092) (bps q 7 17) (piece-count . 23) (avg-piece-length . 22.8685) (avg-looseness . 0.0879) (looseness-sd . 0.046) (looseness-variance . 0.002116) (looses q 0.1339 0.0419 0.4594)) (fh h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.092) (bps q 10 20) (piece-count . 27) (avg-piece-length . 19.480574074074074) (avg-looseness . 0.0879) (looseness-sd . 0.046) (looseness-variance . 0.002116) (looses q 0.1339 0.0419 0.4594)) (fh-improved . 6) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "The man pointed north-eastward, in the very direction where lay that field in which Jude had so disgraced himself. There was something unpleasant about the coincidence for the moment, but the fearsomeness of this fact rather increased his curiosity about the city. The farmer had said he was never to be seen in that field again; yet Christminster lay across it, and the path was a public one. So, stealing out of the hamlet, he descended into the same hollow which had witnessed his punishment in the morning, never swerving an inch from the path, and climbing up the long and tedious ascent on the other side till the track joined the highway by a little clump of trees. Here the ploughed land ended, and all before him was bleak open down.") (measure . 240) (bh h - (equal) (time . 31) (line-count . 15) (looseness-spread . 0.1323) (bps q 10 20 30 41 51 61 73 85 96 108 118 129 142 151) (piece-count . 158) (avg-piece-length . 19.360905063291128) (avg-looseness . 0.0501) (looseness-sd . 0.03530515947725326) (looseness-variance . 0.0012464542857142855) (looses q 0.0281 0.144 0.0122 0.0258 0.0405 0.0749 0.043 0.0719 0.0516 0.0366 0.0998 0.032 0.0117 0.0293 0.3209)) (fu h - (equal) (time . 39) (line-count . 15) (looseness-spread . 0.1548) (bps q 8 18 24 32 39 49 59 70 79 87 96 106 117 126) (piece-count . 133) (avg-piece-length . 23.000172932330816) (avg-looseness . 0.0537) (looseness-sd . 0.051613890809449704) (looseness-variance . 0.0026639937244897966) (looses q 0.1381 0.0476 0.0122 0.1128 0.1451 0.0142 -0.0097 0.1185 0.0731 -0.0001 0.0275 0.032 0.0117 0.0293 0.3209)) (bu h - (equal) (time . 27) (line-count . 15) (looseness-spread . 0.1548) (bps q 8 18 24 32 39 49 59 70 79 87 96 106 117 126) (piece-count . 133) (avg-piece-length . 23.000172932330816) (avg-looseness . 0.0537) (looseness-sd . 0.051613890809449704) (looseness-variance . 0.0026639937244897966) (looses q 0.1381 0.0476 0.0122 0.1128 0.1451 0.0142 -0.0097 0.1185 0.0731 -0.0001 0.0275 0.032 0.0117 0.0293 0.3209)) (fh h - (equal) (time . 37) (line-count . 15) (looseness-spread . 0.1117) (bps q 10 21 30 41 51 62 73 86 97 108 119 130 143 152) (piece-count . 158) (avg-piece-length . 19.360905063291128) (avg-looseness . 0.0444) (looseness-sd . 0.03571941106080295) (looseness-variance . 0.0012758763265306122) (looses q 0.0281 0.0748 0.0679 0.0258 0.0405 0.0261 0.0917 0.0157 0.047 0.0974 0.0086 -0.0001 -0.0066 0.1051 0.3766)) (fh-improved . 213) (bu-improved . 0) (bh-improved . 8)) c (h - (equal) (text u . "The schoolmaster was leaving the village, and everybody seemed sorry. The miller at Cresscombe lent him the small white tilted cart and horse to carry his goods to the city of his destination, about twenty miles off, such a vehicle proving of quite sufficient size for the departing teacher’s effects. For the schoolhouse had been partly furnished by the managers, and the only cumbersome article possessed by the master, in addition to the packing-case of books, was a cottage piano that he had bought at an auction during the year in which he thought of learning instrumental music. But the enthusiasm having waned he had never acquired any skill in playing, and the purchased article had been a perpetual trouble to him ever since in moving house.") (measure . 270) (bh h - (equal) (time . 48) (line-count . 13) (looseness-spread . 0.0668) (bps q 13 24 36 50 63 74 87 102 117 129 141 155) (piece-count . 168) (avg-piece-length . 18.455788690476183) (avg-looseness . 0.0314) (looseness-sd . 0.021025890125166057) (looseness-variance . 0.00044208805555555553) (looses q 0.0364 -0.0005 0.0657 0.053 0.0284 0.0298 0.0191 -0.0011 0.0053 0.0476 0.0451 0.0478 0.1163)) (fu h - (equal) (time . 19) (line-count . 13) (looseness-spread . 0.0974) (bps q 8 18 31 40 49 58 66 78 90 99 108 119) (piece-count . 128) (avg-piece-length . 24.223222656249998) (avg-looseness . 0.0314) (looseness-sd . 0.025747195100739723) (looseness-variance . 0.0006629180555555556) (looses q 0.0364 -0.0005 0.0224 0.0963 0.0284 0.0298 0.0191 -0.0011 0.0053 0.0476 0.0451 0.0478 0.1163)) (bu h - (equal) (time . 41) (line-count . 13) (looseness-spread . 0.0668) (bps q 8 18 30 40 49 58 66 78 90 99 108 119) (piece-count . 128) (avg-piece-length . 24.223222656249998) (avg-looseness . 0.0314) (looseness-sd . 0.021025890125166057) (looseness-variance . 0.00044208805555555553) (looses q 0.0364 -0.0005 0.0657 0.053 0.0284 0.0298 0.0191 -0.0011 0.0053 0.0476 0.0451 0.0478 0.1163)) (fh h - (equal) (time . 21) (line-count . 13) (looseness-spread . 0.1074) (bps q 13 24 37 51 63 74 87 102 117 129 141 155) (piece-count . 168) (avg-piece-length . 18.455788690476183) (avg-looseness . 0.0304) (looseness-sd . 0.028750115941795204) (looseness-variance . 0.0008265691666666667) (looses q 0.0364 -0.0005 0.0224 0.0072 0.1063 0.0298 0.0191 -0.0011 0.0053 0.0476 0.0451 0.0478 0.1163)) (fh-improved . 229) (bu-improved . 1) (bh-improved . 2)) c (h - (equal) (text u . "The rector had gone away for the day, being a man who disliked the sight of changes. He did not mean to return till the evening, when the new school-teacher would have arrived and settled in, and everything would be smooth again.") (measure . 270) (bh h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.0357) (bps q 13 25 35 46) (piece-count . 47) (avg-piece-length . 20.3178085106383) (avg-looseness . 0.0547) (looseness-sd . 0.014611125897753397) (looseness-variance . 0.00021348500000000002) (looses q 0.0658 0.0573 0.0301 0.0656 0.9085)) (fu h - (equal) (time . 6) (line-count . 5) (looseness-spread . 0.0839) (bps q 12 24 33 42) (piece-count . 43) (avg-piece-length . 22.20783720930233) (avg-looseness . 0.0547) (looseness-sd . 0.03162841878753979) (looseness-variance . 0.001000356875) (looses q 0.0658 0.0018 0.0857 0.0656 0.9085)) (bu h - (equal) (time . 9) (line-count . 5) (looseness-spread . 0.0357) (bps q 12 23 33 42) (piece-count . 43) (avg-piece-length . 22.20783720930233) (avg-looseness . 0.0547) (looseness-sd . 0.014611125897753397) (looseness-variance . 0.00021348500000000002) (looses q 0.0658 0.0573 0.0301 0.0656 0.9085)) (fh h - (equal) (time . 6) (line-count . 5) (looseness-spread . 0.0814) (bps q 14 26 35 46) (piece-count . 47) (avg-piece-length . 20.3178085106383) (avg-looseness . 0.0517) (looseness-sd . 0.029984245863453027) (looseness-variance . 0.0008990550000000001) (looses q 0.0043 0.0512 0.0857 0.0656 0.9085)) (fh-improved . 10) (bu-improved . 1) (bh-improved . 2)) c (h - (equal) (text u . "The blacksmith, the farm bailiff, and the schoolmaster himself were standing in perplexed attitudes in the parlour before the instrument. The master had remarked that even if he got it into the cart he should not know what to do with it on his arrival at Christminster, the city he was bound for, since he was only going into temporary lodgings just at first.") (measure . 270) (bh h - (equal) (time . 14) (line-count . 7) (looseness-spread . 0.0791) (bps q 12 25 36 51 64 78) (piece-count . 79) (avg-piece-length . 18.455898734177218) (avg-looseness . 0.0262) (looseness-sd . 0.03288523816074454) (looseness-variance . 0.001081438888888889) (looses q 0.0033 0.0752 0.0054 -0.0039 0.0695 0.0075 0.9299)) (fu h - (equal) (time . 10) (line-count . 7) (looseness-spread . 0.0859) (bps q 8 17 26 41 53 63) (piece-count . 64) (avg-piece-length . 22.78150000000001) (avg-looseness . 0.0297) (looseness-sd . 0.034754376223242255) (looseness-variance . 0.0012078666666666667) (looses q 0.082 0.0086 0.0054 -0.0039 0.0115 0.0746 0.9299)) (bu h - (equal) (time . 12) (line-count . 7) (looseness-spread . 0.0859) (bps q 8 17 26 41 52 63) (piece-count . 64) (avg-piece-length . 22.78150000000001) (avg-looseness . 0.0282) (looseness-sd . 0.03406618150339457) (looseness-variance . 0.0011605047222222223) (looses q 0.082 0.0086 0.0054 -0.0039 0.0695 0.0075 0.9299)) (fh h - (equal) (time . 10) (line-count . 7) (looseness-spread . 0.0791) (bps q 12 25 36 51 65 78) (piece-count . 79) (avg-piece-length . 18.455898734177218) (avg-looseness . 0.0277) (looseness-sd . 0.03368854487144785) (looseness-variance . 0.0011349180555555555) (looses q 0.0033 0.0752 0.0054 -0.0039 0.0115 0.0746 0.9299)) (fh-improved . 59) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "A little boy of eleven, who had been thoughtfully assisting in the packing, joined the group of men, and as they rubbed their chins he spoke up, blushing at the sound of his own voice: “Aunt have got a great fuel-house, and it could be put there, perhaps, till you’ve found a place to settle in, sir.”") (measure . 270) (bh h - (equal) (time . 12) (line-count . 6) (looseness-spread . 0.0759) (bps q 13 26 39 51 64) (piece-count . 65) (avg-piece-length . 18.452015384615382) (avg-looseness . 0.0349) (looseness-sd . 0.025691679586979127) (looseness-variance . 0.0006600624) (looses q 0.0212 -0.0056 0.04 0.0488 0.0703 0.9481)) (fu h - (equal) (time . 24) (line-count . 6) (looseness-spread . 0.0759) (bps q 10 22 34 46 57) (piece-count . 58) (avg-piece-length . 20.678982758620695) (avg-looseness . 0.0349) (looseness-sd . 0.025691679586979127) (looseness-variance . 0.0006600624) (looses q 0.0212 -0.0056 0.04 0.0488 0.0703 0.9481)) (bu h - (equal) (time . 12) (line-count . 6) (looseness-spread . 0.0759) (bps q 10 22 34 46 57) (piece-count . 58) (avg-piece-length . 20.678982758620695) (avg-looseness . 0.0349) (looseness-sd . 0.025691679586979127) (looseness-variance . 0.0006600624) (looses q 0.0212 -0.0056 0.04 0.0488 0.0703 0.9481)) (fh h - (equal) (time . 8) (line-count . 6) (looseness-spread . 0.0759) (bps q 13 26 39 51 64) (piece-count . 65) (avg-piece-length . 18.452015384615382) (avg-looseness . 0.0349) (looseness-sd . 0.025691679586979127) (looseness-variance . 0.0006600624) (looses q 0.0212 -0.0056 0.04 0.0488 0.0703 0.9481)) (fh-improved . 24) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "It was decided that a deputation should wait on the boy’s aunt—an old maiden resident—and ask her if she would house the piano till Mr. Phillotson should send for it. The smith and the bailiff started to see about the practicability of the suggested shelter, and the boy and the schoolmaster were left standing alone.") (measure . 270) (bh h - (equal) (time . 12) (line-count . 6) (looseness-spread . 0.0317) (bps q 14 27 39 53 67) (piece-count . 72) (avg-piece-length . 17.800402777777776) (avg-looseness . 0.0277) (looseness-sd . 0.010473203903295304) (looseness-variance . 0.000109688) (looses q 0.0326 0.0441 0.0234 0.026 0.0124 0.5945)) (fu h - (equal) (time . 9) (line-count . 6) (looseness-spread . 0.0317) (bps q 11 22 33 43 53) (piece-count . 57) (avg-piece-length . 22.484719298245615) (avg-looseness . 0.0277) (looseness-sd . 0.010473203903295304) (looseness-variance . 0.000109688) (looses q 0.0326 0.0441 0.0234 0.026 0.0124 0.5945)) (bu h - (equal) (time . 26) (line-count . 6) (looseness-spread . 0.0317) (bps q 11 22 33 43 53) (piece-count . 57) (avg-piece-length . 22.484719298245615) (avg-looseness . 0.0277) (looseness-sd . 0.010473203903295304) (looseness-variance . 0.000109688) (looses q 0.0326 0.0441 0.0234 0.026 0.0124 0.5945)) (fh h - (equal) (time . 9) (line-count . 6) (looseness-spread . 0.0317) (bps q 14 27 39 53 67) (piece-count . 72) (avg-piece-length . 17.800402777777776) (avg-looseness . 0.0277) (looseness-sd . 0.010473203903295304) (looseness-variance . 0.000109688) (looses q 0.0326 0.0441 0.0234 0.026 0.0124 0.5945)) (fh-improved . 38) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Tears rose into the boy’s eyes, for he was not among the regular day scholars, who came unromantically close to the schoolmaster’s life, but one who had attended the night school only during the present teacher’s term of office. The regular scholars, if the truth must be told, stood at the present moment afar off, like certain historic disciples, indisposed to any enthusiastic volunteering of aid.") (measure . 270) (bh h - (equal) (time . 17) (line-count . 7) (looseness-spread . 0.0795) (bps q 12 27 38 48 62 75) (piece-count . 88) (avg-piece-length . 18.639670454545453) (avg-looseness . 0.0468) (looseness-sd . 0.027314998932210607) (looseness-variance . 0.0007461091666666667) (looses q 0.0504 0.0004 0.0575 0.0799 0.0696 0.0227 0.1608)) (fu h - (equal) (time . 10) (line-count . 7) (looseness-spread . 0.0866) (bps q 12 21 30 39 51 59) (piece-count . 65) (avg-piece-length . 25.235246153846152) (avg-looseness . 0.0467) (looseness-sd . 0.03345219225501771) (looseness-variance . 0.0011190491666666668) (looses q 0.0504 0.0004 0.0575 0.0799 0.0053 0.087 0.1608)) (bu h - (equal) (time . 30) (line-count . 7) (looseness-spread . 0.0795) (bps q 12 21 30 39 50 59) (piece-count . 65) (avg-piece-length . 25.235246153846152) (avg-looseness . 0.0468) (looseness-sd . 0.027314998932210607) (looseness-variance . 0.0007461091666666667) (looses q 0.0504 0.0004 0.0575 0.0799 0.0696 0.0227 0.1608)) (fh h - (equal) (time . 11) (line-count . 7) (looseness-spread . 0.0866) (bps q 12 27 38 48 63 75) (piece-count . 88) (avg-piece-length . 18.639670454545453) (avg-looseness . 0.0467) (looseness-sd . 0.03345219225501771) (looseness-variance . 0.0011190491666666668) (looses q 0.0504 0.0004 0.0575 0.0799 0.0053 0.087 0.1608)) (fh-improved . 51) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "The boy awkwardly opened the book he held in his hand, which Mr. Phillotson had bestowed on him as a parting gift, and admitted that he was sorry.") (measure . 270) (bh h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0436) (bps q 12 25) (piece-count . 32) (avg-piece-length . 19.244890625000004) (avg-looseness . 0.0223) (looseness-sd . 0.0218) (looseness-variance . 0.00047524) (looses q 0.0441 0.0005 0.4769)) (fu h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.0436) (bps q 11 22) (piece-count . 28) (avg-piece-length . 21.99416071428572) (avg-looseness . 0.0223) (looseness-sd . 0.0218) (looseness-variance . 0.00047524) (looses q 0.0441 0.0005 0.4769)) (bu h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0436) (bps q 11 22) (piece-count . 28) (avg-piece-length . 21.99416071428572) (avg-looseness . 0.0223) (looseness-sd . 0.0218) (looseness-variance . 0.00047524) (looses q 0.0441 0.0005 0.4769)) (fh h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.0436) (bps q 12 25) (piece-count . 32) (avg-piece-length . 19.244890625000004) (avg-looseness . 0.0223) (looseness-sd . 0.0218) (looseness-variance . 0.00047524) (looses q 0.0441 0.0005 0.4769)) (fh-improved . 4) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Ah—that would be a long story. You wouldn’t understand my reasons, Jude. You will, perhaps, when you are older.”") (measure . 270) (bh h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.0594) (bps q 10 22) (piece-count . 23) (avg-piece-length . 21.266999999999996) (avg-looseness . 0.0751) (looseness-sd . 0.0297) (looseness-variance . 0.0008820900000000001) (looses q 0.1048 0.0454 0.9024)) (fu h - (equal) (time . 3) (line-count . 3) (looseness-spread . 0.2114) (bps q 9 18) (piece-count . 20) (avg-piece-length . 24.457049999999995) (avg-looseness . 0.112) (looseness-sd . 0.1057) (looseness-variance . 0.01117249) (looses q 0.2177 0.0063 0.8407)) (bu h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.2114) (bps q 9 18) (piece-count . 20) (avg-piece-length . 24.457049999999995) (avg-looseness . 0.112) (looseness-sd . 0.1057) (looseness-variance . 0.01117249) (looses q 0.2177 0.0063 0.8407)) (fh h - (equal) (time . 15) (line-count . 3) (looseness-spread . 0.0594) (bps q 10 22) (piece-count . 23) (avg-piece-length . 21.266999999999996) (avg-looseness . 0.0751) (looseness-sd . 0.0297) (looseness-variance . 0.0008820900000000001) (looses q 0.1048 0.0454 0.9024)) (fh-improved . 5) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Well—don’t speak of this everywhere. You know what a university is, and a university degree? It is the necessary hallmark of a man who wants to do anything in teaching. My scheme, or dream, is to be a university graduate, and then to be ordained. By going to live at Christminster, or near it, I shall be at headquarters, so to speak, and if my scheme is practicable at all, I consider that being on the spot will afford me a better chance of carrying it out than I should have elsewhere.”") (measure . 270) (bh h - (equal) (time . 21) (line-count . 9) (looseness-spread . 0.0568) (bps q 10 27 41 56 69 84 99 115) (piece-count . 119) (avg-piece-length . 16.541445378151263) (avg-looseness . 0.0464) (looseness-sd . 0.01889920219877019) (looseness-variance . 0.00035717984375) (looses q 0.0707 0.0212 0.0539 0.042 0.0455 0.0609 0.0634 0.0139 0.6066)) (fu h - (equal) (time . 13) (line-count . 9) (looseness-spread . 0.0495) (bps q 10 20 31 42 53 66 77 90) (piece-count . 93) (avg-piece-length . 21.165935483870978) (avg-looseness . 0.0464) (looseness-sd . 0.0143632125584773) (looseness-variance . 0.000206301875) (looses q 0.0429 0.0489 0.0539 0.042 0.0455 0.0609 0.0634 0.0139 0.6066)) (bu h - (equal) (time . 34) (line-count . 9) (looseness-spread . 0.0568) (bps q 9 20 31 42 53 66 77 90) (piece-count . 93) (avg-piece-length . 21.165935483870978) (avg-looseness . 0.0464) (looseness-sd . 0.01889920219877019) (looseness-variance . 0.00035717984375) (looses q 0.0707 0.0212 0.0539 0.042 0.0455 0.0609 0.0634 0.0139 0.6066)) (fh h - (equal) (time . 13) (line-count . 9) (looseness-spread . 0.0495) (bps q 11 27 41 56 69 84 99 115) (piece-count . 119) (avg-piece-length . 16.541445378151263) (avg-looseness . 0.0464) (looseness-sd . 0.0143632125584773) (looseness-variance . 0.000206301875) (looses q 0.0429 0.0489 0.0539 0.042 0.0455 0.0609 0.0634 0.0139 0.6066)) (fh-improved . 113) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "The smith and his companion returned. Old Miss Fawley’s fuel-house was dry, and eminently practicable; and she seemed willing to give the instrument standing-room there. It was accordingly left in the school till the evening, when more hands would be available for removing it; and the schoolmaster gave a final glance round.") (measure . 270) (bh h - (equal) (time . 13) (line-count . 6) (looseness-spread . 0.0473) (bps q 11 24 36 48 60) (piece-count . 69) (avg-piece-length . 19.830333333333336) (avg-looseness . 0.044) (looseness-sd . 0.017078243469396962) (looseness-variance . 0.0002916664) (looses q 0.0752 0.0487 0.0366 0.0279 0.0318 0.2812)) (fu h - (equal) (time . 8) (line-count . 6) (looseness-spread . 0.0754) (bps q 9 18 27 38 48) (piece-count . 54) (avg-piece-length . 25.338759259259252) (avg-looseness . 0.0333) (looseness-sd . 0.03201959400117372) (looseness-variance . 0.0010252543999999999) (looses q -0.0037 0.0717 0.0033 0.0257 0.0697 0.3455)) (bu h - (equal) (time . 28) (line-count . 6) (looseness-spread . 0.0754) (bps q 9 18 27 38 48) (piece-count . 54) (avg-piece-length . 25.338759259259252) (avg-looseness . 0.0333) (looseness-sd . 0.03201959400117372) (looseness-variance . 0.0010252543999999999) (looses q -0.0037 0.0717 0.0033 0.0257 0.0697 0.3455)) (fh h - (equal) (time . 9) (line-count . 6) (looseness-spread . 0.0754) (bps q 12 25 37 49 61) (piece-count . 69) (avg-piece-length . 19.830333333333336) (avg-looseness . 0.0333) (looseness-sd . 0.03201959400117372) (looseness-variance . 0.0010252543999999999) (looses q -0.0037 0.0717 0.0033 0.0257 0.0697 0.3455)) (fh-improved . 44) (bu-improved . 0) (bh-improved . 5)) c (h - (equal) (text u . "The boy Jude assisted in loading some small articles, and at nine o’clock Mr. Phillotson mounted beside his box of books and other impedimenta, and bade his friends good-bye.") (measure . 270) (bh h - (equal) (time . 6) (line-count . 4) (looseness-spread . 0.0543) (bps q 12 22 33) (piece-count . 34) (avg-piece-length . 21.65077941176471) (avg-looseness . 0.0725) (looseness-sd . 0.024898772839015357) (looseness-variance . 0.0006199488888888889) (looses q 0.0373 0.0885 0.0916 0.8425)) (fu h - (equal) (time . 4) (line-count . 4) (looseness-spread . 0.1386) (bps q 11 20 28) (piece-count . 29) (avg-piece-length . 25.383672413793107) (avg-looseness . 0.0724) (looseness-sd . 0.05740251639857689) (looseness-variance . 0.0032950488888888884) (looses q -0.0037 0.0861 0.1349 0.8425)) (bu h - (equal) (time . 6) (line-count . 4) (looseness-spread . 0.0543) (bps q 10 19 28) (piece-count . 29) (avg-piece-length . 25.383672413793107) (avg-looseness . 0.0725) (looseness-sd . 0.024898772839015357) (looseness-variance . 0.0006199488888888889) (looses q 0.0373 0.0885 0.0916 0.8425)) (fh h - (equal) (time . 4) (line-count . 4) (looseness-spread . 0.1386) (bps q 13 23 33) (piece-count . 34) (avg-piece-length . 21.65077941176471) (avg-looseness . 0.0724) (looseness-sd . 0.05740251639857689) (looseness-variance . 0.0032950488888888884) (looses q -0.0037 0.0861 0.1349 0.8425)) (fh-improved . 10) (bu-improved . 2) (bh-improved . 2)) c (h - (equal) (text u . "“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. “Be a good boy, remember; and be kind to animals and birds, and read all you can. And if ever you come to Christminster remember you hunt me out for old acquaintance’ sake.”") (measure . 270) (bh h - (equal) (time . 10) (line-count . 5) (looseness-spread . 0.0709) (bps q 13 25 38 51) (piece-count . 54) (avg-piece-length . 18.791) (avg-looseness . 0.0658) (looseness-sd . 0.027246685578249698) (looseness-variance . 0.0007423818750000002) (looses q 0.0834 0.0927 0.0654 0.0218 0.6679)) (fu h - (equal) (time . 6) (line-count . 5) (looseness-spread . 0.0709) (bps q 11 22 34 44) (piece-count . 46) (avg-piece-length . 22.059) (avg-looseness . 0.0658) (looseness-sd . 0.027246685578249698) (looseness-variance . 0.0007423818750000002) (looses q 0.0834 0.0927 0.0654 0.0218 0.6679)) (bu h - (equal) (time . 25) (line-count . 5) (looseness-spread . 0.0709) (bps q 11 22 34 44) (piece-count . 46) (avg-piece-length . 22.059) (avg-looseness . 0.0658) (looseness-sd . 0.027246685578249698) (looseness-variance . 0.0007423818750000002) (looses q 0.0834 0.0927 0.0654 0.0218 0.6679)) (fh h - (equal) (time . 7) (line-count . 5) (looseness-spread . 0.1086) (bps q 13 26 39 51) (piece-count . 54) (avg-piece-length . 18.791) (avg-looseness . 0.0628) (looseness-sd . 0.04340161287325622) (looseness-variance . 0.0018837) (looses q 0.0834 0.0292 0.015 0.1236 0.6679)) (fh-improved . 18) (bu-improved . 0) (bh-improved . 2)) c (h - (equal) (text u . "The cart creaked across the green, and disappeared round the corner by the rectory-house. The boy returned to the draw-well at the edge of the greensward, where he had left his buckets when he went to help his patron and teacher in the loading. There was a quiver in his lip now and after opening the well-cover to begin lowering the bucket he paused and leant with his forehead and arms against the framework, his face wearing the fixity of a thoughtful child’s who has felt the pricks of life somewhat before his time. The well into which he was looking was as ancient as the village itself, and from his present position appeared as a long circular perspective ending in a shining disk of quivering water at a distance of a hundred feet down. There was a lining of green moss near the top, and nearer still the hart’s-tongue fern.") (measure . 270) (bh h - (equal) (time . 52) (line-count . 15) (looseness-spread . 0.1102) (bps q 11 24 36 48 61 74 85 99 111 124 136 153 167 181) (piece-count . 184) (avg-piece-length . 18.36781249999998) (avg-looseness . 0.0368) (looseness-sd . 0.02944135731259962) (looseness-variance . 0.0008667935204081632) (looses q 0.0193 0.0377 0.014 0.0523 0.1162 0.0367 0.0684 0.0405 0.031 0.0084 0.0061 0.0168 0.0617 0.006 0.6887)) (fu h - (equal) (time . 21) (line-count . 15) (looseness-spread . 0.1054) (bps q 9 20 32 44 56 66 76 85 96 108 118 128 138 150) (piece-count . 155) (avg-piece-length . 21.804370967741917) (avg-looseness . 0.048) (looseness-sd . 0.03684183236817759) (looseness-variance . 0.001357320612244898) (looses q 0.0193 0.0377 0.014 0.0099 0.0705 0.0741 0.0547 0.1047 0.031 0.0084 0.0061 0.1023 0.1115 0.0274 0.5524)) (bu h - (equal) (time . 51) (line-count . 15) (looseness-spread . 0.1101) (bps q 9 20 32 43 55 65 75 85 96 107 117 128 138 150) (piece-count . 155) (avg-piece-length . 21.804370967741917) (avg-looseness . 0.048) (looseness-sd . 0.03160123108555186) (looseness-variance . 0.0009986378061224489) (looses q 0.0193 0.0377 0.014 0.0523 0.1162 0.0367 0.0684 0.0405 0.031 0.0527 0.0061 0.0581 0.1115 0.0274 0.5524)) (fh h - (equal) (time . 24) (line-count . 15) (looseness-spread . 0.0987) (bps q 11 24 36 49 62 75 86 99 111 124 136 153 167 181) (piece-count . 184) (avg-piece-length . 18.36781249999998) (avg-looseness . 0.0368) (looseness-sd . 0.03018945365926482) (looseness-variance . 0.000911403112244898) (looses q 0.0193 0.0377 0.014 0.0099 0.0705 0.0741 0.0547 0.1047 0.031 0.0084 0.0061 0.0168 0.0617 0.006 0.6887)) (fh-improved . 188) (bu-improved . 6) (bh-improved . 4)) c (h - (equal) (text u . "He said to himself, in the melodramatic tones of a whimsical boy, that the schoolmaster had drawn at that well scores of times on a morning like this, and would never draw there any more. “I’ve seen him look down into it, when he was tired with his drawing, just as I do now, and when he rested a bit before carrying the buckets home! But he was too clever to bide here any longer—a small sleepy place like this!”") (measure . 270) (bh h - (equal) (time . 17) (line-count . 8) (looseness-spread . 0.1001) (bps q 15 28 40 52 66 80 92) (piece-count . 93) (avg-piece-length . 18.083564516129027) (avg-looseness . 0.0251) (looseness-sd . 0.031208548017935007) (looseness-variance . 0.0009739734693877551) (looses q 0.0227 -0.0033 0.0917 0.0079 0.037 0.0283 -0.0084 0.9199)) (fu h - (equal) (time . 11) (line-count . 8) (looseness-spread . 0.1681) (bps q 10 19 31 42 55 66 78) (piece-count . 81) (avg-piece-length . 20.762611111111113) (avg-looseness . 0.0521) (looseness-sd . 0.05241511310330879) (looseness-variance . 0.002747344081632653) (looses q 0.1581 0.0684 -0.01 0.0766 0.037 -0.0003 0.0348 0.7525)) (bu h - (equal) (time . 30) (line-count . 8) (looseness-spread . 0.1681) (bps q 10 19 31 42 55 66 78) (piece-count . 81) (avg-piece-length . 20.762611111111113) (avg-looseness . 0.0521) (looseness-sd . 0.05241511310330879) (looseness-variance . 0.002747344081632653) (looses q 0.1581 0.0684 -0.01 0.0766 0.037 -0.0003 0.0348 0.7525)) (fh h - (equal) (time . 12) (line-count . 8) (looseness-spread . 0.0845) (bps q 15 28 41 53 67 81 92) (piece-count . 93) (avg-piece-length . 18.083564516129027) (avg-looseness . 0.0251) (looseness-sd . 0.030299498210972647) (looseness-variance . 0.0009180595918367346) (looses q 0.0227 -0.0033 -0.0065 0.0326 -0.0034 0.078 0.0559 0.9199)) (fh-improved . 76) (bu-improved . 0) (bh-improved . 4)) c (h - (equal) (text u . "A tear rolled from his eye into the depths of the well. The morning was a little foggy, and the boy’s breathing unfurled itself as a thicker fog upon the still and heavy air. His thoughts were interrupted by a sudden outcry:") (measure . 270) (bh h - (equal) (time . 9) (line-count . 4) (looseness-spread . 0.1174) (bps q 13 26 38) (piece-count . 47) (avg-piece-length . 19.089265957446806) (avg-looseness . 0.0415) (looseness-sd . 0.049087948283327826) (looseness-variance . 0.0024096266666666674) (looses q 0.0265 -0.0097 0.1077 0.2226)) (fu h - (equal) (time . 6) (line-count . 4) (looseness-spread . 0.1174) (bps q 13 23 35) (piece-count . 42) (avg-piece-length . 21.361797619047618) (avg-looseness . 0.0415) (looseness-sd . 0.049087948283327826) (looseness-variance . 0.0024096266666666674) (looses q 0.0265 -0.0097 0.1077 0.2226)) (bu h - (equal) (time . 8) (line-count . 4) (looseness-spread . 0.1174) (bps q 13 23 35) (piece-count . 42) (avg-piece-length . 21.361797619047618) (avg-looseness . 0.0415) (looseness-sd . 0.049087948283327826) (looseness-variance . 0.0024096266666666674) (looses q 0.0265 -0.0097 0.1077 0.2226)) (fh h - (equal) (time . 20) (line-count . 4) (looseness-spread . 0.1174) (bps q 13 26 38) (piece-count . 47) (avg-piece-length . 19.089265957446806) (avg-looseness . 0.0415) (looseness-sd . 0.049087948283327826) (looseness-variance . 0.0024096266666666674) (looses q 0.0265 -0.0097 0.1077 0.2226)) (fh-improved . 6) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "It came from an old woman who had emerged from her door towards the garden gate of a green-thatched cottage not far off. The boy quickly waved a signal of assent, drew the water with what was a great effort for one of his stature, landed and emptied the big bucket into his own pair of smaller ones, and pausing a moment for breath, started with them across the patch of clammy greensward whereon the well stood—nearly in the centre of the little village, or rather hamlet of Marygreen.") (measure . 270) (bh h - (equal) (time . 20) (line-count . 9) (looseness-spread . 0.0867) (bps q 11 23 36 49 61 71 80 95) (piece-count . 101) (avg-piece-length . 19.84581188118812) (avg-looseness . 0.0364) (looseness-sd . 0.03030331819702258) (looseness-variance . 0.0009182910937499998) (looses q 0.0662 0.0366 0.0226 0.0028 0.0807 0.0692 -0.006 0.019 0.5263)) (fu h - (equal) (time . 12) (line-count . 9) (looseness-spread . 0.0867) (bps q 11 21 33 46 57 66 75 87) (piece-count . 91) (avg-piece-length . 22.026670329670328) (avg-looseness . 0.0364) (looseness-sd . 0.03030331819702258) (looseness-variance . 0.0009182910937499998) (looses q 0.0662 0.0366 0.0226 0.0028 0.0807 0.0692 -0.006 0.019 0.5263)) (bu h - (equal) (time . 19) (line-count . 9) (looseness-spread . 0.0867) (bps q 11 21 33 46 57 66 75 87) (piece-count . 91) (avg-piece-length . 22.026670329670328) (avg-looseness . 0.0364) (looseness-sd . 0.03030331819702258) (looseness-variance . 0.0009182910937499998) (looses q 0.0662 0.0366 0.0226 0.0028 0.0807 0.0692 -0.006 0.019 0.5263)) (fh h - (equal) (time . 30) (line-count . 9) (looseness-spread . 0.0867) (bps q 11 23 36 49 61 71 80 95) (piece-count . 101) (avg-piece-length . 19.84581188118812) (avg-looseness . 0.0364) (looseness-sd . 0.03030331819702258) (looseness-variance . 0.0009182910937499998) (looses q 0.0662 0.0366 0.0226 0.0028 0.0807 0.0692 -0.006 0.019 0.5263)) (fh-improved . 30) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "It was as old-fashioned as it was small, and it rested in the lap of an undulating upland adjoining the North Wessex downs. Old as it was, however, the well-shaft was probably the only relic of the local history that remained absolutely unchanged. Many of the thatched and dormered dwelling-houses had been pulled down of late years, and many trees felled on the green. Above all, the original church, hump-backed, wood-turreted, and quaintly hipped, had been taken down, and either cracked up into heaps of road-metal in the lane, or utilized as pig-sty walls, garden seats, guard-stones to fences, and rockeries in the flower-beds of the neighbourhood. In place of it a tall new building of modern Gothic design, unfamiliar to English eyes, had been erected on a new piece of ground by a certain obliterator of historic records who had run down from London and back in a day. The site whereon so long had stood the ancient temple to the Christian divinities was not even recorded on the green and level grass-plot that had immemorially been the churchyard, the obliterated graves being commemorated by eighteen-penny cast-iron crosses warranted to last five years.") (measure . 270) (bh h - (equal) (time . 67) (line-count . 21) (looseness-spread . 0.0905) (bps q 15 28 42 53 61 72 84 93 104 118 130 145 157 173 185 197 211 223 235 247) (piece-count . 248) (avg-piece-length . 19.40513709677419) (avg-looseness . 0.0277) (looseness-sd . 0.025288507271090558) (looseness-variance . 0.0006395086) (looses q 0.0239 0.0538 0.0089 0.0255 0.023 0.0106 0.0404 0.0846 -0.0032 0.0133 0.0617 0.0044 -0.0059 0.0792 0.0221 0.0173 -0.0019 0.0193 0.0442 0.0324 0.9094)) (fu h - (equal) (time . 46) (line-count . 21) (looseness-spread . 0.1294) (bps q 14 23 34 44 52 63 73 81 92 104 115 126 135 147 159 170 180 189 196 205) (piece-count . 206) (avg-piece-length . 23.361524271844665) (avg-looseness . 0.0293) (looseness-sd . 0.03427945302947525) (looseness-variance . 0.0011750808999999999) (looses q 0.0239 0.0538 0.0089 0.0255 0.023 0.0106 0.0404 0.0846 -0.0032 0.0133 0.0617 0.0044 -0.0059 0.0029 0.0143 0.0293 -0.0014 0.1235 -0.005 0.0816 0.9094)) (bu h - (equal) (time . 43) (line-count . 21) (looseness-spread . 0.0905) (bps q 14 23 34 44 52 63 73 81 92 104 115 126 135 147 159 169 179 189 195 205) (piece-count . 206) (avg-piece-length . 23.361524271844665) (avg-looseness . 0.0293) (looseness-sd . 0.02538922803080078) (looseness-variance . 0.0006446129) (looses q 0.0239 0.0538 0.0089 0.0255 0.023 0.0106 0.0404 0.0846 -0.0032 0.0133 0.0617 0.0044 -0.0059 0.0029 0.0143 0.0726 0.0595 0.0193 0.0442 0.0324 0.9094)) (fh h - (equal) (time . 46) (line-count . 21) (looseness-spread . 0.1294) (bps q 15 28 42 53 61 72 84 93 104 118 130 145 157 174 187 199 212 223 236 247) (piece-count . 248) (avg-piece-length . 19.40513709677419) (avg-looseness . 0.0293) (looseness-sd . 0.03427945302947525) (looseness-variance . 0.0011750808999999999) (looses q 0.0239 0.0538 0.0089 0.0255 0.023 0.0106 0.0404 0.0846 -0.0032 0.0133 0.0617 0.0044 -0.0059 0.0029 0.0143 0.0293 -0.0014 0.1235 -0.005 0.0816 0.9094)) (fh-improved . 378) (bu-improved . 3) (bh-improved . 7)) c (h - (equal) (text u . "Slender as was Jude Fawley’s frame he bore the two brimming house-buckets of water to the cottage without resting. Over the door was a little rectangular piece of blue board, on which was painted in yellow letters, “Drusilla Fawley, Baker.” Within the little lead panes of the window—this being one of the few old houses left—were five bottles of sweets, and three buns on a plate of the willow pattern.") (measure . 270) (bh h - (equal) (time . 17) (line-count . 7) (looseness-spread . 0.0443) (bps q 13 27 42 54 66 79) (piece-count . 92) (avg-piece-length . 17.89400000000001) (avg-looseness . 0.0325) (looseness-sd . 0.014747090108447382) (looseness-variance . 0.00021747666666666664) (looses q 0.0289 0.0017 0.0365 0.042 0.046 0.0399 0.0781)) (fu h - (equal) (time . 10) (line-count . 8) (looseness-spread . 0.1491) (bps q 10 19 30 39 48 59 71) (piece-count . 73) (avg-piece-length . 22.551342465753432) (avg-looseness . 0.0735) (looseness-sd . 0.049274040025231974) (looseness-variance . 0.002427931020408163) (looses q 0.1212 0.0497 0.008 0.0538 0.1571 0.0288 0.0956 0.7534)) (bu h - (equal) (time . 15) (line-count . 8) (looseness-spread . 0.1288) (bps q 10 19 28 38 47 58 71) (piece-count . 73) (avg-piece-length . 22.551342465753432) (avg-looseness . 0.0763) (looseness-sd . 0.043561441478370176) (looseness-variance . 0.0018975991836734697) (looses q 0.1212 0.0497 0.1332 0.1104 0.0699 0.0455 0.0044 0.7534)) (fh h - (equal) (time . 27) (line-count . 7) (looseness-spread . 0.0443) (bps q 13 27 42 54 66 79) (piece-count . 92) (avg-piece-length . 17.89400000000001) (avg-looseness . 0.0325) (looseness-sd . 0.014747090108447382) (looseness-variance . 0.00021747666666666664) (looses q 0.0289 0.0017 0.0365 0.042 0.046 0.0399 0.0781)) (fh-improved . 76) (bu-improved . 5) (bh-improved . 0)) c (h - (equal) (text u . "While emptying the buckets at the back of the house he could hear an animated conversation in progress within-doors between his great-aunt, the Drusilla of the sign-board, and some other villagers. Having seen the school-master depart, they were summing up particulars of the event, and indulging in predictions of his future.") (measure . 270) (bh h - (equal) (time . 27) (line-count . 6) (looseness-spread . 0.1331) (bps q 13 25 35 46 60) (piece-count . 71) (avg-piece-length . 19.119154929577466) (avg-looseness . 0.0784) (looseness-sd . 0.04697616416865047) (looseness-variance . 0.0022067600000000003) (looses q 0.1133 0.1307 0.0589 0.0915 -0.0024 0.1275)) (fu h - (equal) (time . 9) (line-count . 6) (looseness-spread . 0.0486) (bps q 11 19 29 38 47) (piece-count . 55) (avg-piece-length . 24.681090909090905) (avg-looseness . 0.0663) (looseness-sd . 0.01733177428886033) (looseness-variance . 0.00030039039999999996) (looses q 0.0627 0.0602 0.1002 0.0516 0.057 0.1917)) (bu h - (equal) (time . 11) (line-count . 6) (looseness-spread . 0.1331) (bps q 10 18 28 37 46) (piece-count . 55) (avg-piece-length . 24.681090909090905) (avg-looseness . 0.0784) (looseness-sd . 0.04697616416865047) (looseness-variance . 0.0022067600000000003) (looses q 0.1133 0.1307 0.0589 0.0915 -0.0024 0.1275)) (fh h - (equal) (time . 9) (line-count . 6) (looseness-spread . 0.0486) (bps q 14 26 36 47 61) (piece-count . 71) (avg-piece-length . 19.119154929577466) (avg-looseness . 0.0663) (looseness-sd . 0.01733177428886033) (looseness-variance . 0.00030039039999999996) (looses q 0.0627 0.0602 0.1002 0.0516 0.057 0.1917)) (fh-improved . 40) (bu-improved . 5) (bh-improved . 5)) c (h - (equal) (text u . "“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since you was last this way.” The old inhabitant who answered was a tall, gaunt woman, who spoke tragically on the most trivial subject, and gave a phrase of her conversation to each auditor in turn. “He come from Mellstock, down in South Wessex, about a year ago—worse luck for ‘n, Belinda” (turning to the right) “where his father was living, and was took wi’ the shakings for death, and died in two days, as you know, Caroline” (turning to the left). “It would ha’ been a blessing if Goddy-mighty had took thee too, wi’ thy mother and father, poor useless boy! But I’ve got him here to stay with me till I can see what’s to be done with un, though I am obliged to let him earn any penny he can. Just now he’s a-scaring of birds for Farmer Troutham. It keeps him out of mischty. Why do ye turn away, Jude?” she continued, as the boy, feeling the impact of their glances like slaps upon his face, moved aside.") (measure . 270) (bh h - (equal) (time . 41) (line-count . 18) (looseness-spread . 0.1517) (bps q 10 20 31 45 59 70 81 93 106 120 131 144 158 171 183 196 208) (piece-count . 212) (avg-piece-length . 18.828971698113204) (avg-looseness . 0.061) (looseness-sd . 0.03713290727600205) (looseness-variance . 0.001378852802768166) (looses q 0.1609 0.0974 0.0693 0.0901 0.0643 0.0873 0.0978 0.0468 0.0118 0.0397 0.067 0.0092 0.0613 0.0367 0.0257 0.0477 0.0242 0.6386)) (fu h - (equal) (time . 27) (line-count . 18) (looseness-spread . 0.1549) (bps q 10 20 29 39 49 59 69 80 91 102 112 124 138 151 162 172 183) (piece-count . 187) (avg-piece-length . 21.34621390374331) (avg-looseness . 0.0656) (looseness-sd . 0.04294149314951722) (looseness-variance . 0.0018439718339100344) (looses q 0.1609 0.0974 0.0693 0.0901 0.0643 0.006 0.0868 0.0167 0.0824 0.1371 0.1001 0.0092 0.0613 0.0367 0.0257 0.0477 0.0242 0.6386)) (bu h - (equal) (time . 57) (line-count . 18) (looseness-spread . 0.1549) (bps q 10 20 29 39 49 59 69 80 91 102 112 124 138 151 162 172 183) (piece-count . 187) (avg-piece-length . 21.34621390374331) (avg-looseness . 0.0656) (looseness-sd . 0.04294149314951722) (looseness-variance . 0.0018439718339100344) (looses q 0.1609 0.0974 0.0693 0.0901 0.0643 0.006 0.0868 0.0167 0.0824 0.1371 0.1001 0.0092 0.0613 0.0367 0.0257 0.0477 0.0242 0.6386)) (fh h - (equal) (time . 44) (line-count . 18) (looseness-spread . 0.1549) (bps q 10 20 31 45 59 71 82 95 108 121 131 144 158 171 183 196 208) (piece-count . 212) (avg-piece-length . 18.828971698113204) (avg-looseness . 0.0656) (looseness-sd . 0.04294149314951722) (looseness-variance . 0.0018439718339100344) (looses q 0.1609 0.0974 0.0693 0.0901 0.0643 0.006 0.0868 0.0167 0.0824 0.1371 0.1001 0.0092 0.0613 0.0367 0.0257 0.0477 0.0242 0.6386)) (fh-improved . 243) (bu-improved . 0) (bh-improved . 7)) c (h - (equal) (text u . "The local washerwoman replied that it was perhaps a very good plan of Miss or Mrs. Fawley’s (as they called her indifferently) to have him with her—”to kip ‘ee company in your loneliness, fetch water, shet the winder-shetters o’ nights, and help in the bit o’ baking.”") (measure . 270) (bh h - (equal) (time . 14) (line-count . 5) (looseness-spread . 0.0677) (bps q 13 25 38 51) (piece-count . 60) (avg-piece-length . 18.324483333333337) (avg-looseness . 0.0398) (looseness-sd . 0.02573392702251252) (looseness-variance . 0.0006622350000000001) (looses q 0.0153 0.083 0.0324 0.0285 0.3896)) (fu h - (equal) (time . 7) (line-count . 5) (looseness-spread . 0.0677) (bps q 10 21 31 41) (piece-count . 49) (avg-piece-length . 22.438142857142854) (avg-looseness . 0.0398) (looseness-sd . 0.02573392702251252) (looseness-variance . 0.0006622350000000001) (looses q 0.0153 0.083 0.0324 0.0285 0.3896)) (bu h - (equal) (time . 24) (line-count . 5) (looseness-spread . 0.0677) (bps q 10 21 31 41) (piece-count . 49) (avg-piece-length . 22.438142857142854) (avg-looseness . 0.0398) (looseness-sd . 0.02573392702251252) (looseness-variance . 0.0006622350000000001) (looses q 0.0153 0.083 0.0324 0.0285 0.3896)) (fh h - (equal) (time . 7) (line-count . 5) (looseness-spread . 0.0677) (bps q 13 25 38 51) (piece-count . 60) (avg-piece-length . 18.324483333333337) (avg-looseness . 0.0398) (looseness-sd . 0.02573392702251252) (looseness-variance . 0.0006622350000000001) (looses q 0.0153 0.083 0.0324 0.0285 0.3896)) (fh-improved . 24) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a better one. The boy is crazy for books, that he is. It runs in our family rather. His cousin Sue is just the same—so I’ve heard; but I have not seen the child for years, though she was born in this place, within these four walls, as it happened. My niece and her husband, after they were married, didn’ get a house of their own for some year or more; and then they only had one till—Well, I won’t go into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the Fawleys to take that step any more. She, their only one, was like a child o’ my own, Belinda, till the split come! Ah, that a little maid should know such changes!”") (measure . 270) (bh h - (equal) (time . 50) (line-count . 15) (looseness-spread . 0.0715) (bps q 11 25 37 50 64 77 89 101 113 125 137 149 162 174) (piece-count . 177) (avg-piece-length . 18.84115819209039) (avg-looseness . 0.0503) (looseness-sd . 0.02435386341559191) (looseness-variance . 0.0005931106632653061) (looses q 0.035 0.0774 0.0887 0.0904 0.0189 0.0243 0.0229 0.0343 0.0836 0.0451 0.0394 0.0545 0.0336 0.056 0.6561)) (fu h - (equal) (time . 31) (line-count . 15) (looseness-spread . 0.1641) (bps q 9 19 28 40 53 66 78 89 100 112 124 135 147 158) (piece-count . 161) (avg-piece-length . 20.713571428571417) (avg-looseness . 0.0512) (looseness-sd . 0.04251382488229504) (looseness-variance . 0.0018074253061224489) (looses q 0.1573 -0.0051 0.0609 0.0904 0.0189 0.0243 0.0229 0.0343 -0.0068 0.0639 0.0394 0.0569 0.1029 0.056 0.6561)) (bu h - (equal) (time . 54) (line-count . 15) (looseness-spread . 0.1624) (bps q 9 19 28 40 53 66 78 89 99 111 123 134 147 158) (piece-count . 161) (avg-piece-length . 20.713571428571417) (avg-looseness . 0.0511) (looseness-sd . 0.03824815121582442) (looseness-variance . 0.001462921071428571) (looses q 0.1573 -0.0051 0.0609 0.0904 0.0189 0.0243 0.0229 0.0343 0.0836 0.0451 0.0394 0.0545 0.0336 0.056 0.6561)) (fh h - (equal) (time . 22) (line-count . 15) (looseness-spread . 0.1097) (bps q 11 25 37 50 64 77 89 101 114 126 138 150 162 174) (piece-count . 177) (avg-piece-length . 18.84115819209039) (avg-looseness . 0.0503) (looseness-sd . 0.030620697948563202) (looseness-variance . 0.0009376271428571428) (looses q 0.035 0.0774 0.0887 0.0904 0.0189 0.0243 0.0229 0.0343 -0.0068 0.0639 0.0394 0.0569 0.1029 0.056 0.6561)) (fh-improved . 160) (bu-improved . 4) (bh-improved . 4)) c (h - (equal) (text u . "Jude, finding the general attention again centering on himself, went out to the bakehouse, where he ate the cake provided for his breakfast. The end of his spare time had now arrived, and emerging from the garden by getting over the hedge at the back he pursued a path northward, till he came to a wide and lonely depression in the general level of the upland, which was sown as a corn-field. This vast concave was the scene of his labours for Mr Troutham the farmer, and he descended into the midst of it.") (measure . 270) (bh h - (equal) (time . 22) (line-count . 9) (looseness-spread . 0.0895) (bps q 14 26 39 52 66 79 91 103) (piece-count . 111) (avg-piece-length . 18.720445945945947) (avg-looseness . 0.0368) (looseness-sd . 0.02620257322764312) (looseness-variance . 0.00068657484375) (looses q 0.0226 0.0923 0.0426 0.0028 0.0239 0.0417 0.0543 0.0139 0.2382)) (fu h - (equal) (time . 13) (line-count . 9) (looseness-spread . 0.1029) (bps q 8 19 30 40 52 64 75 86) (piece-count . 94) (avg-piece-length . 22.1060585106383) (avg-looseness . 0.0383) (looseness-sd . 0.037612689015809546) (looseness-variance . 0.001414714375) (looses q 0.1013 0.0257 0.0426 0.0028 0.0239 -0.0016 0.0976 0.0139 0.2382)) (bu h - (equal) (time . 33) (line-count . 9) (looseness-spread . 0.0985) (bps q 8 19 30 40 52 63 75 86) (piece-count . 94) (avg-piece-length . 22.1060585106383) (avg-looseness . 0.0383) (looseness-sd . 0.02845341587577843) (looseness-variance . 0.0008095968750000001) (looses q 0.1013 0.0257 0.0426 0.0028 0.0239 0.0417 0.0543 0.0139 0.2382)) (fh h - (equal) (time . 15) (line-count . 9) (looseness-spread . 0.048) (bps q 14 27 40 53 67 81 93 104) (piece-count . 111) (avg-piece-length . 18.720445945945947) (avg-looseness . 0.0198) (looseness-sd . 0.013511846653955188) (looseness-variance . 0.00018257) (looses q 0.0226 0.0223 0.0187 0.02 -0.011 0.0333 0.0155 0.037 0.3707)) (fh-improved . 105) (bu-improved . 1) (bh-improved . 9)) c (h - (equal) (text u . "The brown surface of the field went right up towards the sky all round, where it was lost by degrees in the mist that shut out the actual verge and accentuated the solitude. The only marks on the uniformity of the scene were a rick of last year’s produce standing in the midst of the arable, the rooks that rose at his approach, and the path athwart the fallow by which he had come, trodden now by he hardly knew whom, though once by many of his own dead family.") (measure . 270) (bh h - (equal) (time . 19) (line-count . 8) (looseness-spread . 0.0618) (bps q 12 25 38 52 65 76 89) (piece-count . 100) (avg-piece-length . 18.930609999999998) (avg-looseness . 0.034) (looseness-sd . 0.0215182883774216) (looseness-variance . 0.0004630367346938775) (looses q 0.0433 0.0222 -0.0046 0.0567 0.0163 0.0466 0.0572 0.0215)) (fu h - (equal) (time . 31) (line-count . 8) (looseness-spread . 0.097) (bps q 11 24 34 47 57 68 79) (piece-count . 90) (avg-piece-length . 21.034011111111102) (avg-looseness . 0.034) (looseness-sd . 0.03191434326635046) (looseness-variance . 0.0010185253061224492) (looses q 0.0433 0.0222 -0.0046 -0.012 0.085 0.0466 0.0572 0.0215)) (bu h - (equal) (time . 18) (line-count . 8) (looseness-spread . 0.0618) (bps q 11 24 34 46 57 68 79) (piece-count . 90) (avg-piece-length . 21.034011111111102) (avg-looseness . 0.034) (looseness-sd . 0.0215182883774216) (looseness-variance . 0.0004630367346938775) (looses q 0.0433 0.0222 -0.0046 0.0567 0.0163 0.0466 0.0572 0.0215)) (fh h - (equal) (time . 13) (line-count . 8) (looseness-spread . 0.097) (bps q 12 25 38 53 65 76 89) (piece-count . 100) (avg-piece-length . 18.930609999999998) (avg-looseness . 0.034) (looseness-sd . 0.03191434326635046) (looseness-variance . 0.0010185253061224492) (looses q 0.0433 0.0222 -0.0046 -0.012 0.085 0.0466 0.0572 0.0215)) (fh-improved . 38) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "The fresh harrow-lines seemed to stretch like the channellings in a piece of new corduroy, lending a meanly utilitarian air to the expanse, taking away its gradations, and depriving it of all history beyond that of the few recent months, though to every clod and stone there really attached associations enough and to spare—echoes of songs from ancient harvest-days, of spoken words, and of sturdy deeds. Every inch of ground had been the site, first or last, of energy, gaiety, horse-play, bickerings, weariness. Groups of gleaners had squatted in the sun on every square yard. Love-matches that had populated the adjoining hamlet had been made up there between reaping and carrying. Under the hedge which divided the field from a distant plantation girls had given themselves to lovers who would not turn their heads to look at them by the next harvest; and in that ancient cornfield many a man had made love-promises to a woman at whose voice he had trembled by the next seed-time after fulfilling them in the church adjoining. But this neither Jude nor the rooks around him considered. For them it was a lonely place, possessing, in the one view, only the quality of a work-ground, and in the other that of a granary good to feed in.") (measure . 270) (bh h - (equal) (time . 68) (line-count . 22) (looseness-spread . 0.141) (bps q 11 23 37 50 60 71 83 94 107 120 131 143 155 168 181 193 205 218 230 244 258) (piece-count . 267) (avg-piece-length . 19.004589887640453) (avg-looseness . 0.0463) (looseness-sd . 0.034207032733567726) (looseness-variance . 0.001170121088435374) (looses q 0.0746 0.1064 0.1518 0.0878 0.0437 0.0276 0.0313 0.0644 0.0159 0.0257 0.0351 0.0449 0.035 0.0108 0.02 0.0437 0.0151 0.0634 0.0287 0.034 0.013 0.359)) (fu h - (equal) (time . 32) (line-count . 22) (looseness-spread . 0.1699) (bps q 9 19 28 40 49 57 67 78 87 98 106 115 125 134 146 156 167 178 187 197 208) (piece-count . 220) (avg-piece-length . 23.064661363636375) (avg-looseness . 0.0654) (looseness-sd . 0.04487345169102402) (looseness-variance . 0.0020136266666666664) (looses q 0.1682 0.0248 0.0685 0.0062 0.1274 0.0871 0.0313 0.0213 0.02 -0.0017 0.1065 0.1069 0.035 0.0108 0.0879 0.0891 0.0761 0.0282 0.1069 0.0802 0.0927 0.0377)) (bu h - (equal) (time . 63) (line-count . 22) (looseness-spread . 0.1775) (bps q 9 19 28 39 48 56 65 76 86 96 105 114 124 133 145 155 166 177 187 197 208) (piece-count . 220) (avg-piece-length . 23.064661363636375) (avg-looseness . 0.0659) (looseness-sd . 0.04114062383709337) (looseness-variance . 0.0016925509297052153) (looses q 0.1682 0.0248 0.0685 0.1228 0.1136 0.0276 0.1124 0.0635 0.0493 0.0362 0.0489 0.0124 -0.0093 0.065 0.0891 0.0776 0.0761 0.0209 0.0426 0.0802 0.0927 0.0377)) (fh h - (equal) (time . 54) (line-count . 22) (looseness-spread . 0.1291) (bps q 11 25 39 52 61 72 84 95 108 121 133 146 157 169 182 194 206 218 230 244 258) (piece-count . 267) (avg-piece-length . 19.004589887640453) (avg-looseness . 0.0484) (looseness-sd . 0.03293140469166152) (looseness-variance . 0.0010844774149659864) (looses q 0.0746 0.026 0.0557 0.0783 0.1274 0.0871 0.0313 0.0213 0.02 -0.0017 0.0203 0.0284 0.07 0.0229 0.0645 0.0528 0.0495 0.1126 0.0287 0.034 0.013 0.359)) (fh-improved . 554) (bu-improved . 18) (bh-improved . 23)) c (h - (equal) (text u . "The boy stood under the rick before mentioned, and every few seconds used his clacker or rattle briskly. At each clack the rooks left off pecking, and rose and went away on their leisurely wings, burnished like tassets of mail, afterwards wheeling back and regarding him warily, and descending to feed at a more respectful distance.") (measure . 270) (bh h - (equal) (time . 13) (line-count . 6) (looseness-spread . 0.035) (bps q 11 24 37 48 61) (piece-count . 69) (avg-piece-length . 19.823999999999995) (avg-looseness . 0.0139) (looseness-sd . 0.012248036577345774) (looseness-variance . 0.00015001439999999996) (looses q 0.0113 0.0054 0.0144 0.0368 0.0018 0.4282)) (fu h - (equal) (time . 8) (line-count . 6) (looseness-spread . 0.035) (bps q 10 21 33 41 50) (piece-count . 56) (avg-piece-length . 24.42600000000001) (avg-looseness . 0.0139) (looseness-sd . 0.012248036577345774) (looseness-variance . 0.00015001439999999996) (looses q 0.0113 0.0054 0.0144 0.0368 0.0018 0.4282)) (bu h - (equal) (time . 11) (line-count . 6) (looseness-spread . 0.035) (bps q 10 21 33 41 50) (piece-count . 56) (avg-piece-length . 24.42600000000001) (avg-looseness . 0.0139) (looseness-sd . 0.012248036577345774) (looseness-variance . 0.00015001439999999996) (looses q 0.0113 0.0054 0.0144 0.0368 0.0018 0.4282)) (fh h - (equal) (time . 9) (line-count . 6) (looseness-spread . 0.035) (bps q 11 24 37 48 61) (piece-count . 69) (avg-piece-length . 19.823999999999995) (avg-looseness . 0.0139) (looseness-sd . 0.012248036577345774) (looseness-variance . 0.00015001439999999996) (looses q 0.0113 0.0054 0.0144 0.0368 0.0018 0.4282)) (fh-improved . 26) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "He sounded the clacker till his arm ached, and at length his heart grew sympathetic with the birds’ thwarted desires. They seemed, like himself, to be living in a world which did not want them. Why should he frighten them away? They took upon more and more the aspect of gentle friends and pensioners—the only friends he could claim as being in the least degree interested in him, for his aunt had often told him that she was not. He ceased his rattling, and they alighted anew.") (measure . 270) (bh h - (equal) (time . 37) (line-count . 9) (looseness-spread . 0.0656) (bps q 12 22 35 45 57 69 82 95) (piece-count . 97) (avg-piece-length . 20.275092783505155) (avg-looseness . 0.0274) (looseness-sd . 0.02419299679142706) (looseness-variance . 0.00058530109375) (looses q -0.0012 0.0499 0.0571 0.0585 -0.0071 0.0312 0.0124 0.0185 0.7669)) (fu h - (equal) (time . 28) (line-count . 9) (looseness-spread . 0.1023) (bps q 12 20 32 42 53 64 75 86) (piece-count . 88) (avg-piece-length . 22.34868181818182) (avg-looseness . 0.0274) (looseness-sd . 0.03229734654348558) (looseness-variance . 0.00104311859375) (looses q -0.0012 0.0499 -0.0074 0.0226 0.0212 -0.0035 0.0428 0.0949 0.7669)) (bu h - (equal) (time . 19) (line-count . 9) (looseness-spread . 0.0656) (bps q 12 20 31 41 52 62 74 86) (piece-count . 88) (avg-piece-length . 22.34868181818182) (avg-looseness . 0.0274) (looseness-sd . 0.02419299679142706) (looseness-variance . 0.00058530109375) (looses q -0.0012 0.0499 0.0571 0.0585 -0.0071 0.0312 0.0124 0.0185 0.7669)) (fh h - (equal) (time . 13) (line-count . 9) (looseness-spread . 0.1023) (bps q 12 22 36 46 58 71 83 95) (piece-count . 97) (avg-piece-length . 20.275092783505155) (avg-looseness . 0.0274) (looseness-sd . 0.03229734654348558) (looseness-variance . 0.00104311859375) (looses q -0.0012 0.0499 -0.0074 0.0226 0.0212 -0.0035 0.0428 0.0949 0.7669)) (fh-improved . 39) (bu-improved . 6) (bh-improved . 6)) c (h - (equal) (text u . "“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— you shall. There is enough for us all. Farmer Troutham can afford to let you have some. Eat, then my dear little birdies, and make a good meal!”") (measure . 270) (bh h - (equal) (time . 7) (line-count . 4) (looseness-spread . 0.0714) (bps q 10 21 31) (piece-count . 42) (avg-piece-length . 21.47077380952381) (avg-looseness . 0.0881) (looseness-sd . 0.03030669159699811) (looseness-variance . 0.000918495555555556) (looses q 0.0583 0.1297 0.0764 0.152)) (fu h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.0714) (bps q 9 19 29) (piece-count . 39) (avg-piece-length . 23.122371794871793) (avg-looseness . 0.0881) (looseness-sd . 0.03030669159699811) (looseness-variance . 0.000918495555555556) (looses q 0.0583 0.1297 0.0764 0.152)) (bu h - (equal) (time . 7) (line-count . 4) (looseness-spread . 0.0714) (bps q 9 19 29) (piece-count . 39) (avg-piece-length . 23.122371794871793) (avg-looseness . 0.0881) (looseness-sd . 0.03030669159699811) (looseness-variance . 0.000918495555555556) (looses q 0.0583 0.1297 0.0764 0.152)) (fh h - (equal) (time . 6) (line-count . 4) (looseness-spread . 0.0714) (bps q 10 21 31) (piece-count . 42) (avg-piece-length . 21.47077380952381) (avg-looseness . 0.0881) (looseness-sd . 0.03030669159699811) (looseness-variance . 0.000918495555555556) (looses q 0.0583 0.1297 0.0764 0.152)) (fh-improved . 5) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "They stayed and ate, inky spots on the nut-brown soil, and Jude enjoyed their appetite. A magic thread of fellow-feeling united his own life with theirs. Puny and sorry as those lives were, they much resembled his own.") (measure . 270) (bh h - (equal) (time . 8) (line-count . 4) (looseness-spread . 0.0207) (bps q 12 23 35) (piece-count . 42) (avg-piece-length . 21.34755952380953) (avg-looseness . 0.0168) (looseness-sd . 0.009342495502927588) (looseness-variance . 8.728222222222221e-05) (looses q 0.0112 0.03 0.0093 0.3037)) (fu h - (equal) (time . 6) (line-count . 4) (looseness-spread . 0.0938) (bps q 12 21 32) (piece-count . 39) (avg-piece-length . 22.989679487179494) (avg-looseness . 0.0552) (looseness-sd . 0.038507690429604086) (looseness-variance . 0.001482842222222222) (looses q 0.0112 0.105 0.0495 0.2019)) (bu h - (equal) (time . 8) (line-count . 4) (looseness-spread . 0.0594) (bps q 11 21 32) (piece-count . 39) (avg-piece-length . 22.989679487179494) (avg-looseness . 0.0582) (looseness-sd . 0.025023899687210135) (looseness-variance . 0.0006261955555555554) (looses q 0.0923 0.0329 0.0495 0.2019)) (fh h - (equal) (time . 23) (line-count . 4) (looseness-spread . 0.0207) (bps q 12 23 35) (piece-count . 42) (avg-piece-length . 21.34755952380953) (avg-looseness . 0.0168) (looseness-sd . 0.009342495502927588) (looseness-variance . 8.728222222222221e-05) (looses q 0.0112 0.03 0.0093 0.3037)) (fh-improved . 5) (bu-improved . 1) (bh-improved . 0)) c (h - (equal) (text u . "His clacker he had by this time thrown away from him, as being a mean and sordid instrument, offensive both to the birds and to himself as their friend. All at once he became conscious of a smart blow upon his buttocks, followed by a loud clack, which announced to his surprised senses that the clacker had been the instrument of offence used. The birds and Jude started up simultaneously, and the dazed eyes of the latter beheld the farmer in person, the great Troutham himself, his red face glaring down upon Jude’s cowering frame, the clacker swinging in his hand.") (measure . 270) (bh h - (equal) (time . 23) (line-count . 10) (looseness-spread . 0.0591) (bps q 12 25 38 51 62 73 85 98 109) (piece-count . 120) (avg-piece-length . 19.57299999999999) (avg-looseness . 0.0356) (looseness-sd . 0.016519752486711847) (looseness-variance . 0.00027290222222222223) (looses q 0.0303 0.0228 0.0255 0.038 0.0116 0.0337 0.0541 0.0707 0.034 0.1736)) (fu h - (equal) (time . 14) (line-count . 10) (looseness-spread . 0.0604) (bps q 12 22 34 45 54 64 73 84 93) (piece-count . 101) (avg-piece-length . 23.255049504950488) (avg-looseness . 0.0356) (looseness-sd . 0.016760204188626237) (looseness-variance . 0.0002809044444444444) (looses q 0.0303 0.0228 0.0255 0.0103 0.0393 0.0337 0.0541 0.0707 0.034 0.1736)) (bu h - (equal) (time . 21) (line-count . 10) (looseness-spread . 0.0591) (bps q 12 22 34 44 54 64 73 84 93) (piece-count . 101) (avg-piece-length . 23.255049504950488) (avg-looseness . 0.0356) (looseness-sd . 0.016519752486711847) (looseness-variance . 0.00027290222222222223) (looses q 0.0303 0.0228 0.0255 0.038 0.0116 0.0337 0.0541 0.0707 0.034 0.1736)) (fh h - (equal) (time . 31) (line-count . 10) (looseness-spread . 0.0604) (bps q 12 25 38 52 62 73 85 98 109) (piece-count . 120) (avg-piece-length . 19.57299999999999) (avg-looseness . 0.0356) (looseness-sd . 0.016760204188626237) (looseness-variance . 0.0002809044444444444) (looses q 0.0303 0.0228 0.0255 0.0103 0.0393 0.0337 0.0541 0.0707 0.034 0.1736)) (fh-improved . 73) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear birdies,’ indeed! I’ll tickle your breeches, and see if you say, ‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s how you earn your sixpence a day for keeping the rooks off my corn!”") (measure . 270) (bh h - (equal) (time . 13) (line-count . 6) (looseness-spread . 0.037) (bps q 12 22 33 45 57) (piece-count . 65) (avg-piece-length . 20.546430769230764) (avg-looseness . 0.0451) (looseness-sd . 0.014359247891167558) (looseness-variance . 0.000206188) (looses q 0.0334 0.0613 0.0243 0.059 0.0475 0.4221)) (fu h - (equal) (time . 9) (line-count . 6) (looseness-spread . 0.037) (bps q 12 22 33 42 53) (piece-count . 60) (avg-piece-length . 22.25863333333333) (avg-looseness . 0.0451) (looseness-sd . 0.014359247891167558) (looseness-variance . 0.000206188) (looses q 0.0334 0.0613 0.0243 0.059 0.0475 0.4221)) (bu h - (equal) (time . 12) (line-count . 6) (looseness-spread . 0.037) (bps q 12 22 33 42 53) (piece-count . 60) (avg-piece-length . 22.25863333333333) (avg-looseness . 0.0451) (looseness-sd . 0.014359247891167558) (looseness-variance . 0.000206188) (looses q 0.0334 0.0613 0.0243 0.059 0.0475 0.4221)) (fh h - (equal) (time . 23) (line-count . 6) (looseness-spread . 0.037) (bps q 12 22 33 45 57) (piece-count . 65) (avg-piece-length . 20.546430769230764) (avg-looseness . 0.0451) (looseness-sd . 0.014359247891167558) (looseness-variance . 0.000206188) (looses q 0.0334 0.0613 0.0243 0.059 0.0475 0.4221)) (fh-improved . 7) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham had seized his left hand with his own left, and swinging his slim frame round him at arm’s-length, again struck Jude on the hind parts with the flat side of Jude’s own rattle, till the field echoed with the blows, which were delivered once or twice at each revolution.") (measure . 270) (bh h - (equal) (time . 28) (line-count . 6) (looseness-spread . 0.0449) (bps q 10 21 32 44 56) (piece-count . 67) (avg-piece-length . 20.503298507462688) (avg-looseness . 0.0327) (looseness-sd . 0.01654165650713374) (looseness-variance . 0.00027362640000000004) (looses q 0.0184 0.0449 0.0353 0.055 0.0101 0.2903)) (fu h - (equal) (time . 9) (line-count . 6) (looseness-spread . 0.0449) (bps q 8 19 29 41 52) (piece-count . 59) (avg-piece-length . 23.283406779661018) (avg-looseness . 0.0327) (looseness-sd . 0.01654165650713374) (looseness-variance . 0.00027362640000000004) (looses q 0.0184 0.0449 0.0353 0.055 0.0101 0.2903)) (bu h - (equal) (time . 12) (line-count . 6) (looseness-spread . 0.0449) (bps q 8 19 29 41 52) (piece-count . 59) (avg-piece-length . 23.283406779661018) (avg-looseness . 0.0327) (looseness-sd . 0.01654165650713374) (looseness-variance . 0.00027362640000000004) (looses q 0.0184 0.0449 0.0353 0.055 0.0101 0.2903)) (fh h - (equal) (time . 9) (line-count . 6) (looseness-spread . 0.0449) (bps q 10 21 32 44 56) (piece-count . 67) (avg-piece-length . 20.503298507462688) (avg-looseness . 0.0327) (looseness-sd . 0.01654165650713374) (looseness-variance . 0.00027362640000000004) (looses q 0.0184 0.0449 0.0353 0.055 0.0101 0.2903)) (fh-improved . 14) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as helpless under the centrifugal tendency of his person as a hooked fish swinging to land, and beholding the hill, the rick, the plantation, the path, and the rooks going round and round him in an amazing circular race. “I—I sir—only meant that—there was a good crop in the ground—I saw ‘em sow it—and the rooks could have a little bit for dinner—and you wouldn’t miss it, sir—and Mr. Phillotson said I was to be kind to ‘em—oh, oh, oh!”") (measure . 270) (bh h - (equal) (time . 21) (line-count . 9) (looseness-spread . 0.0844) (bps q 9 22 35 48 61 74 87 100) (piece-count . 112) (avg-piece-length . 17.802) (avg-looseness . 0.0589) (looseness-sd . 0.025807205873554) (looseness-variance . 0.0006660118750000001) (looses q 0.1058 0.079 0.0596 0.0629 0.0706 0.043 0.0214 0.0287 0.1243)) (fu h - (equal) (time . 13) (line-count . 9) (looseness-spread . 0.1329) (bps q 9 18 29 40 51 62 74 85) (piece-count . 97) (avg-piece-length . 20.554886597938147) (avg-looseness . 0.0646) (looseness-sd . 0.039489357743574406) (looseness-variance . 0.0015594093750000001) (looses q 0.1058 0.079 -0.0046 0.0245 0.0581 0.1283 0.0688 0.0571 0.0518)) (bu h - (equal) (time . 20) (line-count . 9) (looseness-spread . 0.0628) (bps q 9 18 28 39 49 62 74 85) (piece-count . 97) (avg-piece-length . 20.554886597938147) (avg-looseness . 0.0684) (looseness-sd . 0.017308379473538246) (looseness-variance . 0.0002995800000000001) (looses q 0.1058 0.079 0.0596 0.0629 0.0706 0.043 0.0688 0.0571 0.0518)) (fh h - (equal) (time . 33) (line-count . 9) (looseness-spread . 0.1179) (bps q 9 23 36 49 63 74 87 100) (piece-count . 112) (avg-piece-length . 17.802) (avg-looseness . 0.0536) (looseness-sd . 0.039840241512194674) (looseness-variance . 0.0015872448437499998) (looses q 0.1058 0.0104 0.0519 0.0245 0.0581 0.1283 0.0214 0.0287 0.1243)) (fh-improved . 73) (bu-improved . 4) (bh-improved . 5)) c (h - (equal) (text u . "This truthful explanation seemed to exasperate the farmer even more than if Jude had stoutly denied saying anything at all, and he still smacked the whirling urchin, the clacks of the instrument continuing to resound all across the field and as far as the ears of distant workers—who gathered thereupon that Jude was pursuing his business of clacking with great assiduity—and echoing from the brand-new church tower just behind the mist, towards the building of which structure the farmer had largely subscribed, to testify his love for God and man.") (measure . 270) (bh h - (equal) (time . 22) (line-count . 10) (looseness-spread . 0.0641) (bps q 13 25 36 50 64 77 88 99 110) (piece-count . 116) (avg-piece-length . 19.530073275862062) (avg-looseness . 0.0317) (looseness-sd . 0.02209227002962186) (looseness-variance . 0.00048806839506172837) (looses q 0.0134 0.0204 0.0338 0.009 0.0635 0.0731 0.0124 0.0174 0.0421 0.504)) (fu h - (equal) (time . 14) (line-count . 10) (looseness-spread . 0.1122) (bps q 8 18 30 39 50 59 68 78 86) (piece-count . 92) (avg-piece-length . 24.624875) (avg-looseness . 0.0397) (looseness-sd . 0.0336486750605924) (looseness-variance . 0.0011322333333333332) (looses q 0.0134 0.0204 -0.0095 0.0523 0.0635 0.0223 0.0745 0.0174 0.1027 0.4554)) (bu h - (equal) (time . 35) (line-count . 10) (looseness-spread . 0.0655) (bps q 8 18 29 39 50 59 68 77 86) (piece-count . 92) (avg-piece-length . 24.624875) (avg-looseness . 0.0397) (looseness-sd . 0.023444644548909058) (looseness-variance . 0.0005496513580246912) (looses q 0.0134 0.0204 0.0338 0.009 0.0635 0.0223 0.0745 0.0607 0.0593 0.4554)) (fh h - (equal) (time . 15) (line-count . 10) (looseness-spread . 0.084) (bps q 13 25 37 50 64 78 88 99 110) (piece-count . 116) (avg-piece-length . 19.530073275862062) (avg-looseness . 0.0329) (looseness-sd . 0.025418234924295326) (looseness-variance . 0.0006460866666666667) (looses q 0.0134 0.0204 -0.0095 0.0523 0.0635 0.0223 0.0745 0.0174 0.0421 0.504)) (fh-improved . 128) (bu-improved . 2) (bh-improved . 2)) c (h - (equal) (text u . "Presently Troutham grew tired of his punitive task, and depositing the quivering boy on his legs, took a sixpence from his pocket and gave it him in payment for his day’s work, telling him to go home and never let him see him in one of those fields again.") (measure . 270) (bh h - (equal) (time . 11) (line-count . 5) (looseness-spread . 0.0369) (bps q 10 24 37 50) (piece-count . 55) (avg-piece-length . 18.821527272727277) (avg-looseness . 0.0473) (looseness-sd . 0.013498032264000556) (looseness-variance . 0.00018219687499999997) (looses q 0.0624 0.0496 0.0518 0.0255 0.5913)) (fu h - (equal) (time . 6) (line-count . 5) (looseness-spread . 0.0369) (bps q 9 19 31 44) (piece-count . 49) (avg-piece-length . 21.126204081632654) (avg-looseness . 0.0473) (looseness-sd . 0.013498032264000556) (looseness-variance . 0.00018219687499999997) (looses q 0.0624 0.0496 0.0518 0.0255 0.5913)) (bu h - (equal) (time . 26) (line-count . 5) (looseness-spread . 0.0369) (bps q 9 19 31 44) (piece-count . 49) (avg-piece-length . 21.126204081632654) (avg-looseness . 0.0473) (looseness-sd . 0.013498032264000556) (looseness-variance . 0.00018219687499999997) (looses q 0.0624 0.0496 0.0518 0.0255 0.5913)) (fh h - (equal) (time . 7) (line-count . 5) (looseness-spread . 0.0369) (bps q 10 24 37 50) (piece-count . 55) (avg-piece-length . 18.821527272727277) (avg-looseness . 0.0473) (looseness-sd . 0.013498032264000556) (looseness-variance . 0.00018219687499999997) (looses q 0.0624 0.0496 0.0518 0.0255 0.5913)) (fh-improved . 18) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Jude leaped out of arm’s reach, and walked along the trackway weeping—not from the pain, though that was keen enough; not from the perception of the flaw in the terrestrial scheme, by which what was good for God’s birds was bad for God’s gardener; but with the awful sense that he had wholly disgraced himself before he had been a year in the parish, and hence might be a burden to his great-aunt for life.") (measure . 270) (bh h - (equal) (time . 18) (line-count . 8) (looseness-spread . 0.0519) (bps q 11 22 36 47 59 72 85) (piece-count . 87) (avg-piece-length . 19.24425862068965) (avg-looseness . 0.035) (looseness-sd . 0.016107534046564186) (looseness-variance . 0.0002594526530612245) (looses q 0.0106 0.0625 0.042 0.0199 0.0467 0.0279 0.0355 0.8863)) (fu h - (equal) (time . 11) (line-count . 8) (looseness-spread . 0.1139) (bps q 10 19 30 40 51 62 75) (piece-count . 77) (avg-piece-length . 21.743512987012977) (avg-looseness . 0.0383) (looseness-sd . 0.038807794293919666) (looseness-variance . 0.0015060448979591838) (looses q 0.107 0.0662 0.0631 -0.0044 0.0237 0.0196 -0.0069 0.8863)) (bu h - (equal) (time . 15) (line-count . 8) (looseness-spread . 0.1139) (bps q 10 19 30 40 51 62 75) (piece-count . 77) (avg-piece-length . 21.743512987012977) (avg-looseness . 0.0383) (looseness-sd . 0.038807794293919666) (looseness-variance . 0.0015060448979591838) (looses q 0.107 0.0662 0.0631 -0.0044 0.0237 0.0196 -0.0069 0.8863)) (fh h - (equal) (time . 30) (line-count . 8) (looseness-spread . 0.0519) (bps q 11 22 36 47 59 72 85) (piece-count . 87) (avg-piece-length . 19.24425862068965) (avg-looseness . 0.035) (looseness-sd . 0.016107534046564186) (looseness-variance . 0.0002594526530612245) (looses q 0.0106 0.0625 0.042 0.0199 0.0467 0.0279 0.0355 0.8863)) (fh-improved . 45) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "With this shadow on his mind he did not care to show himself in the village, and went homeward by a roundabout track behind a high hedge and across a pasture. Here he beheld scores of coupled earthworms lying half their length on the surface of the damp ground, as they always did in such weather at that time of the year. It was impossible to advance in regular steps without crushing some of them at each tread.") (measure . 270) (bh h - (equal) (time . 17) (line-count . 8) (looseness-spread . 0.0698) (bps q 13 26 38 49 62 76 90) (piece-count . 92) (avg-piece-length . 18.551874999999995) (avg-looseness . 0.0314) (looseness-sd . 0.02458544450752626) (looseness-variance . 0.000604444081632653) (looses q 0.0115 0.065 0.0576 -0.0048 0.0495 0.0291 0.012 0.8228)) (fu h - (equal) (time . 11) (line-count . 8) (looseness-spread . 0.095) (bps q 12 22 33 42 54 66 76) (piece-count . 78) (avg-piece-length . 21.881698717948716) (avg-looseness . 0.0331) (looseness-sd . 0.03215647965299481) (looseness-variance . 0.0010340391836734695) (looses q 0.0902 -0.0017 0.0576 -0.0048 0.0495 0.0291 0.012 0.8228)) (bu h - (equal) (time . 15) (line-count . 8) (looseness-spread . 0.095) (bps q 12 22 33 42 54 66 76) (piece-count . 78) (avg-piece-length . 21.881698717948716) (avg-looseness . 0.0331) (looseness-sd . 0.03215647965299481) (looseness-variance . 0.0010340391836734695) (looses q 0.0902 -0.0017 0.0576 -0.0048 0.0495 0.0291 0.012 0.8228)) (fh h - (equal) (time . 27) (line-count . 8) (looseness-spread . 0.0698) (bps q 13 26 38 49 62 76 90) (piece-count . 92) (avg-piece-length . 18.551874999999995) (avg-looseness . 0.0314) (looseness-sd . 0.02458544450752626) (looseness-variance . 0.000604444081632653) (looses q 0.0115 0.065 0.0576 -0.0048 0.0495 0.0291 0.012 0.8228)) (fh-improved . 49) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Though Farmer Troutham had just hurt him, he was a boy who could not himself bear to hurt anything. He had never brought home a nest of young birds without lying awake in misery half the night after, and often reinstating them and the nest in their original place the next morning. He could scarcely bear to see trees cut down or lopped, from a fancy that it hurt them; and late pruning, when the sap was up and the tree bled profusely, had been a positive grief to him in his infancy. This weakness of character, as it may be called, suggested that he was the sort of man who was born to ache a good deal before the fall of the curtain upon his unnecessary life should signify that all was well with him again. He carefully picked his way on tiptoe among the earthworms, without killing a single one.") (measure . 270) (bh h - (equal) (time . 51) (line-count . 14) (looseness-spread . 0.076) (bps q 11 24 36 49 63 75 88 102 116 129 143 156 169) (piece-count . 177) (avg-piece-length . 18.446454802259886) (avg-looseness . 0.0277) (looseness-sd . 0.023114543693906545) (looseness-variance . 0.0005342821301775148) (looses q 0.0085 0.007 0.0124 0.0214 0.0165 0.0095 0.0485 0.075 0.0534 0.0392 0.0119 0.0574 -0.001 0.3185)) (fu h - (equal) (time . 21) (line-count . 14) (looseness-spread . 0.0817) (bps q 11 22 33 43 54 66 78 90 101 113 126 136 146) (piece-count . 151) (avg-piece-length . 21.62266556291391) (avg-looseness . 0.0277) (looseness-sd . 0.026234867715002275) (looseness-variance . 0.0006882682840236686) (looses q 0.0085 0.007 0.0124 0.0214 0.0165 0.0095 0.0485 -0.0011 0.0806 -0.0002 0.0413 0.0403 0.075 0.3185)) (bu h - (equal) (time . 47) (line-count . 14) (looseness-spread . 0.076) (bps q 11 22 33 43 54 66 78 89 100 112 125 135 146) (piece-count . 151) (avg-piece-length . 21.62266556291391) (avg-looseness . 0.0277) (looseness-sd . 0.023114543693906545) (looseness-variance . 0.0005342821301775148) (looses q 0.0085 0.007 0.0124 0.0214 0.0165 0.0095 0.0485 0.075 0.0534 0.0392 0.0119 0.0574 -0.001 0.3185)) (fh h - (equal) (time . 22) (line-count . 14) (looseness-spread . 0.0817) (bps q 11 24 36 49 63 75 88 103 117 130 144 157 169) (piece-count . 177) (avg-piece-length . 18.446454802259886) (avg-looseness . 0.0277) (looseness-sd . 0.026234867715002275) (looseness-variance . 0.0006882682840236686) (looses q 0.0085 0.007 0.0124 0.0214 0.0165 0.0095 0.0485 -0.0011 0.0806 -0.0002 0.0413 0.0403 0.075 0.3185)) (fh-improved . 147) (bu-improved . 5) (bh-improved . 5)) c (h - (equal) (text u . "On entering the cottage he found his aunt selling a penny loaf to a little girl, and when the customer was gone she said, “Well, how do you come to be back here in the middle of the morning like this?”") (measure . 270) (bh h - (equal) (time . 8) (line-count . 4) (looseness-spread . 0.0269) (bps q 14 28 41) (piece-count . 48) (avg-piece-length . 16.973041666666667) (avg-looseness . 0.0449) (looseness-sd . 0.011558835004734112) (looseness-variance . 0.00013360666666666665) (looses q 0.034 0.0609 0.0398 0.5237)) (fu h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.0845) (bps q 11 23 35) (piece-count . 41) (avg-piece-length . 19.870878048780487) (avg-looseness . 0.0711) (looseness-sd . 0.03524772648302613) (looseness-variance . 0.0012424022222222218) (looses q 0.034 0.0609 0.1185 0.4571)) (bu h - (equal) (time . 7) (line-count . 4) (looseness-spread . 0.0845) (bps q 11 23 35) (piece-count . 41) (avg-piece-length . 19.870878048780487) (avg-looseness . 0.0711) (looseness-sd . 0.03524772648302613) (looseness-variance . 0.0012424022222222218) (looses q 0.034 0.0609 0.1185 0.4571)) (fh h - (equal) (time . 7) (line-count . 4) (looseness-spread . 0.0269) (bps q 14 28 41) (piece-count . 48) (avg-piece-length . 16.973041666666667) (avg-looseness . 0.0449) (looseness-sd . 0.011558835004734112) (looseness-variance . 0.00013360666666666665) (looses q 0.034 0.0609 0.0398 0.5237)) (fh-improved . 14) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Mr. Troutham have turned me away because I let the rooks have a few peckings of corn. And there’s my wages—the last I shall ever hae!”") (measure . 270) (bh h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.1066) (bps q 10 22) (piece-count . 28) (avg-piece-length . 20.311464285714287) (avg-looseness . 0.0459) (looseness-sd . 0.0533) (looseness-variance . 0.00284089) (looses q 0.0992 -0.0074 0.5972)) (fu h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.1066) (bps q 10 21) (piece-count . 27) (avg-piece-length . 21.06374074074074) (avg-looseness . 0.0459) (looseness-sd . 0.0533) (looseness-variance . 0.00284089) (looses q 0.0992 -0.0074 0.5972)) (bu h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.1066) (bps q 10 21) (piece-count . 27) (avg-piece-length . 21.06374074074074) (avg-looseness . 0.0459) (looseness-sd . 0.0533) (looseness-variance . 0.00284089) (looses q 0.0992 -0.0074 0.5972)) (fh h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.1066) (bps q 10 22) (piece-count . 28) (avg-piece-length . 20.311464285714287) (avg-looseness . 0.0459) (looseness-sd . 0.0533) (looseness-variance . 0.00284089) (looses q 0.0992 -0.0074 0.5972)) (fh-improved . 1) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Ah!” said his aunt, suspending her breath. And she opened upon him a lecture on how she would now have him all the spring upon her hands doing nothing. “If you can’t skeer birds, what can ye do? There! don’t ye look so deedy! Farmer Troutham is not so much better than myself, come to that. But ‘tis as Job said, ‘Now they that are younger than I have me in derision, whose fathers I would have disdained to have set with the dogs of my flock.’ His father was my father’s journeyman, anyhow, and I must have been a fool to let ‘ee go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of mischty.”") (measure . 270) (bh h - (equal) (time . 45) (line-count . 12) (looseness-spread . 0.09) (bps q 11 23 35 46 57 69 81 93 104 119 131) (piece-count . 132) (avg-piece-length . 19.122496212121213) (avg-looseness . 0.0762) (looseness-sd . 0.02520946627921037) (looseness-variance . 0.0006355171900826447) (looses q 0.1297 0.0615 0.0397 0.0718 0.0672 0.0408 0.0722 0.1002 0.0714 0.0839 0.0997 0.9168)) (fu h - (equal) (time . 17) (line-count . 12) (looseness-spread . 0.1478) (bps q 9 20 31 43 52 64 75 86 94 109 120) (piece-count . 121) (avg-piece-length . 20.860904958677686) (avg-looseness . 0.0828) (looseness-sd . 0.0418102383759989) (looseness-variance . 0.0017480960330578511) (looses q 0.1297 0.0615 0.0397 0.0249 0.114 0.0408 0.0722 0.1002 0.0714 0.0839 0.1727 0.8558)) (bu h - (equal) (time . 43) (line-count . 12) (looseness-spread . 0.0943) (bps q 9 20 31 42 52 64 75 86 94 108 120) (piece-count . 121) (avg-piece-length . 20.860904958677686) (avg-looseness . 0.0832) (looseness-sd . 0.032632772656329245) (looseness-variance . 0.0010648978512396697) (looses q 0.1297 0.0615 0.0397 0.0718 0.0672 0.0408 0.0722 0.1002 0.0714 0.134 0.1265 0.8558)) (fh h - (equal) (time . 17) (line-count . 12) (looseness-spread . 0.1048) (bps q 11 23 35 47 57 69 81 93 104 119 131) (piece-count . 132) (avg-piece-length . 19.122496212121213) (avg-looseness . 0.0762) (looseness-sd . 0.03155205851753915) (looseness-variance . 0.000995532396694215) (looses q 0.1297 0.0615 0.0397 0.0249 0.114 0.0408 0.0722 0.1002 0.0714 0.0839 0.0997 0.9168)) (fh-improved . 67) (bu-improved . 2) (bh-improved . 1)) c (h - (equal) (text u . "More angry with Jude for demeaning her by coming there than for dereliction of duty, she rated him primarily from that point of view, and only secondarily from a moral one.") (measure . 270) (bh h - (equal) (time . 7) (line-count . 3) (looseness-spread . 0.0124) (bps q 12 26) (piece-count . 39) (avg-piece-length . 18.52089743589744) (avg-looseness . 0.0299) (looseness-sd . 0.006200000000000001) (looseness-variance . 3.844000000000001e-05) (looses q 0.0237 0.0361 0.0331)) (fu h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0124) (bps q 10 20) (piece-count . 30) (avg-piece-length . 24.077166666666663) (avg-looseness . 0.0299) (looseness-sd . 0.006200000000000001) (looseness-variance . 3.844000000000001e-05) (looses q 0.0237 0.0361 0.0331)) (bu h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.0124) (bps q 10 20) (piece-count . 30) (avg-piece-length . 24.077166666666663) (avg-looseness . 0.0299) (looseness-sd . 0.006200000000000001) (looseness-variance . 3.844000000000001e-05) (looses q 0.0237 0.0361 0.0331)) (fh h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0124) (bps q 12 26) (piece-count . 39) (avg-piece-length . 18.52089743589744) (avg-looseness . 0.0299) (looseness-sd . 0.006200000000000001) (looseness-variance . 3.844000000000001e-05) (looses q 0.0237 0.0361 0.0331)) (fh-improved . 8) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Not that you should have let the birds eat what Farmer Troutham planted. Of course you was wrong in that. Jude, Jude, why didstn’t go off with that schoolmaster of thine to Christminster or somewhere? But, oh no—poor or’nary child—there never was any sprawl on thy side of the family, and never will be!”") (measure . 270) (bh h - (equal) (time . 29) (line-count . 6) (looseness-spread . 0.0653) (bps q 11 21 34 46 58) (piece-count . 62) (avg-piece-length . 20.614677419354845) (avg-looseness . 0.0343) (looseness-sd . 0.021845036049409485) (looseness-variance . 0.00047720559999999996) (looses q 0.0678 0.0216 0.0437 0.0025 0.036 0.6366)) (fu h - (equal) (time . 8) (line-count . 6) (looseness-spread . 0.1122) (bps q 11 21 32 40 51) (piece-count . 55) (avg-piece-length . 23.238363636363637) (avg-looseness . 0.0496) (looseness-sd . 0.03877261920479451) (looseness-variance . 0.0015033160000000002) (looses q 0.0678 0.0216 0.0003 0.0458 0.1125 0.5721)) (bu h - (equal) (time . 12) (line-count . 6) (looseness-spread . 0.11) (bps q 11 21 31 40 51) (piece-count . 55) (avg-piece-length . 23.238363636363637) (avg-looseness . 0.0496) (looseness-sd . 0.03827497354669236) (looseness-variance . 0.0014649735999999998) (looses q 0.0678 0.0216 0.0437 0.0025 0.1125 0.5721)) (fh h - (equal) (time . 9) (line-count . 6) (looseness-spread . 0.0675) (bps q 11 21 35 46 58) (piece-count . 62) (avg-piece-length . 20.614677419354845) (avg-looseness . 0.0343) (looseness-sd . 0.02269220130353157) (looseness-variance . 0.0005149359999999999) (looses q 0.0678 0.0216 0.0003 0.0458 0.036 0.6366)) (fh-improved . 16) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "“Where is this beautiful city, Aunt—this place where Mr. Phillotson is gone to?” asked the boy, after meditating in silence.") (measure . 270) (bh h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0088) (bps q 12 26) (piece-count . 27) (avg-piece-length . 18.773111111111113) (avg-looseness . 0.047) (looseness-sd . 0.004400000000000001) (looseness-variance . 1.936000000000001e-05) (looses q 0.0514 0.0426 0.8805)) (fu h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.0088) (bps q 10 20) (piece-count . 21) (avg-piece-length . 24.136857142857142) (avg-looseness . 0.047) (looseness-sd . 0.004400000000000001) (looseness-variance . 1.936000000000001e-05) (looses q 0.0514 0.0426 0.8805)) (bu h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.0088) (bps q 10 20) (piece-count . 21) (avg-piece-length . 24.136857142857142) (avg-looseness . 0.047) (looseness-sd . 0.004400000000000001) (looseness-variance . 1.936000000000001e-05) (looses q 0.0514 0.0426 0.8805)) (fh h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.0088) (bps q 12 26) (piece-count . 27) (avg-piece-length . 18.773111111111113) (avg-looseness . 0.047) (looseness-sd . 0.004400000000000001) (looseness-variance . 1.936000000000001e-05) (looses q 0.0514 0.0426 0.8805)) (fh-improved . 8) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Lord! you ought to know where the city of Christminster is. Near a score of miles from here. It is a place much too good for you ever to have much to do with, poor boy, I’m a-thinking.”") (measure . 270) (bh h - (equal) (time . 8) (line-count . 4) (looseness-spread . 0.0079) (bps q 12 26 39) (piece-count . 42) (avg-piece-length . 18.068964285714287) (avg-looseness . 0.0349) (looseness-sd . 0.0032293790252754307) (looseness-variance . 1.042888888888889e-05) (looses q 0.0311 0.039 0.0347 0.815)) (fu h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.0079) (bps q 10 24 37) (piece-count . 39) (avg-piece-length . 19.458884615384616) (avg-looseness . 0.0349) (looseness-sd . 0.0032293790252754307) (looseness-variance . 1.042888888888889e-05) (looses q 0.0311 0.039 0.0347 0.815)) (bu h - (equal) (time . 7) (line-count . 4) (looseness-spread . 0.0079) (bps q 10 24 37) (piece-count . 39) (avg-piece-length . 19.458884615384616) (avg-looseness . 0.0349) (looseness-sd . 0.0032293790252754307) (looseness-variance . 1.042888888888889e-05) (looses q 0.0311 0.039 0.0347 0.815)) (fh h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.0079) (bps q 12 26 39) (piece-count . 42) (avg-piece-length . 18.068964285714287) (avg-looseness . 0.0349) (looseness-sd . 0.0032293790252754307) (looseness-variance . 1.042888888888889e-05) (looses q 0.0311 0.039 0.0347 0.815)) (fh-improved . 6) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as that. We’ve never had anything to do with folk in Christminster, nor folk in Christminster with we.”") (measure . 270) (bh h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.0068) (bps q 11 24) (piece-count . 35) (avg-piece-length . 20.56594285714286) (avg-looseness . 0.0195) (looseness-sd . 0.0034000000000000002) (looseness-variance . 1.1560000000000001e-05) (looses q 0.0229 0.0161 0.124)) (fu h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0068) (bps q 10 22) (piece-count . 29) (avg-piece-length . 24.820965517241376) (avg-looseness . 0.0195) (looseness-sd . 0.0034000000000000002) (looseness-variance . 1.1560000000000001e-05) (looses q 0.0229 0.0161 0.124)) (bu h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.0068) (bps q 10 22) (piece-count . 29) (avg-piece-length . 24.820965517241376) (avg-looseness . 0.0195) (looseness-sd . 0.0034000000000000002) (looseness-variance . 1.1560000000000001e-05) (looses q 0.0229 0.0161 0.124)) (fh h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.0068) (bps q 11 24) (piece-count . 35) (avg-piece-length . 20.56594285714286) (avg-looseness . 0.0195) (looseness-sd . 0.0034000000000000002) (looseness-variance . 1.1560000000000001e-05) (looses q 0.0229 0.0161 0.124)) (fh-improved . 3) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Jude went out, and, feeling more than ever his existence to be an undemanded one, he lay down upon his back on a heap of litter near the pig-sty. The fog had by this time become more translucent, and the position of the sun could be seen through it. He pulled his straw hat over his face, and peered through the interstices of the plaiting at the white brightness, vaguely reflecting. Growing up brought responsibilities, he found. Events did not rhyme quite as he had thought. Nature’s logic was too horrid for him to care for. That mercy towards one set of creatures was cruelty towards another sickened his sense of harmony. As you got older, and felt yourself to be at the centre of your time, and not at a point in its circumference, as you had felt when you were little, you were seized with a sort of shuddering, he perceived. All around you there seemed to be something glaring, garish, rattling, and the noises and glares hit upon the little cell called your life, and shook it, and warped it.") (measure . 270) (bh h - (equal) (time . 55) (line-count . 17) (looseness-spread . 0.0765) (bps q 12 25 40 52 64 76 86 99 111 123 135 150 166 180 192 205) (piece-count . 217) (avg-piece-length . 18.67255529953916) (avg-looseness . 0.0299) (looseness-sd . 0.025298090806175476) (looseness-variance . 0.0006399933984375001) (looses q 0.0536 0.0454 0.0501 -0.0083 0.0601 0.067 0.0343 0.0474 0.0512 0.0281 -0.0075 0.0222 -0.0095 0.033 -0.0069 0.0187 0.0464)) (fu h - (equal) (time . 43) (line-count . 17) (looseness-spread . 0.087) (bps q 11 23 36 46 58 68 75 85 96 106 116 129 142 153 162 172) (piece-count . 183) (avg-piece-length . 22.141773224043693) (avg-looseness . 0.0296) (looseness-sd . 0.027850179532634974) (looseness-variance . 0.0007756325) (looses q 0.0102 0.061 0.0779 -0.0083 0.0601 0.067 0.0343 -0.0032 0.0213 0.0479 0.0017 0.0047 -0.0091 0.0449 0.0437 0.0187 0.0464)) (bu h - (equal) (time . 38) (line-count . 17) (looseness-spread . 0.0753) (bps q 10 22 36 46 58 68 75 85 96 106 116 129 141 152 162 172) (piece-count . 183) (avg-piece-length . 22.141773224043693) (avg-looseness . 0.0301) (looseness-sd . 0.02555895681434397) (looseness-variance . 0.0006532602734375001) (looses q 0.0536 0.0454 0.0501 -0.0083 0.0601 0.067 0.0343 -0.0032 0.0213 0.0479 0.0017 0.0047 0.0625 0.033 -0.0069 0.0187 0.0464)) (fh h - (equal) (time . 46) (line-count . 17) (looseness-spread . 0.087) (bps q 13 26 40 52 64 76 86 100 112 124 136 151 167 181 192 205) (piece-count . 217) (avg-piece-length . 18.67255529953916) (avg-looseness . 0.0296) (looseness-sd . 0.027850179532634974) (looseness-variance . 0.0007756325) (looses q 0.0102 0.061 0.0779 -0.0083 0.0601 0.067 0.0343 -0.0032 0.0213 0.0479 0.0017 0.0047 -0.0091 0.0449 0.0437 0.0187 0.0464)) (fh-improved . 247) (bu-improved . 4) (bh-improved . 9)) c (h - (equal) (text u . "Then, like the natural boy, he forgot his despondency, and sprang up. During the remainder of the morning he helped his aunt, and in the afternoon, when there was nothing more to be done, he went into the village. Here he asked a man whereabouts Christminster lay.") (measure . 270) (bh h - (equal) (time . 10) (line-count . 5) (looseness-spread . 0.0708) (bps q 13 26 38 52) (piece-count . 58) (avg-piece-length . 19.236922413793103) (avg-looseness . 0.0294) (looseness-sd . 0.0271592065421654) (looseness-variance . 0.0007376225) (looses q 0.0162 0.0043 0.0751 0.0218 0.3948)) (fu h - (equal) (time . 6) (line-count . 5) (looseness-spread . 0.0708) (bps q 10 20 30 43) (piece-count . 46) (avg-piece-length . 24.25525) (avg-looseness . 0.0294) (looseness-sd . 0.0271592065421654) (looseness-variance . 0.0007376225) (looses q 0.0162 0.0043 0.0751 0.0218 0.3948)) (bu h - (equal) (time . 9) (line-count . 5) (looseness-spread . 0.0708) (bps q 10 20 30 43) (piece-count . 46) (avg-piece-length . 24.25525) (avg-looseness . 0.0294) (looseness-sd . 0.0271592065421654) (looseness-variance . 0.0007376225) (looses q 0.0162 0.0043 0.0751 0.0218 0.3948)) (fh h - (equal) (time . 7) (line-count . 5) (looseness-spread . 0.0708) (bps q 13 26 38 52) (piece-count . 58) (avg-piece-length . 19.236922413793103) (avg-looseness . 0.0294) (looseness-sd . 0.0271592065421654) (looseness-variance . 0.0007376225) (looses q 0.0162 0.0043 0.0751 0.0218 0.3948)) (fh-improved . 26) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Christminster? Oh, well, out by there yonder; though I’ve never bin there—not I. I’ve never had any business at such a place.”") (measure . 270) (bh h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0082) (bps q 12 25) (piece-count . 27) (avg-piece-length . 19.480574074074074) (avg-looseness . 0.0079) (looseness-sd . 0.0041) (looseness-variance . 1.6810000000000003e-05) (looses q 0.012 0.0038 0.8717)) (fu h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.0082) (bps q 9 21) (piece-count . 23) (avg-piece-length . 22.8685) (avg-looseness . 0.0079) (looseness-sd . 0.0041) (looseness-variance . 1.6810000000000003e-05) (looses q 0.012 0.0038 0.8717)) (bu h - (equal) (time . 20) (line-count . 3) (looseness-spread . 0.0082) (bps q 9 21) (piece-count . 23) (avg-piece-length . 22.8685) (avg-looseness . 0.0079) (looseness-sd . 0.0041) (looseness-variance . 1.6810000000000003e-05) (looses q 0.012 0.0038 0.8717)) (fh h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.0082) (bps q 12 25) (piece-count . 27) (avg-piece-length . 19.480574074074074) (avg-looseness . 0.0079) (looseness-sd . 0.0041) (looseness-variance . 1.6810000000000003e-05) (looses q 0.012 0.0038 0.8717)) (fh-improved . 7) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "The man pointed north-eastward, in the very direction where lay that field in which Jude had so disgraced himself. There was something unpleasant about the coincidence for the moment, but the fearsomeness of this fact rather increased his curiosity about the city. The farmer had said he was never to be seen in that field again; yet Christminster lay across it, and the path was a public one. So, stealing out of the hamlet, he descended into the same hollow which had witnessed his punishment in the morning, never swerving an inch from the path, and climbing up the long and tedious ascent on the other side till the track joined the highway by a little clump of trees. Here the ploughed land ended, and all before him was bleak open down.") (measure . 270) (bh h - (equal) (time . 30) (line-count . 13) (looseness-spread . 0.1005) (bps q 11 24 35 47 58 71 86 98 111 124 136 149) (piece-count . 158) (avg-piece-length . 19.360905063291128) (avg-looseness . 0.0318) (looseness-sd . 0.030794898341915154) (looseness-variance . 0.0009483257638888887) (looses q 0.0711 0.0082 0.0563 0.0544 0.0178 0.0395 -0.0057 0.0948 -0.002 0.0311 -0.0032 0.0188 0.1991)) (fu h - (equal) (time . 20) (line-count . 14) (looseness-spread . 0.2391) (bps q 9 20 28 37 47 58 69 80 88 97 108 120 131) (piece-count . 133) (avg-piece-length . 23.000172932330816) (avg-looseness . 0.0622) (looseness-sd . 0.06695331500779139) (looseness-variance . 0.004482746390532545) (looses q 0.0711 0.0082 -0.0019 0.1127 0.0178 0.2262 0.033 0.0142 0.1436 0.1187 0.0331 0.0451 -0.0129 0.8099)) (bu h - (equal) (time . 46) (line-count . 14) (looseness-spread . 0.1619) (bps q 9 20 27 37 46 58 68 78 87 97 108 120 131) (piece-count . 133) (avg-piece-length . 23.000172932330816) (avg-looseness . 0.0616) (looseness-sd . 0.04086905196213907) (looseness-variance . 0.0016702794082840236) (looses q 0.0711 0.0082 0.0563 0.0544 0.095 0.149 0.1068 0.093 0.0467 0.0544 0.0331 0.0451 -0.0129 0.8099)) (fh h - (equal) (time . 20) (line-count . 13) (looseness-spread . 0.1184) (bps q 11 24 36 47 58 71 86 98 111 124 136 149) (piece-count . 158) (avg-piece-length . 19.360905063291128) (avg-looseness . 0.0318) (looseness-sd . 0.03867536540084513) (looseness-variance . 0.0014957838888888886) (looses q 0.0711 0.0082 -0.0019 0.1127 0.0178 0.0395 -0.0057 0.0948 -0.002 0.0311 -0.0032 0.0188 0.1991)) (fh-improved . 190) (bu-improved . 6) (bh-improved . 1)) c (h - (equal) (text u . "The schoolmaster was leaving the village, and everybody seemed sorry. The miller at Cresscombe lent him the small white tilted cart and horse to carry his goods to the city of his destination, about twenty miles off, such a vehicle proving of quite sufficient size for the departing teacher’s effects. For the schoolhouse had been partly furnished by the managers, and the only cumbersome article possessed by the master, in addition to the packing-case of books, was a cottage piano that he had bought at an auction during the year in which he thought of learning instrumental music. But the enthusiasm having waned he had never acquired any skill in playing, and the purchased article had been a perpetual trouble to him ever since in moving house.") (measure . 300) (bh h - (equal) (time . 32) (line-count . 12) (looseness-spread . 0.0653) (bps q 14 26 42 57 69 83 100 115 129 143 160) (piece-count . 168) (avg-piece-length . 18.455788690476183) (avg-looseness . 0.0232) (looseness-sd . 0.01932442038304114) (looseness-variance . 0.0003734332231404959) (looses q 0.0079 0.042 0.0682 0.0286 0.0238 0.0029 0.0075 0.0341 0.0292 0.0077 0.0029 0.4778)) (fu h - (equal) (time . 18) (line-count . 12) (looseness-spread . 0.079) (bps q 9 20 33 44 54 64 76 89 100 111 122) (piece-count . 128) (avg-piece-length . 24.223222656249998) (avg-looseness . 0.0199) (looseness-sd . 0.021311092056206297) (looseness-variance . 0.00045416264462809914) (looses q 0.0079 0.042 0.0682 0.0286 0.0238 0.0029 0.0075 -0.0108 0.0131 0.0336 0.002 0.5168)) (bu h - (equal) (time . 27) (line-count . 12) (looseness-spread . 0.079) (bps q 9 20 33 44 54 64 76 89 100 111 122) (piece-count . 128) (avg-piece-length . 24.223222656249998) (avg-looseness . 0.0199) (looseness-sd . 0.021311092056206297) (looseness-variance . 0.00045416264462809914) (looses q 0.0079 0.042 0.0682 0.0286 0.0238 0.0029 0.0075 -0.0108 0.0131 0.0336 0.002 0.5168)) (fh h - (equal) (time . 37) (line-count . 12) (looseness-spread . 0.079) (bps q 14 26 42 57 69 83 100 116 130 144 161) (piece-count . 168) (avg-piece-length . 18.455788690476183) (avg-looseness . 0.0199) (looseness-sd . 0.021311092056206297) (looseness-variance . 0.00045416264462809914) (looses q 0.0079 0.042 0.0682 0.0286 0.0238 0.0029 0.0075 -0.0108 0.0131 0.0336 0.002 0.5168)) (fh-improved . 220) (bu-improved . 0) (bh-improved . 4)) c (h - (equal) (text u . "The rector had gone away for the day, being a man who disliked the sight of changes. He did not mean to return till the evening, when the new school-teacher would have arrived and settled in, and everything would be smooth again.") (measure . 300) (bh h - (equal) (time . 9) (line-count . 4) (looseness-spread . 0.0085) (bps q 15 28 40) (piece-count . 47) (avg-piece-length . 20.3178085106383) (avg-looseness . 0.0374) (looseness-sd . 0.003589800365851375) (looseness-variance . 1.2886666666666666e-05) (looses q 0.0325 0.041 0.0387 0.4104)) (fu h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.0085) (bps q 13 26 37) (piece-count . 43) (avg-piece-length . 22.20783720930233) (avg-looseness . 0.0374) (looseness-sd . 0.003589800365851375) (looseness-variance . 1.2886666666666666e-05) (looses q 0.0325 0.041 0.0387 0.4104)) (bu h - (equal) (time . 9) (line-count . 4) (looseness-spread . 0.0085) (bps q 13 26 37) (piece-count . 43) (avg-piece-length . 22.20783720930233) (avg-looseness . 0.0374) (looseness-sd . 0.003589800365851375) (looseness-variance . 1.2886666666666666e-05) (looses q 0.0325 0.041 0.0387 0.4104)) (fh h - (equal) (time . 6) (line-count . 4) (looseness-spread . 0.0085) (bps q 15 28 40) (piece-count . 47) (avg-piece-length . 20.3178085106383) (avg-looseness . 0.0374) (looseness-sd . 0.003589800365851375) (looseness-variance . 1.2886666666666666e-05) (looses q 0.0325 0.041 0.0387 0.4104)) (fh-improved . 7) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "The blacksmith, the farm bailiff, and the schoolmaster himself were standing in perplexed attitudes in the parlour before the instrument. The master had remarked that even if he got it into the cart he should not know what to do with it on his arrival at Christminster, the city he was bound for, since he was only going into temporary lodgings just at first.") (measure . 300) (bh h - (equal) (time . 15) (line-count . 6) (looseness-spread . 0.056) (bps q 13 27 41 56 70) (piece-count . 79) (avg-piece-length . 18.455898734177218) (avg-looseness . 0.0439) (looseness-sd . 0.019155093317444322) (looseness-variance . 0.0003669176000000001) (looses q 0.0519 0.067 0.036 0.0535 0.011 0.4613)) (fu h - (equal) (time . 9) (line-count . 6) (looseness-spread . 0.056) (bps q 9 19 31 46 58) (piece-count . 64) (avg-piece-length . 22.78150000000001) (avg-looseness . 0.0439) (looseness-sd . 0.019155093317444322) (looseness-variance . 0.0003669176000000001) (looses q 0.0519 0.067 0.036 0.0535 0.011 0.4613)) (bu h - (equal) (time . 12) (line-count . 6) (looseness-spread . 0.056) (bps q 9 19 31 46 58) (piece-count . 64) (avg-piece-length . 22.78150000000001) (avg-looseness . 0.0439) (looseness-sd . 0.019155093317444322) (looseness-variance . 0.0003669176000000001) (looses q 0.0519 0.067 0.036 0.0535 0.011 0.4613)) (fh h - (equal) (time . 25) (line-count . 6) (looseness-spread . 0.056) (bps q 13 27 41 56 70) (piece-count . 79) (avg-piece-length . 18.455898734177218) (avg-looseness . 0.0439) (looseness-sd . 0.019155093317444322) (looseness-variance . 0.0003669176000000001) (looses q 0.0519 0.067 0.036 0.0535 0.011 0.4613)) (fh-improved . 44) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "A little boy of eleven, who had been thoughtfully assisting in the packing, joined the group of men, and as they rubbed their chins he spoke up, blushing at the sound of his own voice: “Aunt have got a great fuel-house, and it could be put there, perhaps, till you’ve found a place to settle in, sir.”") (measure . 300) (bh h - (equal) (time . 28) (line-count . 5) (looseness-spread . 0.0588) (bps q 15 28 42 56) (piece-count . 65) (avg-piece-length . 18.452015384615382) (avg-looseness . 0.0361) (looseness-sd . 0.024519074207644955) (looseness-variance . 0.0006011850000000001) (looses q 0.023 0.0197 0.0232 0.0785 0.4494)) (fu h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.0588) (bps q 12 24 37 50) (piece-count . 58) (avg-piece-length . 20.678982758620695) (avg-looseness . 0.0361) (looseness-sd . 0.024519074207644955) (looseness-variance . 0.0006011850000000001) (looses q 0.023 0.0197 0.0232 0.0785 0.4494)) (bu h - (equal) (time . 11) (line-count . 5) (looseness-spread . 0.0588) (bps q 12 24 37 50) (piece-count . 58) (avg-piece-length . 20.678982758620695) (avg-looseness . 0.0361) (looseness-sd . 0.024519074207644955) (looseness-variance . 0.0006011850000000001) (looses q 0.023 0.0197 0.0232 0.0785 0.4494)) (fh h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.0588) (bps q 15 28 42 56) (piece-count . 65) (avg-piece-length . 18.452015384615382) (avg-looseness . 0.0361) (looseness-sd . 0.024519074207644955) (looseness-variance . 0.0006011850000000001) (looses q 0.023 0.0197 0.0232 0.0785 0.4494)) (fh-improved . 18) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "It was decided that a deputation should wait on the boy’s aunt—an old maiden resident—and ask her if she would house the piano till Mr. Phillotson should send for it. The smith and the bailiff started to see about the practicability of the suggested shelter, and the boy and the schoolmaster were left standing alone.") (measure . 300) (bh h - (equal) (time . 13) (line-count . 5) (looseness-spread . 0.0633) (bps q 15 30 43 60) (piece-count . 72) (avg-piece-length . 17.800402777777776) (avg-looseness . 0.0158) (looseness-sd . 0.025695962717905706) (looseness-variance . 0.0006602825) (looses q 0.0143 -0.0042 0.0583 -0.005 0.1794)) (fu h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.0633) (bps q 12 25 37 48) (piece-count . 57) (avg-piece-length . 22.484719298245615) (avg-looseness . 0.0158) (looseness-sd . 0.025695962717905706) (looseness-variance . 0.0006602825) (looses q 0.0143 -0.0042 0.0583 -0.005 0.1794)) (bu h - (equal) (time . 12) (line-count . 5) (looseness-spread . 0.0633) (bps q 12 25 37 48) (piece-count . 57) (avg-piece-length . 22.484719298245615) (avg-looseness . 0.0158) (looseness-sd . 0.025695962717905706) (looseness-variance . 0.0006602825) (looses q 0.0143 -0.0042 0.0583 -0.005 0.1794)) (fh h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.0633) (bps q 15 30 43 60) (piece-count . 72) (avg-piece-length . 17.800402777777776) (avg-looseness . 0.0158) (looseness-sd . 0.025695962717905706) (looseness-variance . 0.0006602825) (looses q 0.0143 -0.0042 0.0583 -0.005 0.1794)) (fh-improved . 26) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Tears rose into the boy’s eyes, for he was not among the regular day scholars, who came unromantically close to the schoolmaster’s life, but one who had attended the night school only during the present teacher’s term of office. The regular scholars, if the truth must be told, stood at the present moment afar off, like certain historic disciples, indisposed to any enthusiastic volunteering of aid.") (measure . 300) (bh h - (equal) (time . 33) (line-count . 7) (looseness-spread . 0.0476) (bps q 15 29 42 56 69 87) (piece-count . 88) (avg-piece-length . 18.639670454545453) (avg-looseness . 0.0245) (looseness-sd . 0.01471926175684999) (looseness-variance . 0.00021665666666666663) (looses q 0.0287 0.0453 0.021 0.0344 0.0199 -0.0023 0.9129)) (fu h - (equal) (time . 10) (line-count . 7) (looseness-spread . 0.1883) (bps q 13 21 31 41 53 62) (piece-count . 65) (avg-piece-length . 25.235246153846152) (avg-looseness . 0.0936) (looseness-sd . 0.06983830531226319) (looseness-variance . 0.004877388888888889) (looses q 0.0287 0.217 0.044 0.0824 0.0347 0.155 0.5195)) (bu h - (equal) (time . 13) (line-count . 7) (looseness-spread . 0.1534) (bps q 12 21 31 41 52 62) (piece-count . 65) (avg-piece-length . 25.235246153846152) (avg-looseness . 0.0936) (looseness-sd . 0.053359993336664586) (looseness-variance . 0.002847288888888889) (looses q 0.1454 0.1004 0.044 0.0824 0.1715 0.0181 0.5195)) (fh h - (equal) (time . 11) (line-count . 7) (looseness-spread . 0.0476) (bps q 15 29 42 56 69 87) (piece-count . 88) (avg-piece-length . 18.639670454545453) (avg-looseness . 0.0245) (looseness-sd . 0.01471926175684999) (looseness-variance . 0.00021665666666666663) (looses q 0.0287 0.0453 0.021 0.0344 0.0199 -0.0023 0.9129)) (fh-improved . 77) (bu-improved . 2) (bh-improved . 0)) c (h - (equal) (text u . "The boy awkwardly opened the book he held in his hand, which Mr. Phillotson had bestowed on him as a parting gift, and admitted that he was sorry.") (measure . 300) (bh h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.0003) (bps q 13 27) (piece-count . 32) (avg-piece-length . 19.244890625000004) (avg-looseness . 0.0298) (looseness-sd . 0.0001499999999999991) (looseness-variance . 2.2499999999999728e-08) (looses q 0.03 0.0297 0.6824)) (fu h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.0989) (bps q 12 23) (piece-count . 28) (avg-piece-length . 21.99416071428572) (avg-looseness . 0.0794) (looseness-sd . 0.049449999999999994) (looseness-variance . 0.002445302499999999) (looses q 0.03 0.1289 0.5941)) (bu h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.0989) (bps q 12 23) (piece-count . 28) (avg-piece-length . 21.99416071428572) (avg-looseness . 0.0794) (looseness-sd . 0.049449999999999994) (looseness-variance . 0.002445302499999999) (looses q 0.03 0.1289 0.5941)) (fh h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.0003) (bps q 13 27) (piece-count . 32) (avg-piece-length . 19.244890625000004) (avg-looseness . 0.0298) (looseness-sd . 0.0001499999999999991) (looseness-variance . 2.2499999999999728e-08) (looses q 0.03 0.0297 0.6824)) (fh-improved . 5) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Well—don’t speak of this everywhere. You know what a university is, and a university degree? It is the necessary hallmark of a man who wants to do anything in teaching. My scheme, or dream, is to be a university graduate, and then to be ordained. By going to live at Christminster, or near it, I shall be at headquarters, so to speak, and if my scheme is practicable at all, I consider that being on the spot will afford me a better chance of carrying it out than I should have elsewhere.”") (measure . 300) (bh h - (equal) (time . 41) (line-count . 8) (looseness-spread . 0.0356) (bps q 13 31 45 62 80 97 115) (piece-count . 119) (avg-piece-length . 16.541445378151263) (avg-looseness . 0.0165) (looseness-sd . 0.0144721407242625) (looseness-variance . 0.0002094428571428571) (looses q 0.0295 0.0354 0.0032 0.0338 -0.0002 0.0064 0.0074 0.6459)) (fu h - (equal) (time . 31) (line-count . 8) (looseness-spread . 0.2063) (bps q 10 21 34 47 59 72 85) (piece-count . 93) (avg-piece-length . 21.165935483870978) (avg-looseness . 0.0631) (looseness-sd . 0.07331579443943655) (looseness-variance . 0.005375205714285714) (looses q 0.1386 0.001 0.047 0.0103 0.2073 0.0066 0.0309 0.3223)) (bu h - (equal) (time . 18) (line-count . 8) (looseness-spread . 0.1566) (bps q 10 21 34 46 59 71 85) (piece-count . 93) (avg-piece-length . 21.165935483870978) (avg-looseness . 0.0654) (looseness-sd . 0.05645778267422301) (looseness-variance . 0.003187481224489796) (looses q 0.1386 0.001 0.047 0.0678 0.1576 0.0359 0.0098 0.3223)) (fh h - (equal) (time . 16) (line-count . 8) (looseness-spread . 0.044) (bps q 13 31 45 63 80 97 115) (piece-count . 119) (avg-piece-length . 16.541445378151263) (avg-looseness . 0.0165) (looseness-sd . 0.016283646485266833) (looseness-variance . 0.00026515714285714286) (looses q 0.0295 0.0354 0.0032 -0.0052 0.0388 0.0064 0.0074 0.6459)) (fh-improved . 116) (bu-improved . 2) (bh-improved . 1)) c (h - (equal) (text u . "The smith and his companion returned. Old Miss Fawley’s fuel-house was dry, and eminently practicable; and she seemed willing to give the instrument standing-room there. It was accordingly left in the school till the evening, when more hands would be available for removing it; and the schoolmaster gave a final glance round.") (measure . 300) (bh h - (equal) (time . 13) (line-count . 6) (looseness-spread . 0.0747) (bps q 13 28 41 53 68) (piece-count . 69) (avg-piece-length . 19.830333333333336) (avg-looseness . 0.0297) (looseness-sd . 0.02802146320233831) (looseness-variance . 0.0007852024) (looses q 0.0273 -0.0014 0.0469 0.0733 0.0022 0.906)) (fu h - (equal) (time . 8) (line-count . 6) (looseness-spread . 0.0747) (bps q 10 20 30 42 53) (piece-count . 54) (avg-piece-length . 25.338759259259252) (avg-looseness . 0.0297) (looseness-sd . 0.02802146320233831) (looseness-variance . 0.0007852024) (looses q 0.0273 -0.0014 0.0469 0.0733 0.0022 0.906)) (bu h - (equal) (time . 11) (line-count . 6) (looseness-spread . 0.0747) (bps q 10 20 30 42 53) (piece-count . 54) (avg-piece-length . 25.338759259259252) (avg-looseness . 0.0297) (looseness-sd . 0.02802146320233831) (looseness-variance . 0.0007852024) (looses q 0.0273 -0.0014 0.0469 0.0733 0.0022 0.906)) (fh h - (equal) (time . 9) (line-count . 6) (looseness-spread . 0.0747) (bps q 13 28 41 53 68) (piece-count . 69) (avg-piece-length . 19.830333333333336) (avg-looseness . 0.0297) (looseness-sd . 0.02802146320233831) (looseness-variance . 0.0007852024) (looses q 0.0273 -0.0014 0.0469 0.0733 0.0022 0.906)) (fh-improved . 48) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "The boy Jude assisted in loading some small articles, and at nine o’clock Mr. Phillotson mounted beside his box of books and other impedimenta, and bade his friends good-bye.") (measure . 300) (bh h - (equal) (time . 7) (line-count . 3) (looseness-spread . 0.0209) (bps q 14 26) (piece-count . 34) (avg-piece-length . 21.65077941176471) (avg-looseness . 0.011) (looseness-sd . 0.01045) (looseness-variance . 0.00010920249999999998) (looses q 0.0214 0.0005 0.3236)) (fu h - (equal) (time . 20) (line-count . 3) (looseness-spread . 0.0209) (bps q 12 23) (piece-count . 29) (avg-piece-length . 25.383672413793107) (avg-looseness . 0.011) (looseness-sd . 0.01045) (looseness-variance . 0.00010920249999999998) (looses q 0.0214 0.0005 0.3236)) (bu h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0209) (bps q 12 23) (piece-count . 29) (avg-piece-length . 25.383672413793107) (avg-looseness . 0.011) (looseness-sd . 0.01045) (looseness-variance . 0.00010920249999999998) (looses q 0.0214 0.0005 0.3236)) (fh h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0209) (bps q 14 26) (piece-count . 34) (avg-piece-length . 21.65077941176471) (avg-looseness . 0.011) (looseness-sd . 0.01045) (looseness-variance . 0.00010920249999999998) (looses q 0.0214 0.0005 0.3236)) (fh-improved . 5) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. “Be a good boy, remember; and be kind to animals and birds, and read all you can. And if ever you come to Christminster remember you hunt me out for old acquaintance’ sake.”") (measure . 300) (bh h - (equal) (time . 10) (line-count . 4) (looseness-spread . 0.0733) (bps q 14 29 43) (piece-count . 54) (avg-piece-length . 18.791) (avg-looseness . 0.0573) (looseness-sd . 0.03020754136892898) (looseness-variance . 0.0009124955555555556) (looses q 0.0631 0.0177 0.091 0.1661)) (fu h - (equal) (time . 6) (line-count . 4) (looseness-spread . 0.0733) (bps q 12 25 37) (piece-count . 46) (avg-piece-length . 22.059) (avg-looseness . 0.0573) (looseness-sd . 0.03020754136892898) (looseness-variance . 0.0009124955555555556) (looses q 0.0631 0.0177 0.091 0.1661)) (bu h - (equal) (time . 9) (line-count . 4) (looseness-spread . 0.0733) (bps q 12 25 37) (piece-count . 46) (avg-piece-length . 22.059) (avg-looseness . 0.0573) (looseness-sd . 0.03020754136892898) (looseness-variance . 0.0009124955555555556) (looses q 0.0631 0.0177 0.091 0.1661)) (fh h - (equal) (time . 7) (line-count . 4) (looseness-spread . 0.0733) (bps q 14 29 43) (piece-count . 54) (avg-piece-length . 18.791) (avg-looseness . 0.0573) (looseness-sd . 0.03020754136892898) (looseness-variance . 0.0009124955555555556) (looses q 0.0631 0.0177 0.091 0.1661)) (fh-improved . 12) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "The cart creaked across the green, and disappeared round the corner by the rectory-house. The boy returned to the draw-well at the edge of the greensward, where he had left his buckets when he went to help his patron and teacher in the loading. There was a quiver in his lip now and after opening the well-cover to begin lowering the bucket he paused and leant with his forehead and arms against the framework, his face wearing the fixity of a thoughtful child’s who has felt the pricks of life somewhat before his time. The well into which he was looking was as ancient as the village itself, and from his present position appeared as a long circular perspective ending in a shining disk of quivering water at a distance of a hundred feet down. There was a lining of green moss near the top, and nearer still the hart’s-tongue fern.") (measure . 300) (bh h - (equal) (time . 52) (line-count . 13) (looseness-spread . 0.0958) (bps q 13 27 40 53 68 82 97 110 125 139 158 174) (piece-count . 184) (avg-piece-length . 18.36781249999998) (avg-looseness . 0.0277) (looseness-sd . 0.02718614332502661) (looseness-variance . 0.0007390863888888889) (looses q -0.0009 0.0475 0.0364 0.0874 0.0593 0.0258 0.0421 0.0107 -0.0033 0.0123 0.0233 -0.0084 0.2229)) (fu h - (equal) (time . 37) (line-count . 13) (looseness-spread . 0.1161) (bps q 10 23 36 49 62 73 84 95 109 120 131 144) (piece-count . 155) (avg-piece-length . 21.804370967741917) (avg-looseness . 0.0368) (looseness-sd . 0.034080235189264105) (looseness-variance . 0.0011614624305555554) (looses q 0.0596 -0.0021 -0.0092 0.0419 0.059 0.0523 0.1069 0.0107 -0.0033 0.0637 0.0081 0.0535 0.1361)) (bu h - (equal) (time . 32) (line-count . 13) (looseness-spread . 0.0879) (bps q 10 22 35 47 61 72 84 95 108 120 130 144) (piece-count . 155) (avg-piece-length . 21.804370967741917) (avg-looseness . 0.0368) (looseness-sd . 0.025101664121461482) (looseness-variance . 0.0006300935416666667) (looses q 0.0596 0.0348 -0.0005 0.0874 0.0593 0.0258 0.0421 0.0107 0.0546 0.0058 0.045 0.0167 0.1361)) (fh h - (equal) (time . 41) (line-count . 13) (looseness-spread . 0.1161) (bps q 13 27 41 55 69 83 97 110 125 139 158 174) (piece-count . 184) (avg-piece-length . 18.36781249999998) (avg-looseness . 0.0277) (looseness-sd . 0.03346697688269239) (looseness-variance . 0.0011200385416666664) (looses q -0.0009 0.0475 -0.0092 0.0419 0.059 0.0523 0.1069 0.0107 -0.0033 0.0123 0.0233 -0.0084 0.2229)) (fh-improved . 155) (bu-improved . 8) (bh-improved . 5)) c (h - (equal) (text u . "He said to himself, in the melodramatic tones of a whimsical boy, that the schoolmaster had drawn at that well scores of times on a morning like this, and would never draw there any more. “I’ve seen him look down into it, when he was tired with his drawing, just as I do now, and when he rested a bit before carrying the buckets home! But he was too clever to bide here any longer—a small sleepy place like this!”") (measure . 300) (bh h - (equal) (time . 33) (line-count . 7) (looseness-spread . 0.0607) (bps q 17 31 44 58 74 88) (piece-count . 93) (avg-piece-length . 18.083564516129027) (avg-looseness . 0.037) (looseness-sd . 0.020061322654966362) (looseness-variance . 0.0004024566666666666) (looses q 0.0167 0.0408 0.02 0.0382 0.0774 0.0289 0.583)) (fu h - (equal) (time . 11) (line-count . 7) (looseness-spread . 0.0616) (bps q 12 25 36 49 63 76) (piece-count . 81) (avg-piece-length . 20.762611111111113) (avg-looseness . 0.037) (looseness-sd . 0.020915464772905876) (looseness-variance . 0.0004374566666666666) (looses q 0.0167 0.0158 0.045 0.0382 0.0774 0.0289 0.583)) (bu h - (equal) (time . 17) (line-count . 7) (looseness-spread . 0.0607) (bps q 12 24 36 49 63 76) (piece-count . 81) (avg-piece-length . 20.762611111111113) (avg-looseness . 0.037) (looseness-sd . 0.020061322654966362) (looseness-variance . 0.0004024566666666666) (looses q 0.0167 0.0408 0.02 0.0382 0.0774 0.0289 0.583)) (fh h - (equal) (time . 11) (line-count . 7) (looseness-spread . 0.0616) (bps q 17 32 44 58 74 88) (piece-count . 93) (avg-piece-length . 18.083564516129027) (avg-looseness . 0.037) (looseness-sd . 0.020915464772905876) (looseness-variance . 0.0004374566666666666) (looses q 0.0167 0.0158 0.045 0.0382 0.0774 0.0289 0.583)) (fh-improved . 52) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "A tear rolled from his eye into the depths of the well. The morning was a little foggy, and the boy’s breathing unfurled itself as a thicker fog upon the still and heavy air. His thoughts were interrupted by a sudden outcry:") (measure . 300) (bh h - (equal) (time . 9) (line-count . 4) (looseness-spread . 0.0114) (bps q 14 29 41) (piece-count . 47) (avg-piece-length . 19.089265957446806) (avg-looseness . 0.0308) (looseness-sd . 0.004682829154356253) (looseness-variance . 2.19288888888889e-05) (looses q 0.0301 0.0255 0.0369 0.5982)) (fu h - (equal) (time . 6) (line-count . 4) (looseness-spread . 0.1165) (bps q 13 24 37) (piece-count . 42) (avg-piece-length . 21.361797619047618) (avg-looseness . 0.0621) (looseness-sd . 0.047825167711850906) (looseness-variance . 0.0022872466666666665) (looses q 0.1239 0.0074 0.055 0.5261)) (bu h - (equal) (time . 8) (line-count . 4) (looseness-spread . 0.1165) (bps q 13 24 37) (piece-count . 42) (avg-piece-length . 21.361797619047618) (avg-looseness . 0.0621) (looseness-sd . 0.047825167711850906) (looseness-variance . 0.0022872466666666665) (looses q 0.1239 0.0074 0.055 0.5261)) (fh h - (equal) (time . 7) (line-count . 4) (looseness-spread . 0.0114) (bps q 14 29 41) (piece-count . 47) (avg-piece-length . 19.089265957446806) (avg-looseness . 0.0308) (looseness-sd . 0.004682829154356253) (looseness-variance . 2.19288888888889e-05) (looses q 0.0301 0.0255 0.0369 0.5982)) (fh-improved . 10) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "It came from an old woman who had emerged from her door towards the garden gate of a green-thatched cottage not far off. The boy quickly waved a signal of assent, drew the water with what was a great effort for one of his stature, landed and emptied the big bucket into his own pair of smaller ones, and pausing a moment for breath, started with them across the patch of clammy greensward whereon the well stood—nearly in the centre of the little village, or rather hamlet of Marygreen.") (measure . 300) (bh h - (equal) (time . 35) (line-count . 8) (looseness-spread . 0.0788) (bps q 12 26 39 53 67 78 90) (piece-count . 101) (avg-piece-length . 19.84581188118812) (avg-looseness . 0.0416) (looseness-sd . 0.02647688248496127) (looseness-variance . 0.0007010253061224489) (looses q 0.0797 0.0524 0.0602 0.0114 0.0579 0.0009 0.029 0.3354)) (fu h - (equal) (time . 34) (line-count . 8) (looseness-spread . 0.0788) (bps q 12 24 36 49 62 73 84) (piece-count . 91) (avg-piece-length . 22.026670329670328) (avg-looseness . 0.0416) (looseness-sd . 0.02647688248496127) (looseness-variance . 0.0007010253061224489) (looses q 0.0797 0.0524 0.0602 0.0114 0.0579 0.0009 0.029 0.3354)) (bu h - (equal) (time . 18) (line-count . 8) (looseness-spread . 0.0788) (bps q 12 24 36 49 62 73 84) (piece-count . 91) (avg-piece-length . 22.026670329670328) (avg-looseness . 0.0416) (looseness-sd . 0.02647688248496127) (looseness-variance . 0.0007010253061224489) (looses q 0.0797 0.0524 0.0602 0.0114 0.0579 0.0009 0.029 0.3354)) (fh h - (equal) (time . 13) (line-count . 8) (looseness-spread . 0.0788) (bps q 12 26 39 53 67 78 90) (piece-count . 101) (avg-piece-length . 19.84581188118812) (avg-looseness . 0.0416) (looseness-sd . 0.02647688248496127) (looseness-variance . 0.0007010253061224489) (looses q 0.0797 0.0524 0.0602 0.0114 0.0579 0.0009 0.029 0.3354)) (fh-improved . 25) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "It was as old-fashioned as it was small, and it rested in the lap of an undulating upland adjoining the North Wessex downs. Old as it was, however, the well-shaft was probably the only relic of the local history that remained absolutely unchanged. Many of the thatched and dormered dwelling-houses had been pulled down of late years, and many trees felled on the green. Above all, the original church, hump-backed, wood-turreted, and quaintly hipped, had been taken down, and either cracked up into heaps of road-metal in the lane, or utilized as pig-sty walls, garden seats, guard-stones to fences, and rockeries in the flower-beds of the neighbourhood. In place of it a tall new building of modern Gothic design, unfamiliar to English eyes, had been erected on a new piece of ground by a certain obliterator of historic records who had run down from London and back in a day. The site whereon so long had stood the ancient temple to the Christian divinities was not even recorded on the green and level grass-plot that had immemorially been the churchyard, the obliterated graves being commemorated by eighteen-penny cast-iron crosses warranted to last five years.") (measure . 300) (bh h - (equal) (time . 52) (line-count . 19) (looseness-spread . 0.0948) (bps q 16 30 45 55 65 78 90 102 117 130 146 160 176 190 205 218 231 245) (piece-count . 248) (avg-piece-length . 19.40513709677419) (avg-looseness . 0.0356) (looseness-sd . 0.023931081602524083) (looseness-variance . 0.0005726966666666667) (looses q 0.0673 0.0186 0.0842 0.0468 0.0391 0.0183 0.0376 0.0011 0.0435 0.0562 -0.0106 0.0654 0.0498 0.0256 0.0429 0.0223 0.0281 0.0052 0.7931)) (fu h - (equal) (time . 30) (line-count . 19) (looseness-spread . 0.106) (bps q 16 26 39 48 58 70 78 90 103 115 127 138 149 162 173 186 194 203) (piece-count . 206) (avg-piece-length . 23.361524271844665) (avg-looseness . 0.0352) (looseness-sd . 0.027648097293495936) (looseness-variance . 0.0007644172839506173) (looses q 0.0283 0.0178 0.0272 0.0468 0.0037 0.0845 0.0954 0.0011 0.0435 0.0562 -0.0106 0.0654 0.0498 0.0256 0.0429 0.0223 0.0281 0.0052 0.7931)) (bu h - (equal) (time . 61) (line-count . 19) (looseness-spread . 0.0948) (bps q 15 25 37 46 56 69 78 90 103 115 127 138 149 162 173 186 194 203) (piece-count . 206) (avg-piece-length . 23.361524271844665) (avg-looseness . 0.0356) (looseness-sd . 0.023931081602524083) (looseness-variance . 0.0005726966666666667) (looses q 0.0673 0.0186 0.0842 0.0468 0.0391 0.0183 0.0376 0.0011 0.0435 0.0562 -0.0106 0.0654 0.0498 0.0256 0.0429 0.0223 0.0281 0.0052 0.7931)) (fh h - (equal) (time . 54) (line-count . 19) (looseness-spread . 0.0702) (bps q 17 31 47 57 67 81 91 103 118 131 146 160 176 190 205 218 231 245) (piece-count . 248) (avg-piece-length . 19.40513709677419) (avg-looseness . 0.0341) (looseness-sd . 0.020612872790840144) (looseness-variance . 0.000424890524691358) (looses q 0.0283 0.0178 0.0272 0.0468 0.0037 0.0038 0.0482 0.0472 0.0175 0.0602 0.0739 0.0654 0.0498 0.0256 0.0429 0.0223 0.0281 0.0052 0.7931)) (fh-improved . 339) (bu-improved . 9) (bh-improved . 15)) c (h - (equal) (text u . "Slender as was Jude Fawley’s frame he bore the two brimming house-buckets of water to the cottage without resting. Over the door was a little rectangular piece of blue board, on which was painted in yellow letters, “Drusilla Fawley, Baker.” Within the little lead panes of the window—this being one of the few old houses left—were five bottles of sweets, and three buns on a plate of the willow pattern.") (measure . 300) (bh h - (equal) (time . 17) (line-count . 7) (looseness-spread . 0.0691) (bps q 14 29 45 57 72 86) (piece-count . 92) (avg-piece-length . 17.89400000000001) (avg-looseness . 0.0419) (looseness-sd . 0.021701107242616802) (looseness-variance . 0.0004709380555555555) (looses q 0.0508 0.0367 0.0528 0.0467 0.0667 -0.0024 0.6812)) (fu h - (equal) (time . 25) (line-count . 7) (looseness-spread . 0.0691) (bps q 11 22 34 43 56 69) (piece-count . 73) (avg-piece-length . 22.551342465753432) (avg-looseness . 0.0419) (looseness-sd . 0.021701107242616802) (looseness-variance . 0.0004709380555555555) (looses q 0.0508 0.0367 0.0528 0.0467 0.0667 -0.0024 0.6812)) (bu h - (equal) (time . 15) (line-count . 7) (looseness-spread . 0.0691) (bps q 11 22 34 43 56 69) (piece-count . 73) (avg-piece-length . 22.551342465753432) (avg-looseness . 0.0419) (looseness-sd . 0.021701107242616802) (looseness-variance . 0.0004709380555555555) (looses q 0.0508 0.0367 0.0528 0.0467 0.0667 -0.0024 0.6812)) (fh h - (equal) (time . 10) (line-count . 7) (looseness-spread . 0.0691) (bps q 14 29 45 57 72 86) (piece-count . 92) (avg-piece-length . 17.89400000000001) (avg-looseness . 0.0419) (looseness-sd . 0.021701107242616802) (looseness-variance . 0.0004709380555555555) (looses q 0.0508 0.0367 0.0528 0.0467 0.0667 -0.0024 0.6812)) (fh-improved . 68) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "While emptying the buckets at the back of the house he could hear an animated conversation in progress within-doors between his great-aunt, the Drusilla of the sign-board, and some other villagers. Having seen the school-master depart, they were summing up particulars of the event, and indulging in predictions of his future.") (measure . 300) (bh h - (equal) (time . 13) (line-count . 6) (looseness-spread . 0.0682) (bps q 15 28 41 54 70) (piece-count . 71) (avg-piece-length . 19.119154929577466) (avg-looseness . 0.0306) (looseness-sd . 0.02645164645159163) (looseness-variance . 0.0006996896000000001) (looses q 0.0626 0.0156 0.0207 -0.0056 0.0596 0.9038)) (fu h - (equal) (time . 25) (line-count . 6) (looseness-spread . 0.1357) (bps q 13 22 33 42 52) (piece-count . 55) (avg-piece-length . 24.681090909090905) (avg-looseness . 0.0511) (looseness-sd . 0.055031649075781834) (looseness-variance . 0.0030284823999999996) (looses q -0.0133 0.0385 0.1224 0.1076 0.0005 0.8118)) (bu h - (equal) (time . 12) (line-count . 6) (looseness-spread . 0.1071) (bps q 12 21 33 42 52) (piece-count . 55) (avg-piece-length . 24.681090909090905) (avg-looseness . 0.0511) (looseness-sd . 0.0386781385281143) (looseness-variance . 0.0014959984) (looses q 0.0626 0.0156 0.0694 0.1076 0.0005 0.8118)) (fh h - (equal) (time . 8) (line-count . 6) (looseness-spread . 0.087) (bps q 16 29 41 54 70) (piece-count . 71) (avg-piece-length . 19.119154929577466) (avg-looseness . 0.0306) (looseness-sd . 0.034637170785155075) (looseness-variance . 0.0011997336000000001) (looses q -0.0133 0.0385 0.0737 -0.0056 0.0596 0.9038)) (fh-improved . 48) (bu-improved . 2) (bh-improved . 2)) c (h - (equal) (text u . "“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since you was last this way.” The old inhabitant who answered was a tall, gaunt woman, who spoke tragically on the most trivial subject, and gave a phrase of her conversation to each auditor in turn. “He come from Mellstock, down in South Wessex, about a year ago—worse luck for ‘n, Belinda” (turning to the right) “where his father was living, and was took wi’ the shakings for death, and died in two days, as you know, Caroline” (turning to the left). “It would ha’ been a blessing if Goddy-mighty had took thee too, wi’ thy mother and father, poor useless boy! But I’ve got him here to stay with me till I can see what’s to be done with un, though I am obliged to let him earn any penny he can. Just now he’s a-scaring of birds for Farmer Troutham. It keeps him out of mischty. Why do ye turn away, Jude?” she continued, as the boy, feeling the impact of their glances like slaps upon his face, moved aside.") (measure . 300) (bh h - (equal) (time . 60) (line-count . 16) (looseness-spread . 0.1085) (bps q 11 24 37 54 67 81 95 110 124 137 153 167 180 195 209) (piece-count . 212) (avg-piece-length . 18.828971698113204) (avg-looseness . 0.0379) (looseness-sd . 0.028191067143098124) (looseness-variance . 0.0007947362666666667) (looses q 0.0766 0.109 0.0496 0.0005 0.0344 0.0011 0.0022 0.021 0.0504 0.0429 0.0273 0.0541 0.0467 0.024 0.029 0.7277)) (fu h - (equal) (time . 45) (line-count . 16) (looseness-spread . 0.1217) (bps q 11 22 33 45 55 66 79 91 103 115 131 146 158 170 182) (piece-count . 187) (avg-piece-length . 21.34621390374331) (avg-looseness . 0.049) (looseness-sd . 0.042137360567025973) (looseness-variance . 0.0017755571555555555) (looses q 0.0766 0.109 0.0496 0.0005 0.1112 0.0324 0.0452 0.0342 0.1085 0.0028 0.0156 -0.0105 0.0699 0.0938 -0.0036 0.5876)) (bu h - (equal) (time . 55) (line-count . 16) (looseness-spread . 0.1126) (bps q 11 22 33 44 55 66 79 91 103 115 131 145 157 170 182) (piece-count . 187) (avg-piece-length . 21.34621390374331) (avg-looseness . 0.0495) (looseness-sd . 0.032854334400332766) (looseness-variance . 0.001079407288888889) (looses q 0.0766 0.109 0.0496 0.0791 0.0326 0.0324 0.0452 0.0342 0.1085 0.0028 0.0156 0.0351 0.0654 0.0604 -0.0036 0.5876)) (fh h - (equal) (time . 27) (line-count . 16) (looseness-spread . 0.1085) (bps q 11 24 37 54 67 81 95 110 124 137 153 167 180 195 209) (piece-count . 212) (avg-piece-length . 18.828971698113204) (avg-looseness . 0.0379) (looseness-sd . 0.028191067143098124) (looseness-variance . 0.0007947362666666667) (looses q 0.0766 0.109 0.0496 0.0005 0.0344 0.0011 0.0022 0.021 0.0504 0.0429 0.0273 0.0541 0.0467 0.024 0.029 0.7277)) (fh-improved . 237) (bu-improved . 3) (bh-improved . 0)) c (h - (equal) (text u . "The local washerwoman replied that it was perhaps a very good plan of Miss or Mrs. Fawley’s (as they called her indifferently) to have him with her—”to kip ‘ee company in your loneliness, fetch water, shet the winder-shetters o’ nights, and help in the bit o’ baking.”") (measure . 300) (bh h - (equal) (time . 30) (line-count . 5) (looseness-spread . 0.0559) (bps q 14 29 44 58) (piece-count . 60) (avg-piece-length . 18.324483333333337) (avg-looseness . 0.0262) (looseness-sd . 0.021489808631069748) (looseness-variance . 0.0004618118749999999) (looses q 0.03 0.0116 0.0036 0.0595 0.8891)) (fu h - (equal) (time . 7) (line-count . 5) (looseness-spread . 0.0559) (bps q 11 23 35 48) (piece-count . 49) (avg-piece-length . 22.438142857142854) (avg-looseness . 0.0262) (looseness-sd . 0.021489808631069748) (looseness-variance . 0.0004618118749999999) (looses q 0.03 0.0116 0.0036 0.0595 0.8891)) (bu h - (equal) (time . 10) (line-count . 5) (looseness-spread . 0.0559) (bps q 11 23 35 48) (piece-count . 49) (avg-piece-length . 22.438142857142854) (avg-looseness . 0.0262) (looseness-sd . 0.021489808631069748) (looseness-variance . 0.0004618118749999999) (looses q 0.03 0.0116 0.0036 0.0595 0.8891)) (fh h - (equal) (time . 7) (line-count . 5) (looseness-spread . 0.0559) (bps q 14 29 44 58) (piece-count . 60) (avg-piece-length . 18.324483333333337) (avg-looseness . 0.0262) (looseness-sd . 0.021489808631069748) (looseness-variance . 0.0004618118749999999) (looses q 0.03 0.0116 0.0036 0.0595 0.8891)) (fh-improved . 28) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a better one. The boy is crazy for books, that he is. It runs in our family rather. His cousin Sue is just the same—so I’ve heard; but I have not seen the child for years, though she was born in this place, within these four walls, as it happened. My niece and her husband, after they were married, didn’ get a house of their own for some year or more; and then they only had one till—Well, I won’t go into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the Fawleys to take that step any more. She, their only one, was like a child o’ my own, Belinda, till the split come! Ah, that a little maid should know such changes!”") (measure . 300) (bh h - (equal) (time . 53) (line-count . 13) (looseness-spread . 0.0646) (bps q 13 28 42 59 73 88 101 115 129 141 155 170) (piece-count . 177) (avg-piece-length . 18.84115819209039) (avg-looseness . 0.0257) (looseness-sd . 0.01845532142469724) (looseness-variance . 0.0003405988888888889) (looses q 0.0296 0.0569 0.0252 0.0102 0.0137 -0.0077 0.0323 0.0205 0.0424 0.0221 0.0559 0.0077 0.4144)) (fu h - (equal) (time . 21) (line-count . 13) (looseness-spread . 0.0646) (bps q 10 23 33 49 62 77 89 101 115 127 140 155) (piece-count . 161) (avg-piece-length . 20.713571428571417) (avg-looseness . 0.0257) (looseness-sd . 0.01845532142469724) (looseness-variance . 0.0003405988888888889) (looses q 0.0296 0.0569 0.0252 0.0102 0.0137 -0.0077 0.0323 0.0205 0.0424 0.0221 0.0559 0.0077 0.4144)) (bu h - (equal) (time . 50) (line-count . 13) (looseness-spread . 0.0646) (bps q 10 23 33 49 62 77 89 101 115 127 140 155) (piece-count . 161) (avg-piece-length . 20.713571428571417) (avg-looseness . 0.0257) (looseness-sd . 0.01845532142469724) (looseness-variance . 0.0003405988888888889) (looses q 0.0296 0.0569 0.0252 0.0102 0.0137 -0.0077 0.0323 0.0205 0.0424 0.0221 0.0559 0.0077 0.4144)) (fh h - (equal) (time . 22) (line-count . 13) (looseness-spread . 0.0646) (bps q 13 28 42 59 73 88 101 115 129 141 155 170) (piece-count . 177) (avg-piece-length . 18.84115819209039) (avg-looseness . 0.0257) (looseness-sd . 0.01845532142469724) (looseness-variance . 0.0003405988888888889) (looses q 0.0296 0.0569 0.0252 0.0102 0.0137 -0.0077 0.0323 0.0205 0.0424 0.0221 0.0559 0.0077 0.4144)) (fh-improved . 133) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Jude, finding the general attention again centering on himself, went out to the bakehouse, where he ate the cake provided for his breakfast. The end of his spare time had now arrived, and emerging from the garden by getting over the hedge at the back he pursued a path northward, till he came to a wide and lonely depression in the general level of the upland, which was sown as a corn-field. This vast concave was the scene of his labours for Mr Troutham the farmer, and he descended into the midst of it.") (measure . 300) (bh h - (equal) (time . 21) (line-count . 8) (looseness-spread . 0.0738) (bps q 15 29 42 57 72 87 101) (piece-count . 111) (avg-piece-length . 18.720445945945947) (avg-looseness . 0.0426) (looseness-sd . 0.02517143667909712) (looseness-variance . 0.0006336012244897959) (looses q 0.068 0.0567 0.0705 0.0374 0.0509 -0.0033 0.0179 0.0916)) (fu h - (equal) (time . 13) (line-count . 8) (looseness-spread . 0.1317) (bps q 9 22 33 46 58 71 84) (piece-count . 94) (avg-piece-length . 22.1060585106383) (avg-looseness . 0.0426) (looseness-sd . 0.049143999156165796) (looseness-variance . 0.0024151326530612244) (looses q 0.068 0.0037 0.1235 -0.0082 0.0965 -0.0033 0.0179 0.0916)) (bu h - (equal) (time . 19) (line-count . 8) (looseness-spread . 0.0738) (bps q 9 21 33 45 58 71 84) (piece-count . 94) (avg-piece-length . 22.1060585106383) (avg-looseness . 0.0426) (looseness-sd . 0.02517143667909712) (looseness-variance . 0.0006336012244897959) (looses q 0.068 0.0567 0.0705 0.0374 0.0509 -0.0033 0.0179 0.0916)) (fh h - (equal) (time . 35) (line-count . 8) (looseness-spread . 0.0958) (bps q 15 30 43 59 73 88 101) (piece-count . 111) (avg-piece-length . 18.720445945945947) (avg-looseness . 0.038) (looseness-sd . 0.03144014072773199) (looseness-variance . 0.000988482448979592) (looses q 0.068 0.0037 0.0166 0.0234 0.0368 0.0183 0.0995 0.0916)) (fh-improved . 86) (bu-improved . 2) (bh-improved . 6)) c (h - (equal) (text u . "The brown surface of the field went right up towards the sky all round, where it was lost by degrees in the mist that shut out the actual verge and accentuated the solitude. The only marks on the uniformity of the scene were a rick of last year’s produce standing in the midst of the arable, the rooks that rose at his approach, and the path athwart the fallow by which he had come, trodden now by he hardly knew whom, though once by many of his own dead family.") (measure . 300) (bh h - (equal) (time . 19) (line-count . 8) (looseness-spread . 0.0405) (bps q 14 28 42 58 72 86 99) (piece-count . 100) (avg-piece-length . 18.930609999999998) (avg-looseness . 0.0183) (looseness-sd . 0.01485664834341851) (looseness-variance . 0.00022072) (looses q 0.0355 0.0312 0.0071 -0.005 0.0033 0.0288 0.0272 0.9053)) (fu h - (equal) (time . 12) (line-count . 8) (looseness-spread . 0.0405) (bps q 13 27 38 50 64 76 89) (piece-count . 90) (avg-piece-length . 21.034011111111102) (avg-looseness . 0.0183) (looseness-sd . 0.01485664834341851) (looseness-variance . 0.00022072) (looses q 0.0355 0.0312 0.0071 -0.005 0.0033 0.0288 0.0272 0.9053)) (bu h - (equal) (time . 34) (line-count . 8) (looseness-spread . 0.0405) (bps q 13 27 38 50 64 76 89) (piece-count . 90) (avg-piece-length . 21.034011111111102) (avg-looseness . 0.0183) (looseness-sd . 0.01485664834341851) (looseness-variance . 0.00022072) (looses q 0.0355 0.0312 0.0071 -0.005 0.0033 0.0288 0.0272 0.9053)) (fh h - (equal) (time . 12) (line-count . 8) (looseness-spread . 0.0405) (bps q 14 28 42 58 72 86 99) (piece-count . 100) (avg-piece-length . 18.930609999999998) (avg-looseness . 0.0183) (looseness-sd . 0.01485664834341851) (looseness-variance . 0.00022072) (looses q 0.0355 0.0312 0.0071 -0.005 0.0033 0.0288 0.0272 0.9053)) (fh-improved . 42) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "The fresh harrow-lines seemed to stretch like the channellings in a piece of new corduroy, lending a meanly utilitarian air to the expanse, taking away its gradations, and depriving it of all history beyond that of the few recent months, though to every clod and stone there really attached associations enough and to spare—echoes of songs from ancient harvest-days, of spoken words, and of sturdy deeds. Every inch of ground had been the site, first or last, of energy, gaiety, horse-play, bickerings, weariness. Groups of gleaners had squatted in the sun on every square yard. Love-matches that had populated the adjoining hamlet had been made up there between reaping and carrying. Under the hedge which divided the field from a distant plantation girls had given themselves to lovers who would not turn their heads to look at them by the next harvest; and in that ancient cornfield many a man had made love-promises to a woman at whose voice he had trembled by the next seed-time after fulfilling them in the church adjoining. But this neither Jude nor the rooks around him considered. For them it was a lonely place, possessing, in the one view, only the quality of a work-ground, and in the other that of a granary good to feed in.") (measure . 300) (bh h - (equal) (time . 71) (line-count . 20) (looseness-spread . 0.0538) (bps q 13 30 46 58 70 83 96 109 123 137 150 164 177 192 205 220 234 249 265) (piece-count . 267) (avg-piece-length . 19.004589887640453) (avg-looseness . 0.0296) (looseness-sd . 0.015937373974299403) (looseness-variance . 0.0002539998891966759) (looses q 0.0125 0.0571 0.0082 0.0332 0.0504 0.0148 0.0391 0.0277 0.0491 0.0182 0.0353 0.0473 0.0435 0.0033 0.0217 0.0053 0.0361 0.0376 0.0218 0.8553)) (fu h - (equal) (time . 49) (line-count . 20) (looseness-spread . 0.1296) (bps q 11 23 34 46 55 66 79 88 100 110 120 130 142 154 167 179 189 201 216) (piece-count . 220) (avg-piece-length . 23.064661363636375) (avg-looseness . 0.0407) (looseness-sd . 0.035347136452641564) (looseness-variance . 0.001249420055401662) (looses q 0.0125 0.0571 0.0082 0.0332 0.0504 0.0148 0.0391 0.0277 0.0491 0.0182 0.0353 0.1378 0.0519 0.0548 0.0289 0.0103 0.1258 0.0083 0.0105 0.6467)) (bu h - (equal) (time . 63) (line-count . 20) (looseness-spread . 0.085) (bps q 11 23 34 46 55 65 77 87 99 109 119 130 142 153 166 178 189 201 216) (piece-count . 220) (avg-piece-length . 23.064661363636375) (avg-looseness . 0.0423) (looseness-sd . 0.02690398749137919) (looseness-variance . 0.000723824542936288) (looses q 0.0125 0.0571 0.0082 0.0332 0.0504 0.0878 0.0932 0.0484 0.0204 0.0217 0.0448 0.0363 0.0519 0.0798 0.0683 0.061 0.0107 0.0083 0.0105 0.6467)) (fh h - (equal) (time . 33) (line-count . 20) (looseness-spread . 0.0579) (bps q 13 30 46 58 70 83 96 109 123 137 150 164 178 192 205 220 234 249 265) (piece-count . 267) (avg-piece-length . 19.004589887640453) (avg-looseness . 0.0296) (looseness-sd . 0.016526307408646888) (looseness-variance . 0.00027311883656509696) (looses q 0.0125 0.0571 0.0082 0.0332 0.0504 0.0148 0.0391 0.0277 0.0491 0.0182 0.0353 0.0473 -0.0008 0.0476 0.0217 0.0053 0.0361 0.0376 0.0218 0.8553)) (fh-improved . 512) (bu-improved . 10) (bh-improved . 1)) c (h - (equal) (text u . "The boy stood under the rick before mentioned, and every few seconds used his clacker or rattle briskly. At each clack the rooks left off pecking, and rose and went away on their leisurely wings, burnished like tassets of mail, afterwards wheeling back and regarding him warily, and descending to feed at a more respectful distance.") (measure . 300) (bh h - (equal) (time . 13) (line-count . 6) (looseness-spread . 0.0839) (bps q 12 26 39 52 67) (piece-count . 69) (avg-piece-length . 19.823999999999995) (avg-looseness . 0.0371) (looseness-sd . 0.029370938017026286) (looseness-variance . 0.0008626519999999999) (looses q 0.0472 0.0179 0.0261 0.0891 0.0052 0.8707)) (fu h - (equal) (time . 8) (line-count . 6) (looseness-spread . 0.0839) (bps q 11 23 35 44 55) (piece-count . 56) (avg-piece-length . 24.42600000000001) (avg-looseness . 0.0371) (looseness-sd . 0.029370938017026286) (looseness-variance . 0.0008626519999999999) (looses q 0.0472 0.0179 0.0261 0.0891 0.0052 0.8707)) (bu h - (equal) (time . 12) (line-count . 6) (looseness-spread . 0.0839) (bps q 11 23 35 44 55) (piece-count . 56) (avg-piece-length . 24.42600000000001) (avg-looseness . 0.0371) (looseness-sd . 0.029370938017026286) (looseness-variance . 0.0008626519999999999) (looses q 0.0472 0.0179 0.0261 0.0891 0.0052 0.8707)) (fh h - (equal) (time . 9) (line-count . 6) (looseness-spread . 0.0839) (bps q 12 26 39 52 67) (piece-count . 69) (avg-piece-length . 19.823999999999995) (avg-looseness . 0.0371) (looseness-sd . 0.029370938017026286) (looseness-variance . 0.0008626519999999999) (looses q 0.0472 0.0179 0.0261 0.0891 0.0052 0.8707)) (fh-improved . 28) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "He sounded the clacker till his arm ached, and at length his heart grew sympathetic with the birds’ thwarted desires. They seemed, like himself, to be living in a world which did not want them. Why should he frighten them away? They took upon more and more the aspect of gentle friends and pensioners—the only friends he could claim as being in the least degree interested in him, for his aunt had often told him that she was not. He ceased his rattling, and they alighted anew.") (measure . 300) (bh h - (equal) (time . 19) (line-count . 8) (looseness-spread . 0.0435) (bps q 13 24 40 51 65 79 93) (piece-count . 97) (avg-piece-length . 20.275092783505155) (avg-looseness . 0.0197) (looseness-sd . 0.014616205711050836) (looseness-variance . 0.0002136334693877551) (looses q 0.0105 0.0082 -0.0042 0.0393 0.0243 0.0228 0.0368 0.6501)) (fu h - (equal) (time . 12) (line-count . 8) (looseness-spread . 0.0435) (bps q 13 22 36 47 58 71 84) (piece-count . 88) (avg-piece-length . 22.34868181818182) (avg-looseness . 0.0197) (looseness-sd . 0.014616205711050836) (looseness-variance . 0.0002136334693877551) (looses q 0.0105 0.0082 -0.0042 0.0393 0.0243 0.0228 0.0368 0.6501)) (bu h - (equal) (time . 36) (line-count . 8) (looseness-spread . 0.0435) (bps q 13 22 36 47 58 71 84) (piece-count . 88) (avg-piece-length . 22.34868181818182) (avg-looseness . 0.0197) (looseness-sd . 0.014616205711050836) (looseness-variance . 0.0002136334693877551) (looses q 0.0105 0.0082 -0.0042 0.0393 0.0243 0.0228 0.0368 0.6501)) (fh h - (equal) (time . 13) (line-count . 8) (looseness-spread . 0.0435) (bps q 13 24 40 51 65 79 93) (piece-count . 97) (avg-piece-length . 20.275092783505155) (avg-looseness . 0.0197) (looseness-sd . 0.014616205711050836) (looseness-variance . 0.0002136334693877551) (looses q 0.0105 0.0082 -0.0042 0.0393 0.0243 0.0228 0.0368 0.6501)) (fh-improved . 34) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— you shall. There is enough for us all. Farmer Troutham can afford to let you have some. Eat, then my dear little birdies, and make a good meal!”") (measure . 300) (bh h - (equal) (time . 8) (line-count . 4) (looseness-spread . 0.051) (bps q 11 23 37) (piece-count . 42) (avg-piece-length . 21.47077380952381) (avg-looseness . 0.0397) (looseness-sd . 0.021073205736194957) (looseness-variance . 0.00044407999999999996) (looses q 0.0629 0.0119 0.0443 0.648)) (fu h - (equal) (time . 6) (line-count . 4) (looseness-spread . 0.051) (bps q 10 21 34) (piece-count . 39) (avg-piece-length . 23.122371794871793) (avg-looseness . 0.0397) (looseness-sd . 0.021073205736194957) (looseness-variance . 0.00044407999999999996) (looses q 0.0629 0.0119 0.0443 0.648)) (bu h - (equal) (time . 24) (line-count . 4) (looseness-spread . 0.051) (bps q 10 21 34) (piece-count . 39) (avg-piece-length . 23.122371794871793) (avg-looseness . 0.0397) (looseness-sd . 0.021073205736194957) (looseness-variance . 0.00044407999999999996) (looses q 0.0629 0.0119 0.0443 0.648)) (fh h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.051) (bps q 11 23 37) (piece-count . 42) (avg-piece-length . 21.47077380952381) (avg-looseness . 0.0397) (looseness-sd . 0.021073205736194957) (looseness-variance . 0.00044407999999999996) (looses q 0.0629 0.0119 0.0443 0.648)) (fh-improved . 6) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "They stayed and ate, inky spots on the nut-brown soil, and Jude enjoyed their appetite. A magic thread of fellow-feeling united his own life with theirs. Puny and sorry as those lives were, they much resembled his own.") (measure . 300) (bh h - (equal) (time . 8) (line-count . 4) (looseness-spread . 0.0282) (bps q 13 25 38) (piece-count . 42) (avg-piece-length . 21.34755952380953) (avg-looseness . 0.037) (looseness-sd . 0.012174563647211346) (looseness-variance . 0.00014822000000000004) (looses q 0.0314 0.0539 0.0257 0.6186)) (fu h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.0779) (bps q 13 24 36) (piece-count . 39) (avg-piece-length . 22.989679487179494) (avg-looseness . 0.037) (looseness-sd . 0.03204521111735037) (looseness-variance . 0.0010268955555555557) (looses q 0.0314 0.0008 0.0787 0.6186)) (bu h - (equal) (time . 8) (line-count . 4) (looseness-spread . 0.0282) (bps q 13 23 36) (piece-count . 39) (avg-piece-length . 22.989679487179494) (avg-looseness . 0.037) (looseness-sd . 0.012174563647211346) (looseness-variance . 0.00014822000000000004) (looses q 0.0314 0.0539 0.0257 0.6186)) (fh h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.0779) (bps q 13 26 38) (piece-count . 42) (avg-piece-length . 21.34755952380953) (avg-looseness . 0.037) (looseness-sd . 0.03204521111735037) (looseness-variance . 0.0010268955555555557) (looses q 0.0314 0.0008 0.0787 0.6186)) (fh-improved . 4) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "His clacker he had by this time thrown away from him, as being a mean and sordid instrument, offensive both to the birds and to himself as their friend. All at once he became conscious of a smart blow upon his buttocks, followed by a loud clack, which announced to his surprised senses that the clacker had been the instrument of offence used. The birds and Jude started up simultaneously, and the dazed eyes of the latter beheld the farmer in person, the great Troutham himself, his red face glaring down upon Jude’s cowering frame, the clacker swinging in his hand.") (measure . 300) (bh h - (equal) (time . 41) (line-count . 9) (looseness-spread . 0.0406) (bps q 13 27 42 55 67 79 94 107) (piece-count . 120) (avg-piece-length . 19.57299999999999) (avg-looseness . 0.0453) (looseness-sd . 0.013308497050756707) (looseness-variance . 0.00017711609374999998) (looses q 0.0359 0.0623 0.0493 0.0579 0.0325 0.0217 0.0454 0.0573 0.0633)) (fu h - (equal) (time . 31) (line-count . 9) (looseness-spread . 0.1622) (bps q 14 25 38 48 59 69 80 91) (piece-count . 101) (avg-piece-length . 23.255049504950488) (avg-looseness . 0.0466) (looseness-sd . 0.05466918550472469) (looseness-variance . 0.00298871984375) (looses q 0.0109 0.0483 -0.008 0.1542 0.0325 0.1166 -0.0005 0.0191 0.0633)) (bu h - (equal) (time . 22) (line-count . 9) (looseness-spread . 0.0909) (bps q 13 24 37 48 58 69 80 91) (piece-count . 101) (avg-piece-length . 23.255049504950488) (avg-looseness . 0.0467) (looseness-sd . 0.026310359176567696) (looseness-variance . 0.0006922349999999999) (looses q 0.0359 0.0623 0.0493 0.0579 0.0904 0.0588 -0.0005 0.0191 0.0633)) (fh h - (equal) (time . 15) (line-count . 9) (looseness-spread . 0.1622) (bps q 14 28 43 55 67 79 94 107) (piece-count . 120) (avg-piece-length . 19.57299999999999) (avg-looseness . 0.0453) (looseness-sd . 0.045767440323334664) (looseness-variance . 0.00209465859375) (looses q 0.0109 0.0483 -0.008 0.1542 0.0325 0.0217 0.0454 0.0573 0.0633)) (fh-improved . 63) (bu-improved . 4) (bh-improved . 3)) c (h - (equal) (text u . "“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear birdies,’ indeed! I’ll tickle your breeches, and see if you say, ‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s how you earn your sixpence a day for keeping the rooks off my corn!”") (measure . 300) (bh h - (equal) (time . 32) (line-count . 6) (looseness-spread . 0.1332) (bps q 12 23 35 48 63) (piece-count . 65) (avg-piece-length . 20.546430769230764) (avg-looseness . 0.0671) (looseness-sd . 0.04567537629839518) (looseness-variance . 0.00208624) (looses q 0.1301 0.0985 0.0663 0.0437 -0.0031 0.8591)) (fu h - (equal) (time . 9) (line-count . 6) (looseness-spread . 0.1332) (bps q 12 24 36 45 58) (piece-count . 60) (avg-piece-length . 22.25863333333333) (avg-looseness . 0.0648) (looseness-sd . 0.051348285268351467) (looseness-variance . 0.0026366464) (looses q 0.1301 0.0132 0.0821 0.1015 -0.0031 0.8591)) (bu h - (equal) (time . 12) (line-count . 6) (looseness-spread . 0.1332) (bps q 12 23 35 45 58) (piece-count . 60) (avg-piece-length . 22.25863333333333) (avg-looseness . 0.0671) (looseness-sd . 0.04567537629839518) (looseness-variance . 0.00208624) (looses q 0.1301 0.0985 0.0663 0.0437 -0.0031 0.8591)) (fh h - (equal) (time . 9) (line-count . 6) (looseness-spread . 0.1332) (bps q 12 24 36 48 63) (piece-count . 65) (avg-piece-length . 20.546430769230764) (avg-looseness . 0.0648) (looseness-sd . 0.051348285268351467) (looseness-variance . 0.0026366464) (looses q 0.1301 0.0132 0.0821 0.1015 -0.0031 0.8591)) (fh-improved . 8) (bu-improved . 2) (bh-improved . 2)) c (h - (equal) (text u . "Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham had seized his left hand with his own left, and swinging his slim frame round him at arm’s-length, again struck Jude on the hind parts with the flat side of Jude’s own rattle, till the field echoed with the blows, which were delivered once or twice at each revolution.") (measure . 300) (bh h - (equal) (time . 14) (line-count . 6) (looseness-spread . 0.1273) (bps q 10 22 34 49 62) (piece-count . 67) (avg-piece-length . 20.503298507462688) (avg-looseness . 0.0472) (looseness-sd . 0.040781152509462015) (looseness-variance . 0.0016631023999999998) (looses q 0.1166 0.0409 0.0377 0.0513 -0.0107 0.762)) (fu h - (equal) (time . 9) (line-count . 6) (looseness-spread . 0.1206) (bps q 8 20 32 46 57) (piece-count . 59) (avg-piece-length . 23.283406779661018) (avg-looseness . 0.0493) (looseness-sd . 0.04075897937878229) (looseness-variance . 0.0016612944000000001) (looses q 0.1166 -0.004 0.0462 0.0231 0.0648 0.762)) (bu h - (equal) (time . 12) (line-count . 6) (looseness-spread . 0.1206) (bps q 8 20 32 46 57) (piece-count . 59) (avg-piece-length . 23.283406779661018) (avg-looseness . 0.0493) (looseness-sd . 0.04075897937878229) (looseness-variance . 0.0016612944000000001) (looses q 0.1166 -0.004 0.0462 0.0231 0.0648 0.762)) (fh h - (equal) (time . 9) (line-count . 6) (looseness-spread . 0.1206) (bps q 10 23 35 50 62) (piece-count . 67) (avg-piece-length . 20.503298507462688) (avg-looseness . 0.0493) (looseness-sd . 0.04075897937878229) (looseness-variance . 0.0016612944000000001) (looses q 0.1166 -0.004 0.0462 0.0231 0.0648 0.762)) (fh-improved . 17) (bu-improved . 0) (bh-improved . 3)) c (h - (equal) (text u . "“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as helpless under the centrifugal tendency of his person as a hooked fish swinging to land, and beholding the hill, the rick, the plantation, the path, and the rooks going round and round him in an amazing circular race. “I—I sir—only meant that—there was a good crop in the ground—I saw ‘em sow it—and the rooks could have a little bit for dinner—and you wouldn’t miss it, sir—and Mr. Phillotson said I was to be kind to ‘em—oh, oh, oh!”") (measure . 300) (bh h - (equal) (time . 40) (line-count . 8) (looseness-spread . 0.0527) (bps q 11 27 41 55 70 84 99) (piece-count . 112) (avg-piece-length . 17.802) (avg-looseness . 0.0351) (looseness-sd . 0.01967609136562878) (looseness-variance . 0.0003871485714285715) (looses q 0.0604 0.0077 0.0563 0.0312 0.0341 0.0086 0.0474 0.1467)) (fu h - (equal) (time . 30) (line-count . 8) (looseness-spread . 0.1441) (bps q 11 22 33 45 58 72 85) (piece-count . 97) (avg-piece-length . 20.554886597938147) (avg-looseness . 0.0367) (looseness-sd . 0.04564817094040113) (looseness-variance . 0.0020837555102040817) (looses q 0.0604 0.0077 0.1333 0.0104 -0.0108 0.0086 0.0474 0.1467)) (bu h - (equal) (time . 20) (line-count . 8) (looseness-spread . 0.1192) (bps q 10 21 33 45 58 72 85) (piece-count . 97) (avg-piece-length . 20.554886597938147) (avg-looseness . 0.0379) (looseness-sd . 0.04177677804323198) (looseness-variance . 0.0017452991836734695) (looses q 0.1084 0.0883 0.0128 0.0104 -0.0108 0.0086 0.0474 0.1467)) (fh h - (equal) (time . 14) (line-count . 8) (looseness-spread . 0.0527) (bps q 11 27 42 55 70 84 99) (piece-count . 112) (avg-piece-length . 17.802) (avg-looseness . 0.0351) (looseness-sd . 0.02034516439564238) (looseness-variance . 0.0004139257142857143) (looses q 0.0604 0.0077 0.0279 0.0596 0.0341 0.0086 0.0474 0.1467)) (fh-improved . 62) (bu-improved . 2) (bh-improved . 1)) c (h - (equal) (text u . "This truthful explanation seemed to exasperate the farmer even more than if Jude had stoutly denied saying anything at all, and he still smacked the whirling urchin, the clacks of the instrument continuing to resound all across the field and as far as the ears of distant workers—who gathered thereupon that Jude was pursuing his business of clacking with great assiduity—and echoing from the brand-new church tower just behind the mist, towards the building of which structure the farmer had largely subscribed, to testify his love for God and man.") (measure . 300) (bh h - (equal) (time . 24) (line-count . 9) (looseness-spread . 0.0509) (bps q 14 28 40 56 70 84 95 108) (piece-count . 116) (avg-piece-length . 19.530073275862062) (avg-looseness . 0.0311) (looseness-sd . 0.01527775650251044) (looseness-variance . 0.00023340984375) (looses q 0.032 0.042 0.0117 0.0601 0.0348 0.0256 0.0337 0.0092 0.4709)) (fu h - (equal) (time . 14) (line-count . 9) (looseness-spread . 0.0644) (bps q 9 22 32 46 55 65 76 86) (piece-count . 92) (avg-piece-length . 24.624875) (avg-looseness . 0.0266) (looseness-sd . 0.02258098965391021) (looseness-variance . 0.00050990109375) (looses q 0.032 -0.0036 0.0573 0.0212 -0.0059 0.0335 0.0585 0.0199 0.5099)) (bu h - (equal) (time . 20) (line-count . 9) (looseness-spread . 0.0644) (bps q 9 21 32 46 55 65 76 86) (piece-count . 92) (avg-piece-length . 24.624875) (avg-looseness . 0.0266) (looseness-sd . 0.018316142982353026) (looseness-variance . 0.00033548109375) (looses q 0.032 0.042 0.0117 0.0212 -0.0059 0.0335 0.0585 0.0199 0.5099)) (fh h - (equal) (time . 14) (line-count . 9) (looseness-spread . 0.0644) (bps q 14 29 40 57 72 85 96 109) (piece-count . 116) (avg-piece-length . 19.530073275862062) (avg-looseness . 0.0266) (looseness-sd . 0.02258098965391021) (looseness-variance . 0.00050990109375) (looses q 0.032 -0.0036 0.0573 0.0212 -0.0059 0.0335 0.0585 0.0199 0.5099)) (fh-improved . 111) (bu-improved . 1) (bh-improved . 7)) c (h - (equal) (text u . "Presently Troutham grew tired of his punitive task, and depositing the quivering boy on his legs, took a sixpence from his pocket and gave it him in payment for his day’s work, telling him to go home and never let him see him in one of those fields again.") (measure . 300) (bh h - (equal) (time . 27) (line-count . 4) (looseness-spread . 0.0302) (bps q 11 27 42) (piece-count . 55) (avg-piece-length . 18.821527272727277) (avg-looseness . 0.0283) (looseness-sd . 0.012704155050831029) (looseness-variance . 0.00016139555555555555) (looses q 0.0326 0.011 0.0412 0.0985)) (fu h - (equal) (time . 7) (line-count . 4) (looseness-spread . 0.1471) (bps q 9 21 34) (piece-count . 49) (avg-piece-length . 21.126204081632654) (avg-looseness . 0.0599) (looseness-sd . 0.06808427783922577) (looseness-variance . 0.004635468888888889) (looses q 0.1561 0.009 0.0145 0.0145)) (bu h - (equal) (time . 9) (line-count . 4) (looseness-spread . 0.1471) (bps q 9 21 34) (piece-count . 49) (avg-piece-length . 21.126204081632654) (avg-looseness . 0.0599) (looseness-sd . 0.06808427783922577) (looseness-variance . 0.004635468888888889) (looses q 0.1561 0.009 0.0145 0.0145)) (fh h - (equal) (time . 7) (line-count . 4) (looseness-spread . 0.0302) (bps q 11 27 42) (piece-count . 55) (avg-piece-length . 18.821527272727277) (avg-looseness . 0.0283) (looseness-sd . 0.012704155050831029) (looseness-variance . 0.00016139555555555555) (looses q 0.0326 0.011 0.0412 0.0985)) (fh-improved . 16) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Jude leaped out of arm’s reach, and walked along the trackway weeping—not from the pain, though that was keen enough; not from the perception of the flaw in the terrestrial scheme, by which what was good for God’s birds was bad for God’s gardener; but with the awful sense that he had wholly disgraced himself before he had been a year in the parish, and hence might be a burden to his great-aunt for life.") (measure . 300) (bh h - (equal) (time . 36) (line-count . 7) (looseness-spread . 0.0606) (bps q 12 24 40 53 66 82) (piece-count . 87) (avg-piece-length . 19.24425862068965) (avg-looseness . 0.0251) (looseness-sd . 0.0186572074247163) (looseness-variance . 0.00034809138888888894) (looses q 0.0512 0.0314 -0.0094 0.0365 0.0189 0.0221 0.68)) (fu h - (equal) (time . 11) (line-count . 7) (looseness-spread . 0.0606) (bps q 11 22 34 46 57 72) (piece-count . 77) (avg-piece-length . 21.743512987012977) (avg-looseness . 0.0251) (looseness-sd . 0.0186572074247163) (looseness-variance . 0.00034809138888888894) (looses q 0.0512 0.0314 -0.0094 0.0365 0.0189 0.0221 0.68)) (bu h - (equal) (time . 15) (line-count . 7) (looseness-spread . 0.0606) (bps q 11 22 34 46 57 72) (piece-count . 77) (avg-piece-length . 21.743512987012977) (avg-looseness . 0.0251) (looseness-sd . 0.0186572074247163) (looseness-variance . 0.00034809138888888894) (looses q 0.0512 0.0314 -0.0094 0.0365 0.0189 0.0221 0.68)) (fh h - (equal) (time . 11) (line-count . 7) (looseness-spread . 0.0606) (bps q 12 24 40 53 66 82) (piece-count . 87) (avg-piece-length . 19.24425862068965) (avg-looseness . 0.0251) (looseness-sd . 0.0186572074247163) (looseness-variance . 0.00034809138888888894) (looses q 0.0512 0.0314 -0.0094 0.0365 0.0189 0.0221 0.68)) (fh-improved . 35) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "With this shadow on his mind he did not care to show himself in the village, and went homeward by a roundabout track behind a high hedge and across a pasture. Here he beheld scores of coupled earthworms lying half their length on the surface of the damp ground, as they always did in such weather at that time of the year. It was impossible to advance in regular steps without crushing some of them at each tread.") (measure . 300) (bh h - (equal) (time . 35) (line-count . 7) (looseness-spread . 0.0783) (bps q 15 29 42 56 69 85) (piece-count . 92) (avg-piece-length . 18.551874999999995) (avg-looseness . 0.0313) (looseness-sd . 0.02550159581063289) (looseness-variance . 0.000650331388888889) (looses q 0.0212 0.0349 0.0547 -0.0098 0.0685 0.0184 0.5312)) (fu h - (equal) (time . 11) (line-count . 7) (looseness-spread . 0.1244) (bps q 14 25 37 48 61 71) (piece-count . 78) (avg-piece-length . 21.881698717948716) (avg-looseness . 0.0492) (looseness-sd . 0.03954506571270583) (looseness-variance . 0.001563812222222222) (looses q 0.0212 0.0349 -0.0097 0.0654 0.0685 0.1147 0.4458)) (bu h - (equal) (time . 15) (line-count . 7) (looseness-spread . 0.0746) (bps q 13 24 36 47 60 71) (piece-count . 78) (avg-piece-length . 21.881698717948716) (avg-looseness . 0.0492) (looseness-sd . 0.025296091046290575) (looseness-variance . 0.0006398922222222223) (looses q 0.0593 0.0217 0.0963 0.0295 0.0314 0.0568 0.4458)) (fh h - (equal) (time . 11) (line-count . 7) (looseness-spread . 0.0782) (bps q 15 29 43 56 69 85) (piece-count . 92) (avg-piece-length . 18.551874999999995) (avg-looseness . 0.0331) (looseness-sd . 0.02735333109919562) (looseness-variance . 0.0007482047222222223) (looses q 0.0212 0.0349 -0.0097 0.0654 0.0685 0.0184 0.5312)) (fh-improved . 41) (bu-improved . 5) (bh-improved . 1)) c (h - (equal) (text u . "Though Farmer Troutham had just hurt him, he was a boy who could not himself bear to hurt anything. He had never brought home a nest of young birds without lying awake in misery half the night after, and often reinstating them and the nest in their original place the next morning. He could scarcely bear to see trees cut down or lopped, from a fancy that it hurt them; and late pruning, when the sap was up and the tree bled profusely, had been a positive grief to him in his infancy. This weakness of character, as it may be called, suggested that he was the sort of man who was born to ache a good deal before the fall of the curtain upon his unnecessary life should signify that all was well with him again. He carefully picked his way on tiptoe among the earthworms, without killing a single one.") (measure . 300) (bh h - (equal) (time . 54) (line-count . 13) (looseness-spread . 0.0698) (bps q 12 25 40 54 68 82 97 114 129 144 158 171) (piece-count . 177) (avg-piece-length . 18.446454802259886) (avg-looseness . 0.034) (looseness-sd . 0.020647329663233023) (looseness-variance . 0.00042631222222222227) (looses q 0.0339 0.0514 0.0026 0.0353 0.0394 0.0082 0.0241 0.0046 0.0326 0.0577 0.0454 0.0724 0.5885)) (fu h - (equal) (time . 21) (line-count . 13) (looseness-spread . 0.1036) (bps q 12 23 36 47 58 72 84 96 109 123 134 146) (piece-count . 151) (avg-piece-length . 21.62266556291391) (avg-looseness . 0.0513) (looseness-sd . 0.03383962995594892) (looseness-variance . 0.0011451205555555557) (looses q 0.0339 0.0514 0.0026 0.1062 0.0626 0.0093 0.0567 0.0971 0.049 0.1005 0.0237 0.0222 0.3866)) (bu h - (equal) (time . 47) (line-count . 13) (looseness-spread . 0.0503) (bps q 12 23 35 47 58 71 83 95 108 123 134 146) (piece-count . 151) (avg-piece-length . 21.62266556291391) (avg-looseness . 0.052) (looseness-sd . 0.016631170534070455) (looseness-variance . 0.0002765958333333333) (looses q 0.0339 0.0514 0.0604 0.0484 0.0626 0.0725 0.0661 0.0717 0.049 0.0615 0.0237 0.0222 0.3866)) (fh h - (equal) (time . 22) (line-count . 13) (looseness-spread . 0.0807) (bps q 12 25 40 55 69 83 99 115 129 144 158 171) (piece-count . 177) (avg-piece-length . 18.446454802259886) (avg-looseness . 0.0347) (looseness-sd . 0.023679156035542222) (looseness-variance . 0.0005607024305555557) (looses q 0.0339 0.0514 0.0026 0.0255 -0.0083 0.0187 0.016 0.0375 0.0631 0.0577 0.0454 0.0724 0.5885)) (fh-improved . 160) (bu-improved . 5) (bh-improved . 6)) c (h - (equal) (text u . "On entering the cottage he found his aunt selling a penny loaf to a little girl, and when the customer was gone she said, “Well, how do you come to be back here in the middle of the morning like this?”") (measure . 300) (bh h - (equal) (time . 8) (line-count . 4) (looseness-spread . 0.0577) (bps q 17 31 47) (piece-count . 48) (avg-piece-length . 16.973041666666667) (avg-looseness . 0.0263) (looseness-sd . 0.02416641379178043) (looseness-variance . 0.0005840155555555555) (looses q 0.0013 0.0187 0.059 0.9245)) (fu h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.0577) (bps q 14 26 40) (piece-count . 41) (avg-piece-length . 19.870878048780487) (avg-looseness . 0.0263) (looseness-sd . 0.02416641379178043) (looseness-variance . 0.0005840155555555555) (looses q 0.0013 0.0187 0.059 0.9245)) (bu h - (equal) (time . 8) (line-count . 4) (looseness-spread . 0.0577) (bps q 14 26 40) (piece-count . 41) (avg-piece-length . 19.870878048780487) (avg-looseness . 0.0263) (looseness-sd . 0.02416641379178043) (looseness-variance . 0.0005840155555555555) (looses q 0.0013 0.0187 0.059 0.9245)) (fh h - (equal) (time . 5) (line-count . 4) (looseness-spread . 0.0577) (bps q 17 31 47) (piece-count . 48) (avg-piece-length . 16.973041666666667) (avg-looseness . 0.0263) (looseness-sd . 0.02416641379178043) (looseness-variance . 0.0005840155555555555) (looses q 0.0013 0.0187 0.059 0.9245)) (fh-improved . 15) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Mr. Troutham have turned me away because I let the rooks have a few peckings of corn. And there’s my wages—the last I shall ever hae!”") (measure . 300) (bh h - (equal) (time . 22) (line-count . 3) (looseness-spread . 0.0346) (bps q 12 26) (piece-count . 28) (avg-piece-length . 20.311464285714287) (avg-looseness . 0.0355) (looseness-sd . 0.0173) (looseness-variance . 0.00029929) (looses q 0.0182 0.0528 0.8576)) (fu h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.0346) (bps q 12 25) (piece-count . 27) (avg-piece-length . 21.06374074074074) (avg-looseness . 0.0355) (looseness-sd . 0.0173) (looseness-variance . 0.00029929) (looses q 0.0182 0.0528 0.8576)) (bu h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0346) (bps q 12 25) (piece-count . 27) (avg-piece-length . 21.06374074074074) (avg-looseness . 0.0355) (looseness-sd . 0.0173) (looseness-variance . 0.00029929) (looses q 0.0182 0.0528 0.8576)) (fh h - (equal) (time . 3) (line-count . 3) (looseness-spread . 0.0346) (bps q 12 26) (piece-count . 28) (avg-piece-length . 20.311464285714287) (avg-looseness . 0.0355) (looseness-sd . 0.0173) (looseness-variance . 0.00029929) (looses q 0.0182 0.0528 0.8576)) (fh-improved . 1) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Ah!” said his aunt, suspending her breath. And she opened upon him a lecture on how she would now have him all the spring upon her hands doing nothing. “If you can’t skeer birds, what can ye do? There! don’t ye look so deedy! Farmer Troutham is not so much better than myself, come to that. But ‘tis as Job said, ‘Now they that are younger than I have me in derision, whose fathers I would have disdained to have set with the dogs of my flock.’ His father was my father’s journeyman, anyhow, and I must have been a fool to let ‘ee go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of mischty.”") (measure . 300) (bh h - (equal) (time . 25) (line-count . 10) (looseness-spread . 0.0987) (bps q 12 27 40 53 67 80 94 108 124) (piece-count . 132) (avg-piece-length . 19.122496212121213) (avg-looseness . 0.0257) (looseness-sd . 0.035122192344182165) (looseness-variance . 0.0012335683950617283) (looses q 0.0953 0.0016 -0.0034 0.0021 0.0099 0.0417 0.0775 0.0092 -0.0028 0.5377)) (fu h - (equal) (time . 16) (line-count . 10) (looseness-spread . 0.0987) (bps q 10 24 36 49 62 75 88 98 114) (piece-count . 121) (avg-piece-length . 20.860904958677686) (avg-looseness . 0.0244) (looseness-sd . 0.03345864593276783) (looseness-variance . 0.0011194809876543211) (looses q 0.0953 0.0016 -0.0034 0.0021 0.0099 0.0207 0.0238 0.0723 -0.0028 0.5377)) (bu h - (equal) (time . 24) (line-count . 10) (looseness-spread . 0.0987) (bps q 10 24 36 49 62 74 87 98 114) (piece-count . 121) (avg-piece-length . 20.860904958677686) (avg-looseness . 0.0257) (looseness-sd . 0.035122192344182165) (looseness-variance . 0.0012335683950617283) (looses q 0.0953 0.0016 -0.0034 0.0021 0.0099 0.0417 0.0775 0.0092 -0.0028 0.5377)) (fh h - (equal) (time . 33) (line-count . 10) (looseness-spread . 0.0987) (bps q 12 27 40 53 67 81 95 108 124) (piece-count . 132) (avg-piece-length . 19.122496212121213) (avg-looseness . 0.0244) (looseness-sd . 0.03345864593276783) (looseness-variance . 0.0011194809876543211) (looses q 0.0953 0.0016 -0.0034 0.0021 0.0099 0.0207 0.0238 0.0723 -0.0028 0.5377)) (fh-improved . 51) (bu-improved . 2) (bh-improved . 2)) c (h - (equal) (text u . "More angry with Jude for demeaning her by coming there than for dereliction of duty, she rated him primarily from that point of view, and only secondarily from a moral one.") (measure . 300) (bh h - (equal) (time . 7) (line-count . 3) (looseness-spread . 0.0315) (bps q 13 29) (piece-count . 39) (avg-piece-length . 18.52089743589744) (avg-looseness . 0.0285) (looseness-sd . 0.015750000000000004) (looseness-variance . 0.0002480625000000001) (looses q 0.0442 0.0127 0.3267)) (fu h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.0733) (bps q 12 23) (piece-count . 30) (avg-piece-length . 24.077166666666663) (avg-looseness . 0.0285) (looseness-sd . 0.03665) (looseness-variance . 0.0013432225000000002) (looses q -0.0082 0.0651 0.3267)) (bu h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.0315) (bps q 11 23) (piece-count . 30) (avg-piece-length . 24.077166666666663) (avg-looseness . 0.0285) (looseness-sd . 0.015750000000000004) (looseness-variance . 0.0002480625000000001) (looses q 0.0442 0.0127 0.3267)) (fh h - (equal) (time . 23) (line-count . 3) (looseness-spread . 0.0733) (bps q 14 29) (piece-count . 39) (avg-piece-length . 18.52089743589744) (avg-looseness . 0.0285) (looseness-sd . 0.03665) (looseness-variance . 0.0013432225000000002) (looses q -0.0082 0.0651 0.3267)) (fh-improved . 8) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "“Not that you should have let the birds eat what Farmer Troutham planted. Of course you was wrong in that. Jude, Jude, why didstn’t go off with that schoolmaster of thine to Christminster or somewhere? But, oh no—poor or’nary child—there never was any sprawl on thy side of the family, and never will be!”") (measure . 300) (bh h - (equal) (time . 12) (line-count . 5) (looseness-spread . 0.1603) (bps q 11 22 37 49) (piece-count . 62) (avg-piece-length . 20.614677419354845) (avg-looseness . 0.0534) (looseness-sd . 0.06308361514688263) (looseness-variance . 0.0039795425) (looses q 0.161 0.0306 0.0211 0.0007 0.1055)) (fu h - (equal) (time . 8) (line-count . 6) (looseness-spread . 0.1717) (bps q 11 22 32 41 54) (piece-count . 55) (avg-piece-length . 23.238363636363637) (avg-looseness . 0.0889) (looseness-sd . 0.07146869524484128) (looseness-variance . 0.005107774399999999) (looses q 0.161 0.0306 0.1891 0.0174 0.0466 0.885)) (bu h - (equal) (time . 11) (line-count . 6) (looseness-spread . 0.1436) (bps q 11 21 32 41 54) (piece-count . 55) (avg-piece-length . 23.238363636363637) (avg-looseness . 0.089) (looseness-sd . 0.05131520632327225) (looseness-variance . 0.0026332504000000003) (looses q 0.161 0.1195 0.1003 0.0174 0.0466 0.885)) (fh h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.1603) (bps q 11 22 37 49) (piece-count . 62) (avg-piece-length . 20.614677419354845) (avg-looseness . 0.0534) (looseness-sd . 0.06308361514688263) (looseness-variance . 0.0039795425) (looses q 0.161 0.0306 0.0211 0.0007 0.1055)) (fh-improved . 13) (bu-improved . 1) (bh-improved . 0)) c (h - (equal) (text u . "“Lord! you ought to know where the city of Christminster is. Near a score of miles from here. It is a place much too good for you ever to have much to do with, poor boy, I’m a-thinking.”") (measure . 300) (bh h - (equal) (time . 8) (line-count . 3) (looseness-spread . 0.0513) (bps q 13 28) (piece-count . 42) (avg-piece-length . 18.068964285714287) (avg-looseness . 0.0673) (looseness-sd . 0.02565) (looseness-variance . 0.0006579225) (looses q 0.093 0.0417 0.0925)) (fu h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0513) (bps q 11 26) (piece-count . 39) (avg-piece-length . 19.458884615384616) (avg-looseness . 0.0673) (looseness-sd . 0.02565) (looseness-variance . 0.0006579225) (looses q 0.093 0.0417 0.0925)) (bu h - (equal) (time . 7) (line-count . 3) (looseness-spread . 0.0513) (bps q 11 26) (piece-count . 39) (avg-piece-length . 19.458884615384616) (avg-looseness . 0.0673) (looseness-sd . 0.02565) (looseness-variance . 0.0006579225) (looses q 0.093 0.0417 0.0925)) (fh h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0513) (bps q 13 28) (piece-count . 42) (avg-piece-length . 18.068964285714287) (avg-looseness . 0.0673) (looseness-sd . 0.02565) (looseness-variance . 0.0006579225) (looses q 0.093 0.0417 0.0925)) (fh-improved . 4) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as that. We’ve never had anything to do with folk in Christminster, nor folk in Christminster with we.”") (measure . 300) (bh h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.0369) (bps q 12 26) (piece-count . 35) (avg-piece-length . 20.56594285714286) (avg-looseness . 0.0444) (looseness-sd . 0.018449999999999998) (looseness-variance . 0.00034040249999999997) (looses q 0.0629 0.026 0.3469)) (fu h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0711) (bps q 11 23) (piece-count . 29) (avg-piece-length . 24.820965517241376) (avg-looseness . 0.0985) (looseness-sd . 0.035550000000000005) (looseness-variance . 0.0012638025000000002) (looses q 0.0629 0.134 0.2498)) (bu h - (equal) (time . 22) (line-count . 3) (looseness-spread . 0.0443) (bps q 10 23) (piece-count . 29) (avg-piece-length . 24.820965517241376) (avg-looseness . 0.0985) (looseness-sd . 0.022149999999999996) (looseness-variance . 0.0004906224999999998) (looses q 0.1206 0.0763 0.2498)) (fh h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0369) (bps q 12 26) (piece-count . 35) (avg-piece-length . 20.56594285714286) (avg-looseness . 0.0444) (looseness-sd . 0.018449999999999998) (looseness-variance . 0.00034040249999999997) (looses q 0.0629 0.026 0.3469)) (fh-improved . 4) (bu-improved . 1) (bh-improved . 0)) c (h - (equal) (text u . "Jude went out, and, feeling more than ever his existence to be an undemanded one, he lay down upon his back on a heap of litter near the pig-sty. The fog had by this time become more translucent, and the position of the sun could be seen through it. He pulled his straw hat over his face, and peered through the interstices of the plaiting at the white brightness, vaguely reflecting. Growing up brought responsibilities, he found. Events did not rhyme quite as he had thought. Nature’s logic was too horrid for him to care for. That mercy towards one set of creatures was cruelty towards another sickened his sense of harmony. As you got older, and felt yourself to be at the centre of your time, and not at a point in its circumference, as you had felt when you were little, you were seized with a sort of shuddering, he perceived. All around you there seemed to be something glaring, garish, rattling, and the noises and glares hit upon the little cell called your life, and shook it, and warped it.") (measure . 300) (bh h - (equal) (time . 45) (line-count . 16) (looseness-spread . 0.0621) (bps q 15 30 43 57 69 82 96 109 123 136 152 169 184 198 212) (piece-count . 217) (avg-piece-length . 18.67255529953916) (avg-looseness . 0.0364) (looseness-sd . 0.015724370328322284) (looseness-variance . 0.0002472558222222222) (looses q 0.0203 0.0404 0.0407 0.0667 0.0447 0.0481 0.0562 0.0207 0.0178 0.036 0.0446 0.0266 0.0322 0.0046 0.0471 0.5846)) (fu h - (equal) (time . 26) (line-count . 16) (looseness-spread . 0.1475) (bps q 13 26 38 50 62 71 79 91 103 112 126 140 152 162 173) (piece-count . 183) (avg-piece-length . 22.141773224043693) (avg-looseness . 0.0645) (looseness-sd . 0.04723363867226642) (looseness-variance . 0.002231016622222222) (looses q 0.0203 0.0404 0.1582 0.0235 0.0718 0.1314 0.0107 0.0601 0.1382 0.094 0.011 0.017 0.0377 0.0938 0.059 0.1996)) (bu h - (equal) (time . 58) (line-count . 16) (looseness-spread . 0.1085) (bps q 12 25 38 49 61 71 79 90 102 112 126 140 152 162 173) (piece-count . 183) (avg-piece-length . 22.141773224043693) (avg-looseness . 0.064) (looseness-sd . 0.03332962246010796) (looseness-variance . 0.0011108637333333332) (looses q 0.0652 0.0784 0.0753 0.0559 0.0895 0.0736 0.0107 0.1181 0.1192 0.055 0.011 0.017 0.0377 0.0938 0.059 0.1996)) (fh h - (equal) (time . 28) (line-count . 16) (looseness-spread . 0.0855) (bps q 15 30 43 57 69 82 96 109 123 136 153 170 184 198 212) (piece-count . 217) (avg-piece-length . 18.67255529953916) (avg-looseness . 0.0377) (looseness-sd . 0.02212495423724081) (looseness-variance . 0.0004895136) (looses q 0.0203 0.0404 0.0407 0.0667 0.0447 0.0481 0.0562 0.0207 0.0178 0.036 0.0078 0.0246 0.0901 0.0046 0.0471 0.5846)) (fh-improved . 279) (bu-improved . 6) (bh-improved . 2)) c (h - (equal) (text u . "Then, like the natural boy, he forgot his despondency, and sprang up. During the remainder of the morning he helped his aunt, and in the afternoon, when there was nothing more to be done, he went into the village. Here he asked a man whereabouts Christminster lay.") (measure . 300) (bh h - (equal) (time . 11) (line-count . 5) (looseness-spread . 0.0564) (bps q 14 29 43 56) (piece-count . 58) (avg-piece-length . 19.236922413793103) (avg-looseness . 0.0298) (looseness-sd . 0.023360543658057276) (looseness-variance . 0.000545715) (looses q 0.0039 0.0106 0.0603 0.0444 0.8311)) (fu h - (equal) (time . 69) (line-count . 5) (looseness-spread . 0.1485) (bps q 11 23 35 45) (piece-count . 46) (avg-piece-length . 24.25525) (avg-looseness . 0.0568) (looseness-sd . 0.05933898381334147) (looseness-variance . 0.0035211150000000004) (looses q 0.0039 0.0106 0.0603 0.1524 0.7339)) (bu h - (equal) (time . 57) (line-count . 5) (looseness-spread . 0.1024) (bps q 10 21 33 45) (piece-count . 46) (avg-piece-length . 24.25525) (avg-looseness . 0.0568) (looseness-sd . 0.03680885593169122) (looseness-variance . 0.0013548918749999998) (looses q 0.1146 0.0509 0.0494 0.0122 0.7339)) (fh h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.0564) (bps q 14 29 43 56) (piece-count . 58) (avg-piece-length . 19.236922413793103) (avg-looseness . 0.0298) (looseness-sd . 0.023360543658057276) (looseness-variance . 0.000545715) (looses q 0.0039 0.0106 0.0603 0.0444 0.8311)) (fh-improved . 28) (bu-improved . 5) (bh-improved . 0)) c (h - (equal) (text u . "The man pointed north-eastward, in the very direction where lay that field in which Jude had so disgraced himself. There was something unpleasant about the coincidence for the moment, but the fearsomeness of this fact rather increased his curiosity about the city. The farmer had said he was never to be seen in that field again; yet Christminster lay across it, and the path was a public one. So, stealing out of the hamlet, he descended into the same hollow which had witnessed his punishment in the morning, never swerving an inch from the path, and climbing up the long and tedious ascent on the other side till the track joined the highway by a little clump of trees. Here the ploughed land ended, and all before him was bleak open down.") (measure . 300) (bh h - (equal) (time . 32) (line-count . 12) (looseness-spread . 0.0851) (bps q 12 26 39 52 66 80 95 110 124 137 151) (piece-count . 158) (avg-piece-length . 19.360905063291128) (avg-looseness . 0.0325) (looseness-sd . 0.02674887500530792) (looseness-variance . 0.0007155023140495868) (looses q 0.0614 0.0326 0.004 0.0214 0.0864 0.0679 0.0228 0.0013 0.0341 0.0189 0.0063 0.4568)) (fu h - (equal) (time . 53) (line-count . 12) (looseness-spread . 0.0931) (bps q 11 22 31 41 56 68 80 89 101 113 125) (piece-count . 133) (avg-piece-length . 23.000172932330816) (avg-looseness . 0.0401) (looseness-sd . 0.032753926015387645) (looseness-variance . 0.0010728196694214877) (looses q 0.0096 0.0844 0.004 0.0214 0.0109 0.0404 0.0386 0.0885 0.0341 0.0971 0.0123 0.3919)) (bu h - (equal) (time . 28) (line-count . 12) (looseness-spread . 0.0958) (bps q 10 22 31 41 55 67 79 89 101 113 125) (piece-count . 133) (avg-piece-length . 23.000172932330816) (avg-looseness . 0.0401) (looseness-sd . 0.03153920556392164) (looseness-variance . 0.0009947214876033059) (looses q 0.0614 0.0326 0.004 0.0214 0.0864 0.0679 0.0228 0.0013 0.0341 0.0971 0.0123 0.3919)) (fh h - (equal) (time . 37) (line-count . 12) (looseness-spread . 0.0845) (bps q 13 26 39 52 67 82 96 110 124 137 151) (piece-count . 158) (avg-piece-length . 19.360905063291128) (avg-looseness . 0.0325) (looseness-sd . 0.02817091577971452) (looseness-variance . 0.0007936004958677686) (looses q 0.0096 0.0844 0.004 0.0214 0.0109 0.0404 0.0386 0.0885 0.0341 0.0189 0.0063 0.4568)) (fh-improved . 160) (bu-improved . 4) (bh-improved . 5)) c (h - (equal) (text u . "The schoolmaster was leaving the village, and everybody seemed sorry. The miller at Cresscombe lent him the small white tilted cart and horse to carry his goods to the city of his destination, about twenty miles off, such a vehicle proving of quite sufficient size for the departing teacher’s effects. For the schoolhouse had been partly furnished by the managers, and the only cumbersome article possessed by the master, in addition to the packing-case of books, was a cottage piano that he had bought at an auction during the year in which he thought of learning instrumental music. But the enthusiasm having waned he had never acquired any skill in playing, and the purchased article had been a perpetual trouble to him ever since in moving house.") (measure . 330) (bh h - (equal) (time . 36) (line-count . 11) (looseness-spread . 0.0445) (bps q 15 29 46 63 77 94 111 128 143 162) (piece-count . 168) (avg-piece-length . 18.455788690476183) (avg-looseness . 0.0144) (looseness-sd . 0.013808634979606058) (looseness-variance . 0.0001906784) (looses q 0.0181 0.0106 0.0337 0.0033 0.0107 0.0403 0.0231 0.0095 -0.0015 -0.0042 0.623)) (fu h - (equal) (time . 35) (line-count . 11) (looseness-spread . 0.0545) (bps q 10 23 37 49 60 72 87 98 110 123) (piece-count . 128) (avg-piece-length . 24.223222656249998) (avg-looseness . 0.0144) (looseness-sd . 0.015894099534103843) (looseness-variance . 0.0002526224) (looses q 0.0181 0.0106 0.0337 0.0033 0.0107 0.0049 0.0177 0.0503 -0.0015 -0.0042 0.623)) (bu h - (equal) (time . 28) (line-count . 11) (looseness-spread . 0.0445) (bps q 10 23 37 49 60 71 86 98 110 123) (piece-count . 128) (avg-piece-length . 24.223222656249998) (avg-looseness . 0.0144) (looseness-sd . 0.013808634979606058) (looseness-variance . 0.0001906784) (looses q 0.0181 0.0106 0.0337 0.0033 0.0107 0.0403 0.0231 0.0095 -0.0015 -0.0042 0.623)) (fh h - (equal) (time . 39) (line-count . 11) (looseness-spread . 0.0545) (bps q 15 29 46 63 77 95 112 128 143 162) (piece-count . 168) (avg-piece-length . 18.455788690476183) (avg-looseness . 0.0144) (looseness-sd . 0.015894099534103843) (looseness-variance . 0.0002526224) (looses q 0.0181 0.0106 0.0337 0.0033 0.0107 0.0049 0.0177 0.0503 -0.0015 -0.0042 0.623)) (fh-improved . 201) (bu-improved . 2) (bh-improved . 2)) c (h - (equal) (text u . "The rector had gone away for the day, being a man who disliked the sight of changes. He did not mean to return till the evening, when the new school-teacher would have arrived and settled in, and everything would be smooth again.") (measure . 330) (bh h - (equal) (time . 9) (line-count . 4) (looseness-spread . 0.0542) (bps q 17 31 44) (piece-count . 47) (avg-piece-length . 20.3178085106383) (avg-looseness . 0.017) (looseness-sd . 0.02251256439314623) (looseness-variance . 0.0005068155555555555) (looses q -0.0072 0.047 0.0111 0.7728)) (fu h - (equal) (time . 6) (line-count . 4) (looseness-spread . 0.0542) (bps q 15 29 40) (piece-count . 43) (avg-piece-length . 22.20783720930233) (avg-looseness . 0.017) (looseness-sd . 0.02251256439314623) (looseness-variance . 0.0005068155555555555) (looses q -0.0072 0.047 0.0111 0.7728)) (bu h - (equal) (time . 8) (line-count . 4) (looseness-spread . 0.0542) (bps q 15 29 40) (piece-count . 43) (avg-piece-length . 22.20783720930233) (avg-looseness . 0.017) (looseness-sd . 0.02251256439314623) (looseness-variance . 0.0005068155555555555) (looses q -0.0072 0.047 0.0111 0.7728)) (fh h - (equal) (time . 23) (line-count . 4) (looseness-spread . 0.0542) (bps q 17 31 44) (piece-count . 47) (avg-piece-length . 20.3178085106383) (avg-looseness . 0.017) (looseness-sd . 0.02251256439314623) (looseness-variance . 0.0005068155555555555) (looses q -0.0072 0.047 0.0111 0.7728)) (fh-improved . 8) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "The blacksmith, the farm bailiff, and the schoolmaster himself were standing in perplexed attitudes in the parlour before the instrument. The master had remarked that even if he got it into the cart he should not know what to do with it on his arrival at Christminster, the city he was bound for, since he was only going into temporary lodgings just at first.") (measure . 330) (bh h - (equal) (time . 32) (line-count . 5) (looseness-spread . 0.0742) (bps q 14 30 46 63) (piece-count . 79) (avg-piece-length . 18.455898734177218) (avg-looseness . 0.0324) (looseness-sd . 0.027954427198567316) (looseness-variance . 0.00078145) (looses q 0.0635 -0.0107 0.0491 0.0277 0.027)) (fu h - (equal) (time . 9) (line-count . 5) (looseness-spread . 0.0742) (bps q 10 21 36 51) (piece-count . 64) (avg-piece-length . 22.78150000000001) (avg-looseness . 0.0324) (looseness-sd . 0.027954427198567316) (looseness-variance . 0.00078145) (looses q 0.0635 -0.0107 0.0491 0.0277 0.027)) (bu h - (equal) (time . 12) (line-count . 5) (looseness-spread . 0.0742) (bps q 10 21 36 51) (piece-count . 64) (avg-piece-length . 22.78150000000001) (avg-looseness . 0.0324) (looseness-sd . 0.027954427198567316) (looseness-variance . 0.00078145) (looses q 0.0635 -0.0107 0.0491 0.0277 0.027)) (fh h - (equal) (time . 9) (line-count . 5) (looseness-spread . 0.0742) (bps q 14 30 46 63) (piece-count . 79) (avg-piece-length . 18.455898734177218) (avg-looseness . 0.0324) (looseness-sd . 0.027954427198567316) (looseness-variance . 0.00078145) (looses q 0.0635 -0.0107 0.0491 0.0277 0.027)) (fh-improved . 35) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "A little boy of eleven, who had been thoughtfully assisting in the packing, joined the group of men, and as they rubbed their chins he spoke up, blushing at the sound of his own voice: “Aunt have got a great fuel-house, and it could be put there, perhaps, till you’ve found a place to settle in, sir.”") (measure . 330) (bh h - (equal) (time . 12) (line-count . 5) (looseness-spread . 0.022) (bps q 16 30 46 61) (piece-count . 65) (avg-piece-length . 18.452015384615382) (avg-looseness . 0.0391) (looseness-sd . 0.00832867786626425) (looseness-variance . 6.936687500000001e-05) (looses q 0.0383 0.0442 0.026 0.048 0.8299)) (fu h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.1105) (bps q 12 25 40 54) (piece-count . 58) (avg-piece-length . 20.678982758620695) (avg-looseness . 0.05) (looseness-sd . 0.0431065177786376) (looseness-variance . 0.001858171875) (looses q 0.1119 0.0674 0.0014 0.0194 0.7945)) (bu h - (equal) (time . 11) (line-count . 5) (looseness-spread . 0.1105) (bps q 12 25 40 54) (piece-count . 58) (avg-piece-length . 20.678982758620695) (avg-looseness . 0.05) (looseness-sd . 0.0431065177786376) (looseness-variance . 0.001858171875) (looses q 0.1119 0.0674 0.0014 0.0194 0.7945)) (fh h - (equal) (time . 9) (line-count . 5) (looseness-spread . 0.0812) (bps q 16 31 46 62) (piece-count . 65) (avg-piece-length . 18.452015384615382) (avg-looseness . 0.0284) (looseness-sd . 0.033513989616278154) (looseness-variance . 0.0011231875) (looses q 0.0383 -0.0015 0.0791 -0.0021 0.8702)) (fh-improved . 24) (bu-improved . 0) (bh-improved . 2)) c (h - (equal) (text u . "It was decided that a deputation should wait on the boy’s aunt—an old maiden resident—and ask her if she would house the piano till Mr. Phillotson should send for it. The smith and the bailiff started to see about the practicability of the suggested shelter, and the boy and the schoolmaster were left standing alone.") (measure . 330) (bh h - (equal) (time . 13) (line-count . 5) (looseness-spread . 0.0406) (bps q 16 32 46 64) (piece-count . 72) (avg-piece-length . 17.800402777777776) (avg-looseness . 0.0536) (looseness-sd . 0.014697363709182678) (looseness-variance . 0.0002160125) (looses q 0.0708 0.0302 0.0565 0.0571 0.4755)) (fu h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.0631) (bps q 14 27 40 52) (piece-count . 57) (avg-piece-length . 22.484719298245615) (avg-looseness . 0.0536) (looseness-sd . 0.022535014422005593) (looseness-variance . 0.000507826875) (looses q 0.0189 0.082 0.0565 0.0571 0.4755)) (bu h - (equal) (time . 12) (line-count . 5) (looseness-spread . 0.0406) (bps q 13 27 40 52) (piece-count . 57) (avg-piece-length . 22.484719298245615) (avg-looseness . 0.0536) (looseness-sd . 0.014697363709182678) (looseness-variance . 0.0002160125) (looses q 0.0708 0.0302 0.0565 0.0571 0.4755)) (fh h - (equal) (time . 9) (line-count . 5) (looseness-spread . 0.0631) (bps q 17 32 46 64) (piece-count . 72) (avg-piece-length . 17.800402777777776) (avg-looseness . 0.0536) (looseness-sd . 0.022535014422005593) (looseness-variance . 0.000507826875) (looses q 0.0189 0.082 0.0565 0.0571 0.4755)) (fh-improved . 26) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "Tears rose into the boy’s eyes, for he was not among the regular day scholars, who came unromantically close to the schoolmaster’s life, but one who had attended the night school only during the present teacher’s term of office. The regular scholars, if the truth must be told, stood at the present moment afar off, like certain historic disciples, indisposed to any enthusiastic volunteering of aid.") (measure . 330) (bh h - (equal) (time . 17) (line-count . 6) (looseness-spread . 0.0645) (bps q 16 32 45 62 78) (piece-count . 88) (avg-piece-length . 18.639670454545453) (avg-looseness . 0.021) (looseness-sd . 0.02434884802203176) (looseness-variance . 0.0005928664) (looses q 0.0607 0.0118 -0.0038 0.0366 -0.0001 0.5065)) (fu h - (equal) (time . 30) (line-count . 6) (looseness-spread . 0.0645) (bps q 14 24 36 50 61) (piece-count . 65) (avg-piece-length . 25.235246153846152) (avg-looseness . 0.021) (looseness-sd . 0.02434884802203176) (looseness-variance . 0.0005928664) (looses q 0.0607 0.0118 -0.0038 0.0366 -0.0001 0.5065)) (bu h - (equal) (time . 13) (line-count . 6) (looseness-spread . 0.0645) (bps q 14 24 36 50 61) (piece-count . 65) (avg-piece-length . 25.235246153846152) (avg-looseness . 0.021) (looseness-sd . 0.02434884802203176) (looseness-variance . 0.0005928664) (looses q 0.0607 0.0118 -0.0038 0.0366 -0.0001 0.5065)) (fh h - (equal) (time . 11) (line-count . 6) (looseness-spread . 0.0645) (bps q 16 32 45 62 78) (piece-count . 88) (avg-piece-length . 18.639670454545453) (avg-looseness . 0.021) (looseness-sd . 0.02434884802203176) (looseness-variance . 0.0005928664) (looses q 0.0607 0.0118 -0.0038 0.0366 -0.0001 0.5065)) (fh-improved . 48) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "The boy awkwardly opened the book he held in his hand, which Mr. Phillotson had bestowed on him as a parting gift, and admitted that he was sorry.") (measure . 330) (bh h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0352) (bps q 14 30) (piece-count . 32) (avg-piece-length . 19.244890625000004) (avg-looseness . 0.0484) (looseness-sd . 0.0176) (looseness-variance . 0.00030976000000000007) (looses q 0.066 0.0308 0.8675)) (fu h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.0352) (bps q 13 26) (piece-count . 28) (avg-piece-length . 21.99416071428572) (avg-looseness . 0.0484) (looseness-sd . 0.0176) (looseness-variance . 0.00030976000000000007) (looses q 0.066 0.0308 0.8675)) (bu h - (equal) (time . 21) (line-count . 3) (looseness-spread . 0.0352) (bps q 13 26) (piece-count . 28) (avg-piece-length . 21.99416071428572) (avg-looseness . 0.0484) (looseness-sd . 0.0176) (looseness-variance . 0.00030976000000000007) (looses q 0.066 0.0308 0.8675)) (fh h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.0352) (bps q 14 30) (piece-count . 32) (avg-piece-length . 19.244890625000004) (avg-looseness . 0.0484) (looseness-sd . 0.0176) (looseness-variance . 0.00030976000000000007) (looses q 0.066 0.0308 0.8675)) (fh-improved . 5) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Well—don’t speak of this everywhere. You know what a university is, and a university degree? It is the necessary hallmark of a man who wants to do anything in teaching. My scheme, or dream, is to be a university graduate, and then to be ordained. By going to live at Christminster, or near it, I shall be at headquarters, so to speak, and if my scheme is practicable at all, I consider that being on the spot will afford me a better chance of carrying it out than I should have elsewhere.”") (measure . 330) (bh h - (equal) (time . 41) (line-count . 7) (looseness-spread . 0.0626) (bps q 15 34 52 69 87 106) (piece-count . 119) (avg-piece-length . 16.541445378151263) (avg-looseness . 0.0281) (looseness-sd . 0.01938057446688995) (looseness-variance . 0.0003756066666666667) (looses q 0.0383 -0.0046 0.0358 0.0231 0.018 0.058 0.2431)) (fu h - (equal) (time . 12) (line-count . 7) (looseness-spread . 0.0928) (bps q 12 26 40 53 68 83) (piece-count . 93) (avg-piece-length . 21.165935483870978) (avg-looseness . 0.0298) (looseness-sd . 0.031030777732223642) (looseness-variance . 0.0009629091666666667) (looses q 0.0383 -0.0046 0.0358 0.0231 0.0882 -0.0023 0.2431)) (bu h - (equal) (time . 38) (line-count . 7) (looseness-spread . 0.0726) (bps q 12 26 40 52 68 83) (piece-count . 93) (avg-piece-length . 21.165935483870978) (avg-looseness . 0.031) (looseness-sd . 0.026500377355803822) (looseness-variance . 0.0007022700000000001) (looses q 0.0383 -0.0046 0.0358 0.068 0.0508 -0.0023 0.2431)) (fh h - (equal) (time . 14) (line-count . 7) (looseness-spread . 0.0827) (bps q 15 34 52 69 88 106) (piece-count . 119) (avg-piece-length . 16.541445378151263) (avg-looseness . 0.0281) (looseness-sd . 0.027879587315612995) (looseness-variance . 0.0007772713888888889) (looses q 0.0383 -0.0046 0.0358 0.0231 -0.002 0.0781 0.2431)) (fh-improved . 82) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "The smith and his companion returned. Old Miss Fawley’s fuel-house was dry, and eminently practicable; and she seemed willing to give the instrument standing-room there. It was accordingly left in the school till the evening, when more hands would be available for removing it; and the schoolmaster gave a final glance round.") (measure . 330) (bh h - (equal) (time . 13) (line-count . 5) (looseness-spread . 0.0288) (bps q 14 31 46 60) (piece-count . 69) (avg-piece-length . 19.830333333333336) (avg-looseness . 0.0208) (looseness-sd . 0.011459821115532301) (looseness-variance . 0.0001313275) (looses q 0.0245 0.0275 0.0013 0.0301 0.4119)) (fu h - (equal) (time . 9) (line-count . 5) (looseness-spread . 0.0288) (bps q 11 23 35 47) (piece-count . 54) (avg-piece-length . 25.338759259259252) (avg-looseness . 0.0208) (looseness-sd . 0.011459821115532301) (looseness-variance . 0.0001313275) (looses q 0.0245 0.0275 0.0013 0.0301 0.4119)) (bu h - (equal) (time . 11) (line-count . 5) (looseness-spread . 0.0288) (bps q 11 23 35 47) (piece-count . 54) (avg-piece-length . 25.338759259259252) (avg-looseness . 0.0208) (looseness-sd . 0.011459821115532301) (looseness-variance . 0.0001313275) (looses q 0.0245 0.0275 0.0013 0.0301 0.4119)) (fh h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.0288) (bps q 14 31 46 60) (piece-count . 69) (avg-piece-length . 19.830333333333336) (avg-looseness . 0.0208) (looseness-sd . 0.011459821115532301) (looseness-variance . 0.0001313275) (looses q 0.0245 0.0275 0.0013 0.0301 0.4119)) (fh-improved . 35) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "The boy Jude assisted in loading some small articles, and at nine o’clock Mr. Phillotson mounted beside his box of books and other impedimenta, and bade his friends good-bye.") (measure . 330) (bh h - (equal) (time . 7) (line-count . 3) (looseness-spread . 0.0056) (bps q 15 29) (piece-count . 34) (avg-piece-length . 21.65077941176471) (avg-looseness . 0.004) (looseness-sd . 0.0028) (looseness-variance . 7.84e-06) (looses q 0.0012 0.0068 0.5862)) (fu h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.0056) (bps q 13 24) (piece-count . 29) (avg-piece-length . 25.383672413793107) (avg-looseness . 0.004) (looseness-sd . 0.0028) (looseness-variance . 7.84e-06) (looses q 0.0012 0.0068 0.5862)) (bu h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0056) (bps q 13 24) (piece-count . 29) (avg-piece-length . 25.383672413793107) (avg-looseness . 0.004) (looseness-sd . 0.0028) (looseness-variance . 7.84e-06) (looses q 0.0012 0.0068 0.5862)) (fh h - (equal) (time . 23) (line-count . 3) (looseness-spread . 0.0056) (bps q 15 29) (piece-count . 34) (avg-piece-length . 21.65077941176471) (avg-looseness . 0.004) (looseness-sd . 0.0028) (looseness-variance . 7.84e-06) (looses q 0.0012 0.0068 0.5862)) (fh-improved . 7) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. “Be a good boy, remember; and be kind to animals and birds, and read all you can. And if ever you come to Christminster remember you hunt me out for old acquaintance’ sake.”") (measure . 330) (bh h - (equal) (time . 10) (line-count . 4) (looseness-spread . 0.0358) (bps q 16 33 49) (piece-count . 54) (avg-piece-length . 18.791) (avg-looseness . 0.0115) (looseness-sd . 0.014648776968288741) (looseness-variance . 0.00021458666666666668) (looses q 0.0287 -0.0071 0.0129 0.6289)) (fu h - (equal) (time . 6) (line-count . 4) (looseness-spread . 0.0358) (bps q 14 29 42) (piece-count . 46) (avg-piece-length . 22.059) (avg-looseness . 0.0115) (looseness-sd . 0.014648776968288741) (looseness-variance . 0.00021458666666666668) (looses q 0.0287 -0.0071 0.0129 0.6289)) (bu h - (equal) (time . 9) (line-count . 4) (looseness-spread . 0.0358) (bps q 14 29 42) (piece-count . 46) (avg-piece-length . 22.059) (avg-looseness . 0.0115) (looseness-sd . 0.014648776968288741) (looseness-variance . 0.00021458666666666668) (looses q 0.0287 -0.0071 0.0129 0.6289)) (fh h - (equal) (time . 7) (line-count . 4) (looseness-spread . 0.0358) (bps q 16 33 49) (piece-count . 54) (avg-piece-length . 18.791) (avg-looseness . 0.0115) (looseness-sd . 0.014648776968288741) (looseness-variance . 0.00021458666666666668) (looses q 0.0287 -0.0071 0.0129 0.6289)) (fh-improved . 13) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "The cart creaked across the green, and disappeared round the corner by the rectory-house. The boy returned to the draw-well at the edge of the greensward, where he had left his buckets when he went to help his patron and teacher in the loading. There was a quiver in his lip now and after opening the well-cover to begin lowering the bucket he paused and leant with his forehead and arms against the framework, his face wearing the fixity of a thoughtful child’s who has felt the pricks of life somewhat before his time. The well into which he was looking was as ancient as the village itself, and from his present position appeared as a long circular perspective ending in a shining disk of quivering water at a distance of a hundred feet down. There was a lining of green moss near the top, and nearer still the hart’s-tongue fern.") (measure . 330) (bh h - (equal) (time . 36) (line-count . 12) (looseness-spread . 0.0533) (bps q 14 30 45 61 77 92 109 125 141 162 178) (piece-count . 184) (avg-piece-length . 18.36781249999998) (avg-looseness . 0.0147) (looseness-sd . 0.015631045607279747) (looseness-variance . 0.00024432958677685947) (looses q 0.046 0.0271 0.0158 0.0086 0.0061 -0.0053 0.0067 -0.0073 0.0348 0.0081 0.0215 0.5369)) (fu h - (equal) (time . 41) (line-count . 12) (looseness-spread . 0.0757) (bps q 12 27 40 55 68 80 94 109 121 135 149) (piece-count . 155) (avg-piece-length . 21.804370967741917) (avg-looseness . 0.0147) (looseness-sd . 0.020265648988513046) (looseness-variance . 0.00041069652892561983) (looses q 0.0057 0.0147 0.0684 0.0086 0.0061 -0.0053 0.0067 -0.0073 0.0348 0.0081 0.0215 0.5369)) (bu h - (equal) (time . 33) (line-count . 12) (looseness-spread . 0.0533) (bps q 11 26 40 55 68 80 94 109 121 135 149) (piece-count . 155) (avg-piece-length . 21.804370967741917) (avg-looseness . 0.0147) (looseness-sd . 0.015631045607279747) (looseness-variance . 0.00024432958677685947) (looses q 0.046 0.0271 0.0158 0.0086 0.0061 -0.0053 0.0067 -0.0073 0.0348 0.0081 0.0215 0.5369)) (fh h - (equal) (time . 41) (line-count . 12) (looseness-spread . 0.0757) (bps q 15 31 45 61 77 92 109 125 141 162 178) (piece-count . 184) (avg-piece-length . 18.36781249999998) (avg-looseness . 0.0147) (looseness-sd . 0.020265648988513046) (looseness-variance . 0.00041069652892561983) (looses q 0.0057 0.0147 0.0684 0.0086 0.0061 -0.0053 0.0067 -0.0073 0.0348 0.0081 0.0215 0.5369)) (fh-improved . 146) (bu-improved . 2) (bh-improved . 2)) c (h - (equal) (text u . "He said to himself, in the melodramatic tones of a whimsical boy, that the schoolmaster had drawn at that well scores of times on a morning like this, and would never draw there any more. “I’ve seen him look down into it, when he was tired with his drawing, just as I do now, and when he rested a bit before carrying the buckets home! But he was too clever to bide here any longer—a small sleepy place like this!”") (measure . 330) (bh h - (equal) (time . 37) (line-count . 6) (looseness-spread . 0.0307) (bps q 18 34 47 64 81) (piece-count . 93) (avg-piece-length . 18.083564516129027) (avg-looseness . 0.0383) (looseness-sd . 0.011234162185049672) (looseness-variance . 0.00012620640000000002) (looses q 0.0358 0.042 0.058 0.0282 0.0273 0.1544)) (fu h - (equal) (time . 26) (line-count . 6) (looseness-spread . 0.0307) (bps q 13 26 39 55 69) (piece-count . 81) (avg-piece-length . 20.762611111111113) (avg-looseness . 0.0383) (looseness-sd . 0.011234162185049672) (looseness-variance . 0.00012620640000000002) (looses q 0.0358 0.042 0.058 0.0282 0.0273 0.1544)) (bu h - (equal) (time . 16) (line-count . 6) (looseness-spread . 0.0307) (bps q 13 26 39 55 69) (piece-count . 81) (avg-piece-length . 20.762611111111113) (avg-looseness . 0.0383) (looseness-sd . 0.011234162185049672) (looseness-variance . 0.00012620640000000002) (looses q 0.0358 0.042 0.058 0.0282 0.0273 0.1544)) (fh h - (equal) (time . 11) (line-count . 6) (looseness-spread . 0.0307) (bps q 18 34 47 64 81) (piece-count . 93) (avg-piece-length . 18.083564516129027) (avg-looseness . 0.0383) (looseness-sd . 0.011234162185049672) (looseness-variance . 0.00012620640000000002) (looses q 0.0358 0.042 0.058 0.0282 0.0273 0.1544)) (fh-improved . 42) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "A tear rolled from his eye into the depths of the well. The morning was a little foggy, and the boy’s breathing unfurled itself as a thicker fog upon the still and heavy air. His thoughts were interrupted by a sudden outcry:") (measure . 330) (bh h - (equal) (time . 8) (line-count . 4) (looseness-spread . 0.0517) (bps q 16 31 46) (piece-count . 47) (avg-piece-length . 19.089265957446806) (avg-looseness . 0.0346) (looseness-sd . 0.02427788202367652) (looseness-variance . 0.0005894155555555556) (looses q 0.0172 0.0689 0.0176 0.9075)) (fu h - (equal) (time . 6) (line-count . 4) (looseness-spread . 0.1023) (bps q 16 29 41) (piece-count . 42) (avg-piece-length . 21.361797619047618) (avg-looseness . 0.0346) (looseness-sd . 0.044608245376337716) (looseness-variance . 0.0019898955555555553) (looses q -0.0055 0.0124 0.0968 0.9075)) (bu h - (equal) (time . 8) (line-count . 4) (looseness-spread . 0.0517) (bps q 15 28 41) (piece-count . 42) (avg-piece-length . 21.361797619047618) (avg-looseness . 0.0346) (looseness-sd . 0.02427788202367652) (looseness-variance . 0.0005894155555555556) (looses q 0.0172 0.0689 0.0176 0.9075)) (fh h - (equal) (time . 6) (line-count . 4) (looseness-spread . 0.1023) (bps q 17 32 46) (piece-count . 47) (avg-piece-length . 19.089265957446806) (avg-looseness . 0.0346) (looseness-sd . 0.044608245376337716) (looseness-variance . 0.0019898955555555553) (looses q -0.0055 0.0124 0.0968 0.9075)) (fh-improved . 9) (bu-improved . 2) (bh-improved . 2)) c (h - (equal) (text u . "It came from an old woman who had emerged from her door towards the garden gate of a green-thatched cottage not far off. The boy quickly waved a signal of assent, drew the water with what was a great effort for one of his stature, landed and emptied the big bucket into his own pair of smaller ones, and pausing a moment for breath, started with them across the patch of clammy greensward whereon the well stood—nearly in the centre of the little village, or rather hamlet of Marygreen.") (measure . 330) (bh h - (equal) (time . 19) (line-count . 7) (looseness-spread . 0.0531) (bps q 13 29 45 61 74 86) (piece-count . 101) (avg-piece-length . 19.84581188118812) (avg-looseness . 0.0117) (looseness-sd . 0.0174914899943436) (looseness-variance . 0.0003059522222222223) (looses q 0.0454 0.0174 0.0098 -0.0077 -0.0052 0.0103 0.2124)) (fu h - (equal) (time . 13) (line-count . 7) (looseness-spread . 0.0777) (bps q 14 27 42 57 69 81) (piece-count . 91) (avg-piece-length . 22.026670329670328) (avg-looseness . 0.0117) (looseness-sd . 0.02715275717532609) (looseness-variance . 0.0007372722222222225) (looses q -0.0072 0.07 0.0098 -0.0077 -0.0052 0.0103 0.2124)) (bu h - (equal) (time . 36) (line-count . 7) (looseness-spread . 0.0531) (bps q 13 27 42 57 69 81) (piece-count . 91) (avg-piece-length . 22.026670329670328) (avg-looseness . 0.0117) (looseness-sd . 0.0174914899943436) (looseness-variance . 0.0003059522222222223) (looses q 0.0454 0.0174 0.0098 -0.0077 -0.0052 0.0103 0.2124)) (fh h - (equal) (time . 12) (line-count . 7) (looseness-spread . 0.0777) (bps q 14 29 45 61 74 86) (piece-count . 101) (avg-piece-length . 19.84581188118812) (avg-looseness . 0.0117) (looseness-sd . 0.02715275717532609) (looseness-variance . 0.0007372722222222225) (looses q -0.0072 0.07 0.0098 -0.0077 -0.0052 0.0103 0.2124)) (fh-improved . 19) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "It was as old-fashioned as it was small, and it rested in the lap of an undulating upland adjoining the North Wessex downs. Old as it was, however, the well-shaft was probably the only relic of the local history that remained absolutely unchanged. Many of the thatched and dormered dwelling-houses had been pulled down of late years, and many trees felled on the green. Above all, the original church, hump-backed, wood-turreted, and quaintly hipped, had been taken down, and either cracked up into heaps of road-metal in the lane, or utilized as pig-sty walls, garden seats, guard-stones to fences, and rockeries in the flower-beds of the neighbourhood. In place of it a tall new building of modern Gothic design, unfamiliar to English eyes, had been erected on a new piece of ground by a certain obliterator of historic records who had run down from London and back in a day. The site whereon so long had stood the ancient temple to the Christian divinities was not even recorded on the green and level grass-plot that had immemorially been the churchyard, the obliterated graves being commemorated by eighteen-penny cast-iron crosses warranted to last five years.") (measure . 330) (bh h - (equal) (time . 74) (line-count . 17) (looseness-spread . 0.0966) (bps q 18 33 49 59 71 85 97 113 127 145 160 177 192 208 222 237) (piece-count . 248) (avg-piece-length . 19.40513709677419) (avg-looseness . 0.0482) (looseness-sd . 0.02371301066925075) (looseness-variance . 0.000562306875) (looses q 0.0758 0.0582 0.0894 0.0585 -0.0072 0.0324 0.0383 0.0547 0.0272 0.0258 0.0462 0.0776 0.0665 0.049 0.0226 0.0566 0.2251)) (fu h - (equal) (time . 47) (line-count . 17) (looseness-spread . 0.1324) (bps q 17 28 41 50 62 74 85 100 112 126 138 151 165 176 188 196) (piece-count . 206) (avg-piece-length . 23.361524271844665) (avg-looseness . 0.0531) (looseness-sd . 0.036950116288720934) (looseness-variance . 0.0013653110937499999) (looses q 0.0758 0.0582 0.0343 0.1235 -0.0072 0.0324 0.0383 0.0547 0.0272 0.0258 0.0462 0.0212 0.0644 0.1076 0.0226 0.1252 0.1668)) (bu h - (equal) (time . 65) (line-count . 17) (looseness-spread . 0.1017) (bps q 16 27 40 50 61 73 84 98 111 125 136 149 163 175 187 196) (piece-count . 206) (avg-piece-length . 23.361524271844665) (avg-looseness . 0.0522) (looseness-sd . 0.027654992203036324) (looseness-variance . 0.0007647985937499999) (looses q 0.1166 0.0794 0.0703 0.018 0.077 0.0549 0.0149 0.0676 0.0219 0.0444 0.0172 0.0484 0.0759 0.0539 0.0236 0.0514 0.1668)) (fh h - (equal) (time . 31) (line-count . 17) (looseness-spread . 0.1307) (bps q 18 33 50 59 71 85 97 113 127 145 160 178 193 208 222 237) (piece-count . 248) (avg-piece-length . 19.40513709677419) (avg-looseness . 0.0488) (looseness-sd . 0.03198616888594193) (looseness-variance . 0.001023115) (looses q 0.0758 0.0582 0.0343 0.1235 -0.0072 0.0324 0.0383 0.0547 0.0272 0.0258 0.0462 0.0212 0.0644 0.1076 0.0226 0.0566 0.2251)) (fh-improved . 287) (bu-improved . 18) (bh-improved . 3)) c (h - (equal) (text u . "Slender as was Jude Fawley’s frame he bore the two brimming house-buckets of water to the cottage without resting. Over the door was a little rectangular piece of blue board, on which was painted in yellow letters, “Drusilla Fawley, Baker.” Within the little lead panes of the window—this being one of the few old houses left—were five bottles of sweets, and three buns on a plate of the willow pattern.") (measure . 330) (bh h - (equal) (time . 18) (line-count . 6) (looseness-spread . 0.0628) (bps q 15 34 51 65 80) (piece-count . 92) (avg-piece-length . 17.89400000000001) (avg-looseness . 0.0293) (looseness-sd . 0.021788198640548512) (looseness-variance . 0.0004747256) (looses q 0.0447 -0.01 0.0251 0.034 0.0528 0.3555)) (fu h - (equal) (time . 26) (line-count . 6) (looseness-spread . 0.0628) (bps q 12 26 38 49 63) (piece-count . 73) (avg-piece-length . 22.551342465753432) (avg-looseness . 0.0293) (looseness-sd . 0.021788198640548512) (looseness-variance . 0.0004747256) (looses q 0.0447 -0.01 0.0251 0.034 0.0528 0.3555)) (bu h - (equal) (time . 16) (line-count . 6) (looseness-spread . 0.0628) (bps q 12 26 38 49 63) (piece-count . 73) (avg-piece-length . 22.551342465753432) (avg-looseness . 0.0293) (looseness-sd . 0.021788198640548512) (looseness-variance . 0.0004747256) (looses q 0.0447 -0.01 0.0251 0.034 0.0528 0.3555)) (fh h - (equal) (time . 11) (line-count . 6) (looseness-spread . 0.0628) (bps q 15 34 51 65 80) (piece-count . 92) (avg-piece-length . 17.89400000000001) (avg-looseness . 0.0293) (looseness-sd . 0.021788198640548512) (looseness-variance . 0.0004747256) (looses q 0.0447 -0.01 0.0251 0.034 0.0528 0.3555)) (fh-improved . 57) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "While emptying the buckets at the back of the house he could hear an animated conversation in progress within-doors between his great-aunt, the Drusilla of the sign-board, and some other villagers. Having seen the school-master depart, they were summing up particulars of the event, and indulging in predictions of his future.") (measure . 330) (bh h - (equal) (time . 13) (line-count . 5) (looseness-spread . 0.0453) (bps q 17 31 46 62) (piece-count . 71) (avg-piece-length . 19.119154929577466) (avg-looseness . 0.0229) (looseness-sd . 0.018302595444362527) (looseness-variance . 0.00033498499999999994) (looses q 0.038 0.0153 -0.0035 0.0418 0.4316)) (fu h - (equal) (time . 27) (line-count . 5) (looseness-spread . 0.0453) (bps q 14 24 37 48) (piece-count . 55) (avg-piece-length . 24.681090909090905) (avg-looseness . 0.0229) (looseness-sd . 0.018302595444362527) (looseness-variance . 0.00033498499999999994) (looses q 0.038 0.0153 -0.0035 0.0418 0.4316)) (bu h - (equal) (time . 11) (line-count . 5) (looseness-spread . 0.0453) (bps q 14 24 37 48) (piece-count . 55) (avg-piece-length . 24.681090909090905) (avg-looseness . 0.0229) (looseness-sd . 0.018302595444362527) (looseness-variance . 0.00033498499999999994) (looses q 0.038 0.0153 -0.0035 0.0418 0.4316)) (fh h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.0453) (bps q 17 31 46 62) (piece-count . 71) (avg-piece-length . 19.119154929577466) (avg-looseness . 0.0229) (looseness-sd . 0.018302595444362527) (looseness-variance . 0.00033498499999999994) (looses q 0.038 0.0153 -0.0035 0.0418 0.4316)) (fh-improved . 33) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since you was last this way.” The old inhabitant who answered was a tall, gaunt woman, who spoke tragically on the most trivial subject, and gave a phrase of her conversation to each auditor in turn. “He come from Mellstock, down in South Wessex, about a year ago—worse luck for ‘n, Belinda” (turning to the right) “where his father was living, and was took wi’ the shakings for death, and died in two days, as you know, Caroline” (turning to the left). “It would ha’ been a blessing if Goddy-mighty had took thee too, wi’ thy mother and father, poor useless boy! But I’ve got him here to stay with me till I can see what’s to be done with un, though I am obliged to let him earn any penny he can. Just now he’s a-scaring of birds for Farmer Troutham. It keeps him out of mischty. Why do ye turn away, Jude?” she continued, as the boy, feeling the impact of their glances like slaps upon his face, moved aside.") (measure . 330) (bh h - (equal) (time . 63) (line-count . 14) (looseness-spread . 0.0851) (bps q 12 27 43 60 74 89 105 122 136 153 169 184 201) (piece-count . 212) (avg-piece-length . 18.828971698113204) (avg-looseness . 0.0347) (looseness-sd . 0.023573274909117495) (looseness-variance . 0.0005556992899408285) (looses q 0.0849 0.0511 0.0166 0.0587 0.0307 0.0157 0.0249 0.0314 0.0244 0.0574 0.004 0.051 -0.0002 0.1692)) (fu h - (equal) (time . 43) (line-count . 14) (looseness-spread . 0.1082) (bps q 12 25 37 50 62 75 90 103 116 133 149 162 175) (piece-count . 187) (avg-piece-length . 21.34621390374331) (avg-looseness . 0.0395) (looseness-sd . 0.030707692307692307) (looseness-variance . 0.0009429623668639053) (looses q 0.0849 0.0511 0.0166 0.0587 0.0307 0.0157 0.0249 0.0314 0.0244 0.0574 0.004 0.1107 0.0025 0.1166)) (bu h - (equal) (time . 56) (line-count . 14) (looseness-spread . 0.0824) (bps q 12 25 37 50 62 75 90 103 116 133 148 162 175) (piece-count . 187) (avg-piece-length . 21.34621390374331) (avg-looseness . 0.0395) (looseness-sd . 0.023067110734401396) (looseness-variance . 0.0005320915976331361) (looses q 0.0849 0.0511 0.0166 0.0587 0.0307 0.0157 0.0249 0.0314 0.0244 0.0574 0.0706 0.0441 0.0025 0.1166)) (fh h - (equal) (time . 27) (line-count . 14) (looseness-spread . 0.0851) (bps q 12 27 43 60 74 89 105 122 136 153 169 184 201) (piece-count . 212) (avg-piece-length . 18.828971698113204) (avg-looseness . 0.0347) (looseness-sd . 0.023573274909117495) (looseness-variance . 0.0005556992899408285) (looses q 0.0849 0.0511 0.0166 0.0587 0.0307 0.0157 0.0249 0.0314 0.0244 0.0574 0.004 0.051 -0.0002 0.1692)) (fh-improved . 186) (bu-improved . 1) (bh-improved . 0)) c (h - (equal) (text u . "The local washerwoman replied that it was perhaps a very good plan of Miss or Mrs. Fawley’s (as they called her indifferently) to have him with her—”to kip ‘ee company in your loneliness, fetch water, shet the winder-shetters o’ nights, and help in the bit o’ baking.”") (measure . 330) (bh h - (equal) (time . 31) (line-count . 4) (looseness-spread . 0.0331) (bps q 15 31 47) (piece-count . 60) (avg-piece-length . 18.324483333333337) (avg-looseness . 0.0343) (looseness-sd . 0.013527995663314897) (looseness-variance . 0.00018300666666666666) (looses q 0.0504 0.0352 0.0173 0.2369)) (fu h - (equal) (time . 7) (line-count . 4) (looseness-spread . 0.0863) (bps q 13 26 38) (piece-count . 49) (avg-piece-length . 22.438142857142854) (avg-looseness . 0.0343) (looseness-sd . 0.03779967665940485) (looseness-variance . 0.0014288155555555555) (looses q 0.0149 0.0008 0.0871 0.2369)) (bu h - (equal) (time . 10) (line-count . 4) (looseness-spread . 0.0331) (bps q 12 25 38) (piece-count . 49) (avg-piece-length . 22.438142857142854) (avg-looseness . 0.0343) (looseness-sd . 0.013527995663314897) (looseness-variance . 0.00018300666666666666) (looses q 0.0504 0.0352 0.0173 0.2369)) (fh h - (equal) (time . 7) (line-count . 4) (looseness-spread . 0.0863) (bps q 16 32 47) (piece-count . 60) (avg-piece-length . 18.324483333333337) (avg-looseness . 0.0343) (looseness-sd . 0.03779967665940485) (looseness-variance . 0.0014288155555555555) (looses q 0.0149 0.0008 0.0871 0.2369)) (fh-improved . 18) (bu-improved . 2) (bh-improved . 2)) c (h - (equal) (text u . "Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a better one. The boy is crazy for books, that he is. It runs in our family rather. His cousin Sue is just the same—so I’ve heard; but I have not seen the child for years, though she was born in this place, within these four walls, as it happened. My niece and her husband, after they were married, didn’ get a house of their own for some year or more; and then they only had one till—Well, I won’t go into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the Fawleys to take that step any more. She, their only one, was like a child o’ my own, Belinda, till the split come! Ah, that a little maid should know such changes!”") (measure . 330) (bh h - (equal) (time . 58) (line-count . 12) (looseness-spread . 0.0588) (bps q 15 32 48 65 81 95 110 126 140 155 172) (piece-count . 177) (avg-piece-length . 18.84115819209039) (avg-looseness . 0.0265) (looseness-sd . 0.019928251468996728) (looseness-variance . 0.00039713520661157026) (looses q 0.0173 0.032 -0.0002 0.011 0.0527 0.0454 -0.0038 0.0118 0.055 0.0441 0.0257 0.5399)) (fu h - (equal) (time . 21) (line-count . 12) (looseness-spread . 0.0588) (bps q 12 25 38 54 70 84 96 112 126 140 156) (piece-count . 161) (avg-piece-length . 20.713571428571417) (avg-looseness . 0.0265) (looseness-sd . 0.019928251468996728) (looseness-variance . 0.00039713520661157026) (looses q 0.0173 0.032 -0.0002 0.011 0.0527 0.0454 -0.0038 0.0118 0.055 0.0441 0.0257 0.5399)) (bu h - (equal) (time . 49) (line-count . 12) (looseness-spread . 0.0588) (bps q 12 25 38 54 70 84 96 112 126 140 156) (piece-count . 161) (avg-piece-length . 20.713571428571417) (avg-looseness . 0.0265) (looseness-sd . 0.019928251468996728) (looseness-variance . 0.00039713520661157026) (looses q 0.0173 0.032 -0.0002 0.011 0.0527 0.0454 -0.0038 0.0118 0.055 0.0441 0.0257 0.5399)) (fh h - (equal) (time . 22) (line-count . 12) (looseness-spread . 0.0588) (bps q 15 32 48 65 81 95 110 126 140 155 172) (piece-count . 177) (avg-piece-length . 18.84115819209039) (avg-looseness . 0.0265) (looseness-sd . 0.019928251468996728) (looseness-variance . 0.00039713520661157026) (looses q 0.0173 0.032 -0.0002 0.011 0.0527 0.0454 -0.0038 0.0118 0.055 0.0441 0.0257 0.5399)) (fh-improved . 126) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Jude, finding the general attention again centering on himself, went out to the bakehouse, where he ate the cake provided for his breakfast. The end of his spare time had now arrived, and emerging from the garden by getting over the hedge at the back he pursued a path northward, till he came to a wide and lonely depression in the general level of the upland, which was sown as a corn-field. This vast concave was the scene of his labours for Mr Troutham the farmer, and he descended into the midst of it.") (measure . 330) (bh h - (equal) (time . 22) (line-count . 8) (looseness-spread . 0.0264) (bps q 17 33 49 66 82 98 110) (piece-count . 111) (avg-piece-length . 18.720445945945947) (avg-looseness . 0.0198) (looseness-sd . 0.008576784041224072) (looseness-variance . 7.356122448979592e-05) (looses q 0.0155 0.0156 0.0029 0.0279 0.022 0.0255 0.0293 0.9428)) (fu h - (equal) (time . 14) (line-count . 8) (looseness-spread . 0.0264) (bps q 11 24 38 52 66 81 93) (piece-count . 94) (avg-piece-length . 22.1060585106383) (avg-looseness . 0.0198) (looseness-sd . 0.008576784041224072) (looseness-variance . 7.356122448979592e-05) (looses q 0.0155 0.0156 0.0029 0.0279 0.022 0.0255 0.0293 0.9428)) (bu h - (equal) (time . 19) (line-count . 8) (looseness-spread . 0.0264) (bps q 11 24 38 52 66 81 93) (piece-count . 94) (avg-piece-length . 22.1060585106383) (avg-looseness . 0.0198) (looseness-sd . 0.008576784041224072) (looseness-variance . 7.356122448979592e-05) (looses q 0.0155 0.0156 0.0029 0.0279 0.022 0.0255 0.0293 0.9428)) (fh h - (equal) (time . 32) (line-count . 8) (looseness-spread . 0.0264) (bps q 17 33 49 66 82 98 110) (piece-count . 111) (avg-piece-length . 18.720445945945947) (avg-looseness . 0.0198) (looseness-sd . 0.008576784041224072) (looseness-variance . 7.356122448979592e-05) (looses q 0.0155 0.0156 0.0029 0.0279 0.022 0.0255 0.0293 0.9428)) (fh-improved . 90) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "The brown surface of the field went right up towards the sky all round, where it was lost by degrees in the mist that shut out the actual verge and accentuated the solitude. The only marks on the uniformity of the scene were a rick of last year’s produce standing in the midst of the arable, the rooks that rose at his approach, and the path athwart the fallow by which he had come, trodden now by he hardly knew whom, though once by many of his own dead family.") (measure . 330) (bh h - (equal) (time . 21) (line-count . 7) (looseness-spread . 0.0415) (bps q 15 30 47 63 76 91) (piece-count . 100) (avg-piece-length . 18.930609999999998) (avg-looseness . 0.0482) (looseness-sd . 0.016126212271399078) (looseness-variance . 0.0002600547222222222) (looses q 0.0299 0.0455 0.0273 0.0688 0.0669 0.0509 0.3847)) (fu h - (equal) (time . 12) (line-count . 7) (looseness-spread . 0.0415) (bps q 14 29 41 55 68 81) (piece-count . 90) (avg-piece-length . 21.034011111111102) (avg-looseness . 0.0482) (looseness-sd . 0.016126212271399078) (looseness-variance . 0.0002600547222222222) (looses q 0.0299 0.0455 0.0273 0.0688 0.0669 0.0509 0.3847)) (bu h - (equal) (time . 36) (line-count . 7) (looseness-spread . 0.0415) (bps q 14 29 41 55 68 81) (piece-count . 90) (avg-piece-length . 21.034011111111102) (avg-looseness . 0.0482) (looseness-sd . 0.016126212271399078) (looseness-variance . 0.0002600547222222222) (looses q 0.0299 0.0455 0.0273 0.0688 0.0669 0.0509 0.3847)) (fh h - (equal) (time . 13) (line-count . 7) (looseness-spread . 0.0621) (bps q 15 30 47 63 77 91) (piece-count . 100) (avg-piece-length . 18.930609999999998) (avg-looseness . 0.0466) (looseness-sd . 0.023027785149442596) (looseness-variance . 0.000530278888888889) (looses q 0.0299 0.0455 0.0273 0.0688 0.0229 0.085 0.3847)) (fh-improved . 35) (bu-improved . 0) (bh-improved . 1)) c (h - (equal) (text u . "The fresh harrow-lines seemed to stretch like the channellings in a piece of new corduroy, lending a meanly utilitarian air to the expanse, taking away its gradations, and depriving it of all history beyond that of the few recent months, though to every clod and stone there really attached associations enough and to spare—echoes of songs from ancient harvest-days, of spoken words, and of sturdy deeds. Every inch of ground had been the site, first or last, of energy, gaiety, horse-play, bickerings, weariness. Groups of gleaners had squatted in the sun on every square yard. Love-matches that had populated the adjoining hamlet had been made up there between reaping and carrying. Under the hedge which divided the field from a distant plantation girls had given themselves to lovers who would not turn their heads to look at them by the next harvest; and in that ancient cornfield many a man had made love-promises to a woman at whose voice he had trembled by the next seed-time after fulfilling them in the church adjoining. But this neither Jude nor the rooks around him considered. For them it was a lonely place, possessing, in the one view, only the quality of a work-ground, and in the other that of a granary good to feed in.") (measure . 330) (bh h - (equal) (time . 55) (line-count . 18) (looseness-spread . 0.0684) (bps q 15 32 50 62 76 90 106 121 136 150 166 181 195 211 227 243 260) (piece-count . 267) (avg-piece-length . 19.004589887640453) (avg-looseness . 0.0275) (looseness-sd . 0.019789272197775414) (looseness-variance . 0.000391615294117647) (looses q -0.0016 0.0668 0.0096 0.0069 0.0532 0.03 0.0372 0.028 0.0326 0.0394 0.0178 0.04 0.0151 0.0192 0.061 -0.0004 0.0127 0.6207)) (fu h - (equal) (time . 54) (line-count . 18) (looseness-spread . 0.1103) (bps q 13 25 39 50 61 74 86 98 109 120 132 146 158 172 184 197 212) (piece-count . 220) (avg-piece-length . 23.064661363636375) (avg-looseness . 0.0378) (looseness-sd . 0.033795529075117736) (looseness-variance . 0.001142137785467128) (looses q -0.0016 0.0252 0.0031 0.0641 -0.0038 0.0387 0.0958 0.028 0.0326 0.0394 0.0178 0.0956 0.1039 0.0291 0.0263 0.0556 -0.0064 0.4756)) (bu h - (equal) (time . 67) (line-count . 18) (looseness-spread . 0.1126) (bps q 13 25 38 50 61 74 86 98 109 120 131 146 158 171 183 196 210) (piece-count . 220) (avg-piece-length . 23.064661363636375) (avg-looseness . 0.0425) (looseness-sd . 0.034620896943757994) (looseness-variance . 0.0011986065051903115) (looses q -0.0016 0.0252 0.0603 0.0069 -0.0038 0.0387 0.0958 0.028 0.0326 0.0394 0.0533 0.0601 0.1039 0.1017 0.024 0.0663 -0.0087 0.3883)) (fh h - (equal) (time . 33) (line-count . 18) (looseness-spread . 0.0996) (bps q 15 33 51 62 77 91 106 121 136 150 166 181 195 211 227 243 260) (piece-count . 267) (avg-piece-length . 19.004589887640453) (avg-looseness . 0.0286) (looseness-sd . 0.02577671221730118) (looseness-variance . 0.000664438892733564) (looses q -0.0016 0.0252 0.0031 0.0641 -0.0038 0.0387 0.0958 0.028 0.0326 0.0394 0.0178 0.04 0.0151 0.0192 0.061 -0.0004 0.0127 0.6207)) (fh-improved . 449) (bu-improved . 7) (bh-improved . 4)) c (h - (equal) (text u . "The boy stood under the rick before mentioned, and every few seconds used his clacker or rattle briskly. At each clack the rooks left off pecking, and rose and went away on their leisurely wings, burnished like tassets of mail, afterwards wheeling back and regarding him warily, and descending to feed at a more respectful distance.") (measure . 330) (bh h - (equal) (time . 13) (line-count . 5) (looseness-spread . 0.0353) (bps q 14 30 45 59) (piece-count . 69) (avg-piece-length . 19.823999999999995) (avg-looseness . 0.0106) (looseness-sd . 0.01271937498464449) (looseness-variance . 0.00016178250000000003) (looses q 0.0148 0.0091 -0.0085 0.0268 0.446)) (fu h - (equal) (time . 28) (line-count . 5) (looseness-spread . 0.1596) (bps q 12 26 39 48) (piece-count . 56) (avg-piece-length . 24.42600000000001) (avg-looseness . 0.0416) (looseness-sd . 0.06378625929618385) (looseness-variance . 0.0040686868750000015) (looses q 0.0148 0.0091 -0.0085 0.1511 0.3316)) (bu h - (equal) (time . 11) (line-count . 5) (looseness-spread . 0.1249) (bps q 12 25 37 48) (piece-count . 56) (avg-piece-length . 24.42600000000001) (avg-looseness . 0.0398) (looseness-sd . 0.05069529070830938) (looseness-variance . 0.0025700124999999993) (looses q 0.0148 0.1271 0.0022 0.0149 0.3316)) (fh h - (equal) (time . 9) (line-count . 5) (looseness-spread . 0.0353) (bps q 14 30 45 59) (piece-count . 69) (avg-piece-length . 19.823999999999995) (avg-looseness . 0.0106) (looseness-sd . 0.01271937498464449) (looseness-variance . 0.00016178250000000003) (looses q 0.0148 0.0091 -0.0085 0.0268 0.446)) (fh-improved . 23) (bu-improved . 3) (bh-improved . 0)) c (h - (equal) (text u . "He sounded the clacker till his arm ached, and at length his heart grew sympathetic with the birds’ thwarted desires. They seemed, like himself, to be living in a world which did not want them. Why should he frighten them away? They took upon more and more the aspect of gentle friends and pensioners—the only friends he could claim as being in the least degree interested in him, for his aunt had often told him that she was not. He ceased his rattling, and they alighted anew.") (measure . 330) (bh h - (equal) (time . 19) (line-count . 7) (looseness-spread . 0.0511) (bps q 14 27 43 57 72 87) (piece-count . 97) (avg-piece-length . 20.275092783505155) (avg-looseness . 0.0212) (looseness-sd . 0.0211031922282441) (looseness-variance . 0.0004453447222222222) (looses q 0.0253 -0.0025 0.0022 0.0053 0.0482 0.0486 0.3011)) (fu h - (equal) (time . 31) (line-count . 7) (looseness-spread . 0.0511) (bps q 14 24 39 52 65 79) (piece-count . 88) (avg-piece-length . 22.34868181818182) (avg-looseness . 0.0212) (looseness-sd . 0.0211031922282441) (looseness-variance . 0.0004453447222222222) (looses q 0.0253 -0.0025 0.0022 0.0053 0.0482 0.0486 0.3011)) (bu h - (equal) (time . 18) (line-count . 7) (looseness-spread . 0.0511) (bps q 14 24 39 52 65 79) (piece-count . 88) (avg-piece-length . 22.34868181818182) (avg-looseness . 0.0212) (looseness-sd . 0.0211031922282441) (looseness-variance . 0.0004453447222222222) (looses q 0.0253 -0.0025 0.0022 0.0053 0.0482 0.0486 0.3011)) (fh h - (equal) (time . 12) (line-count . 7) (looseness-spread . 0.0511) (bps q 14 27 43 57 72 87) (piece-count . 97) (avg-piece-length . 20.275092783505155) (avg-looseness . 0.0212) (looseness-sd . 0.0211031922282441) (looseness-variance . 0.0004453447222222222) (looses q 0.0253 -0.0025 0.0022 0.0053 0.0482 0.0486 0.3011)) (fh-improved . 27) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— you shall. There is enough for us all. Farmer Troutham can afford to let you have some. Eat, then my dear little birdies, and make a good meal!”") (measure . 330) (bh h - (equal) (time . 8) (line-count . 3) (looseness-spread . 0.0022) (bps q 13 27) (piece-count . 42) (avg-piece-length . 21.47077380952381) (avg-looseness . 0.0123) (looseness-sd . 0.0011000000000000003) (looseness-variance . 1.2100000000000007e-06) (looses q 0.0134 0.0112 0.0212)) (fu h - (equal) (time . 22) (line-count . 3) (looseness-spread . 0.0022) (bps q 11 25) (piece-count . 39) (avg-piece-length . 23.122371794871793) (avg-looseness . 0.0123) (looseness-sd . 0.0011000000000000003) (looseness-variance . 1.2100000000000007e-06) (looses q 0.0134 0.0112 0.0212)) (bu h - (equal) (time . 7) (line-count . 3) (looseness-spread . 0.0022) (bps q 11 25) (piece-count . 39) (avg-piece-length . 23.122371794871793) (avg-looseness . 0.0123) (looseness-sd . 0.0011000000000000003) (looseness-variance . 1.2100000000000007e-06) (looses q 0.0134 0.0112 0.0212)) (fh h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.0022) (bps q 13 27) (piece-count . 42) (avg-piece-length . 21.47077380952381) (avg-looseness . 0.0123) (looseness-sd . 0.0011000000000000003) (looseness-variance . 1.2100000000000007e-06) (looses q 0.0134 0.0112 0.0212)) (fh-improved . 4) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "They stayed and ate, inky spots on the nut-brown soil, and Jude enjoyed their appetite. A magic thread of fellow-feeling united his own life with theirs. Puny and sorry as those lives were, they much resembled his own.") (measure . 330) (bh h - (equal) (time . 9) (line-count . 3) (looseness-spread . 0.0167) (bps q 14 29) (piece-count . 42) (avg-piece-length . 21.34755952380953) (avg-looseness . 0.0116) (looseness-sd . 0.00835) (looseness-variance . 6.97225e-05) (looses q 0.0033 0.02 -0.0041)) (fu h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0167) (bps q 14 27) (piece-count . 39) (avg-piece-length . 22.989679487179494) (avg-looseness . 0.0116) (looseness-sd . 0.00835) (looseness-variance . 6.97225e-05) (looses q 0.0033 0.02 -0.0041)) (bu h - (equal) (time . 7) (line-count . 3) (looseness-spread . 0.0167) (bps q 14 27) (piece-count . 39) (avg-piece-length . 22.989679487179494) (avg-looseness . 0.0116) (looseness-sd . 0.00835) (looseness-variance . 6.97225e-05) (looses q 0.0033 0.02 -0.0041)) (fh h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.0167) (bps q 14 29) (piece-count . 42) (avg-piece-length . 21.34755952380953) (avg-looseness . 0.0116) (looseness-sd . 0.00835) (looseness-variance . 6.97225e-05) (looses q 0.0033 0.02 -0.0041)) (fh-improved . 2) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "His clacker he had by this time thrown away from him, as being a mean and sordid instrument, offensive both to the birds and to himself as their friend. All at once he became conscious of a smart blow upon his buttocks, followed by a loud clack, which announced to his surprised senses that the clacker had been the instrument of offence used. The birds and Jude started up simultaneously, and the dazed eyes of the latter beheld the farmer in person, the great Troutham himself, his red face glaring down upon Jude’s cowering frame, the clacker swinging in his hand.") (measure . 330) (bh h - (equal) (time . 43) (line-count . 8) (looseness-spread . 0.0499) (bps q 15 32 47 61 75 91 106) (piece-count . 120) (avg-piece-length . 19.57299999999999) (avg-looseness . 0.0191) (looseness-sd . 0.0178650039839609) (looseness-variance . 0.0003191583673469388) (looses q 0.0169 -0.0022 0.0473 -0.0026 0.0106 0.0245 0.0393 0.0637)) (fu h - (equal) (time . 34) (line-count . 9) (looseness-spread . 0.1053) (bps q 15 28 41 52 64 76 88 99) (piece-count . 101) (avg-piece-length . 23.255049504950488) (avg-looseness . 0.0418) (looseness-sd . 0.031348763930975014) (looseness-variance . 0.000982745) (looses q 0.0169 -0.0022 0.1031 0.0489 0.0491 0.0704 0.0242 0.024 0.8806)) (bu h - (equal) (time . 22) (line-count . 9) (looseness-spread . 0.0549) (bps q 15 27 41 52 64 76 88 99) (piece-count . 101) (avg-piece-length . 23.255049504950488) (avg-looseness . 0.0418) (looseness-sd . 0.020092162651143358) (looseness-variance . 0.0004036950000000001) (looses q 0.0169 0.0718 0.0291 0.0489 0.0491 0.0704 0.0242 0.024 0.8806)) (fh h - (equal) (time . 16) (line-count . 8) (looseness-spread . 0.0499) (bps q 15 32 47 61 75 91 106) (piece-count . 120) (avg-piece-length . 19.57299999999999) (avg-looseness . 0.0191) (looseness-sd . 0.0178650039839609) (looseness-variance . 0.0003191583673469388) (looses q 0.0169 -0.0022 0.0473 -0.0026 0.0106 0.0245 0.0393 0.0637)) (fh-improved . 63) (bu-improved . 1) (bh-improved . 0)) c (h - (equal) (text u . "“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear birdies,’ indeed! I’ll tickle your breeches, and see if you say, ‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s how you earn your sixpence a day for keeping the rooks off my corn!”") (measure . 330) (bh h - (equal) (time . 29) (line-count . 5) (looseness-spread . 0.0619) (bps q 13 26 40 54) (piece-count . 65) (avg-piece-length . 20.546430769230764) (avg-looseness . 0.0667) (looseness-sd . 0.0249602684280438) (looseness-variance . 0.000623015) (looses q 0.0991 0.0372 0.0821 0.0484 0.3577)) (fu h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.0619) (bps q 13 26 38 50) (piece-count . 60) (avg-piece-length . 22.25863333333333) (avg-looseness . 0.0788) (looseness-sd . 0.02486939635375173) (looseness-variance . 0.000618486875) (looses q 0.0991 0.0372 0.0821 0.0967 0.3193)) (bu h - (equal) (time . 12) (line-count . 5) (looseness-spread . 0.0619) (bps q 13 26 38 50) (piece-count . 60) (avg-piece-length . 22.25863333333333) (avg-looseness . 0.0788) (looseness-sd . 0.02486939635375173) (looseness-variance . 0.000618486875) (looses q 0.0991 0.0372 0.0821 0.0967 0.3193)) (fh h - (equal) (time . 9) (line-count . 5) (looseness-spread . 0.0619) (bps q 13 26 40 54) (piece-count . 65) (avg-piece-length . 20.546430769230764) (avg-looseness . 0.0667) (looseness-sd . 0.0249602684280438) (looseness-variance . 0.000623015) (looses q 0.0991 0.0372 0.0821 0.0484 0.3577)) (fh-improved . 6) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham had seized his left hand with his own left, and swinging his slim frame round him at arm’s-length, again struck Jude on the hind parts with the flat side of Jude’s own rattle, till the field echoed with the blows, which were delivered once or twice at each revolution.") (measure . 330) (bh h - (equal) (time . 12) (line-count . 5) (looseness-spread . 0.0274) (bps q 11 26 40 55) (piece-count . 67) (avg-piece-length . 20.503298507462688) (avg-looseness . 0.0256) (looseness-sd . 0.01140054823243163) (looseness-variance . 0.00012997249999999996) (looses q 0.0394 0.0341 0.012 0.0171 0.3448)) (fu h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.0274) (bps q 9 23 37 51) (piece-count . 59) (avg-piece-length . 23.283406779661018) (avg-looseness . 0.0256) (looseness-sd . 0.01140054823243163) (looseness-variance . 0.00012997249999999996) (looses q 0.0394 0.0341 0.012 0.0171 0.3448)) (bu h - (equal) (time . 13) (line-count . 5) (looseness-spread . 0.0274) (bps q 9 23 37 51) (piece-count . 59) (avg-piece-length . 23.283406779661018) (avg-looseness . 0.0256) (looseness-sd . 0.01140054823243163) (looseness-variance . 0.00012997249999999996) (looses q 0.0394 0.0341 0.012 0.0171 0.3448)) (fh h - (equal) (time . 9) (line-count . 5) (looseness-spread . 0.0274) (bps q 11 26 40 55) (piece-count . 67) (avg-piece-length . 20.503298507462688) (avg-looseness . 0.0256) (looseness-sd . 0.01140054823243163) (looseness-variance . 0.00012997249999999996) (looses q 0.0394 0.0341 0.012 0.0171 0.3448)) (fh-improved . 12) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as helpless under the centrifugal tendency of his person as a hooked fish swinging to land, and beholding the hill, the rick, the plantation, the path, and the rooks going round and round him in an amazing circular race. “I—I sir—only meant that—there was a good crop in the ground—I saw ‘em sow it—and the rooks could have a little bit for dinner—and you wouldn’t miss it, sir—and Mr. Phillotson said I was to be kind to ‘em—oh, oh, oh!”") (measure . 330) (bh h - (equal) (time . 43) (line-count . 8) (looseness-spread . 0.0461) (bps q 13 30 46 62 77 94 110) (piece-count . 112) (avg-piece-length . 17.802) (avg-looseness . 0.0348) (looseness-sd . 0.017237311216056397) (looseness-variance . 0.0002971248979591837) (looses q 0.0263 0.0284 0.0526 0.0207 0.0537 0.0539 0.0078 0.8462)) (fu h - (equal) (time . 14) (line-count . 8) (looseness-spread . 0.1133) (bps q 12 25 38 51 66 80 95) (piece-count . 97) (avg-piece-length . 20.554886597938147) (avg-looseness . 0.0343) (looseness-sd . 0.035851627350421196) (looseness-variance . 0.0012853391836734694) (looses q 0.0263 -0.0071 0.0355 0.0617 0.0099 0.1062 0.0078 0.8462)) (bu h - (equal) (time . 19) (line-count . 8) (looseness-spread . 0.0461) (bps q 12 24 37 50 65 80 95) (piece-count . 97) (avg-piece-length . 20.554886597938147) (avg-looseness . 0.0348) (looseness-sd . 0.017237311216056397) (looseness-variance . 0.0002971248979591837) (looses q 0.0263 0.0284 0.0526 0.0207 0.0537 0.0539 0.0078 0.8462)) (fh h - (equal) (time . 14) (line-count . 8) (looseness-spread . 0.1133) (bps q 13 31 47 63 78 94 110) (piece-count . 112) (avg-piece-length . 17.802) (avg-looseness . 0.0343) (looseness-sd . 0.035851627350421196) (looseness-variance . 0.0012853391836734694) (looses q 0.0263 -0.0071 0.0355 0.0617 0.0099 0.1062 0.0078 0.8462)) (fh-improved . 69) (bu-improved . 4) (bh-improved . 4)) c (h - (equal) (text u . "This truthful explanation seemed to exasperate the farmer even more than if Jude had stoutly denied saying anything at all, and he still smacked the whirling urchin, the clacks of the instrument continuing to resound all across the field and as far as the ears of distant workers—who gathered thereupon that Jude was pursuing his business of clacking with great assiduity—and echoing from the brand-new church tower just behind the mist, towards the building of which structure the farmer had largely subscribed, to testify his love for God and man.") (measure . 330) (bh h - (equal) (time . 22) (line-count . 8) (looseness-spread . 0.1165) (bps q 15 30 45 61 78 91 105) (piece-count . 116) (avg-piece-length . 19.530073275862062) (avg-looseness . 0.0295) (looseness-sd . 0.03709765931336655) (looseness-variance . 0.001376236326530612) (looses q 0.0398 0.1089 0.0095 0.0457 0.0039 -0.0076 0.0065 0.2525)) (fu h - (equal) (time . 14) (line-count . 8) (looseness-spread . 0.1165) (bps q 10 23 34 48 59 71 83) (piece-count . 92) (avg-piece-length . 24.624875) (avg-looseness . 0.0295) (looseness-sd . 0.03709765931336655) (looseness-variance . 0.001376236326530612) (looses q 0.0398 0.1089 0.0095 0.0457 0.0039 -0.0076 0.0065 0.2525)) (bu h - (equal) (time . 20) (line-count . 8) (looseness-spread . 0.1165) (bps q 10 23 34 48 59 71 83) (piece-count . 92) (avg-piece-length . 24.624875) (avg-looseness . 0.0295) (looseness-sd . 0.03709765931336655) (looseness-variance . 0.001376236326530612) (looses q 0.0398 0.1089 0.0095 0.0457 0.0039 -0.0076 0.0065 0.2525)) (fh h - (equal) (time . 31) (line-count . 8) (looseness-spread . 0.1165) (bps q 15 30 45 61 78 91 105) (piece-count . 116) (avg-piece-length . 19.530073275862062) (avg-looseness . 0.0295) (looseness-sd . 0.03709765931336655) (looseness-variance . 0.001376236326530612) (looses q 0.0398 0.1089 0.0095 0.0457 0.0039 -0.0076 0.0065 0.2525)) (fh-improved . 97) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Presently Troutham grew tired of his punitive task, and depositing the quivering boy on his legs, took a sixpence from his pocket and gave it him in payment for his day’s work, telling him to go home and never let him see him in one of those fields again.") (measure . 330) (bh h - (equal) (time . 10) (line-count . 4) (looseness-spread . 0.0368) (bps q 13 30 46) (piece-count . 55) (avg-piece-length . 18.821527272727277) (avg-looseness . 0.0287) (looseness-sd . 0.015069689962157667) (looseness-variance . 0.00022709555555555552) (looses q 0.027 0.0479 0.0111 0.4541)) (fu h - (equal) (time . 7) (line-count . 4) (looseness-spread . 0.0368) (bps q 11 25 40) (piece-count . 49) (avg-piece-length . 21.126204081632654) (avg-looseness . 0.0287) (looseness-sd . 0.015069689962157667) (looseness-variance . 0.00022709555555555552) (looses q 0.027 0.0479 0.0111 0.4541)) (bu h - (equal) (time . 10) (line-count . 4) (looseness-spread . 0.0368) (bps q 11 25 40) (piece-count . 49) (avg-piece-length . 21.126204081632654) (avg-looseness . 0.0287) (looseness-sd . 0.015069689962157667) (looseness-variance . 0.00022709555555555552) (looses q 0.027 0.0479 0.0111 0.4541)) (fh h - (equal) (time . 29) (line-count . 4) (looseness-spread . 0.0368) (bps q 13 30 46) (piece-count . 55) (avg-piece-length . 18.821527272727277) (avg-looseness . 0.0287) (looseness-sd . 0.015069689962157667) (looseness-variance . 0.00022709555555555552) (looses q 0.027 0.0479 0.0111 0.4541)) (fh-improved . 13) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Jude leaped out of arm’s reach, and walked along the trackway weeping—not from the pain, though that was keen enough; not from the perception of the flaw in the terrestrial scheme, by which what was good for God’s birds was bad for God’s gardener; but with the awful sense that he had wholly disgraced himself before he had been a year in the parish, and hence might be a burden to his great-aunt for life.") (measure . 330) (bh h - (equal) (time . 35) (line-count . 6) (looseness-spread . 0.0664) (bps q 13 26 43 57 73) (piece-count . 87) (avg-piece-length . 19.24425862068965) (avg-looseness . 0.0422) (looseness-sd . 0.023007181487526892) (looseness-variance . 0.0005293304000000001) (looses q 0.0548 0.0645 -0.0019 0.046 0.0478 0.1627)) (fu h - (equal) (time . 10) (line-count . 6) (looseness-spread . 0.1458) (bps q 11 24 37 50 64) (piece-count . 77) (avg-piece-length . 21.743512987012977) (avg-looseness . 0.0442) (looseness-sd . 0.052158504579790245) (looseness-variance . 0.0027205096) (looses q 0.1375 -0.0083 -0.0019 0.046 0.0478 0.1627)) (bu h - (equal) (time . 16) (line-count . 6) (looseness-spread . 0.1458) (bps q 11 24 37 50 64) (piece-count . 77) (avg-piece-length . 21.743512987012977) (avg-looseness . 0.0442) (looseness-sd . 0.052158504579790245) (looseness-variance . 0.0027205096) (looses q 0.1375 -0.0083 -0.0019 0.046 0.0478 0.1627)) (fh h - (equal) (time . 11) (line-count . 6) (looseness-spread . 0.0584) (bps q 13 27 44 58 74) (piece-count . 87) (avg-piece-length . 19.24425862068965) (avg-looseness . 0.0211) (looseness-sd . 0.020196989874731335) (looseness-variance . 0.00040791840000000003) (looses q 0.0548 0.0084 -0.0036 0.0308 0.0149 0.2659)) (fh-improved . 30) (bu-improved . 0) (bh-improved . 4)) c (h - (equal) (text u . "With this shadow on his mind he did not care to show himself in the village, and went homeward by a roundabout track behind a high hedge and across a pasture. Here he beheld scores of coupled earthworms lying half their length on the surface of the damp ground, as they always did in such weather at that time of the year. It was impossible to advance in regular steps without crushing some of them at each tread.") (measure . 330) (bh h - (equal) (time . 17) (line-count . 6) (looseness-spread . 0.057) (bps q 17 31 46 61 78) (piece-count . 92) (avg-piece-length . 18.551874999999995) (avg-looseness . 0.0195) (looseness-sd . 0.018683939627391222) (looseness-variance . 0.0003490896) (looses q 0.0133 0.0495 -0.0075 0.0271 0.015 0.1949)) (fu h - (equal) (time . 10) (line-count . 6) (looseness-spread . 0.0652) (bps q 15 27 39 54 68) (piece-count . 78) (avg-piece-length . 21.881698717948716) (avg-looseness . 0.0215) (looseness-sd . 0.027666629718850828) (looseness-variance . 0.0007654423999999999) (looses q 0.0576 0.0151 -0.0075 -0.0076 0.0497 0.1949)) (bu h - (equal) (time . 16) (line-count . 6) (looseness-spread . 0.0651) (bps q 15 27 39 53 68) (piece-count . 78) (avg-piece-length . 21.881698717948716) (avg-looseness . 0.0215) (looseness-sd . 0.021254514814504705) (looseness-variance . 0.00045175439999999993) (looses q 0.0576 0.0151 -0.0075 0.0271 0.015 0.1949)) (fh h - (equal) (time . 28) (line-count . 6) (looseness-spread . 0.0621) (bps q 17 32 47 62 78) (piece-count . 92) (avg-piece-length . 18.551874999999995) (avg-looseness . 0.0195) (looseness-sd . 0.02718267095044194) (looseness-variance . 0.0007388976000000001) (looses q 0.0133 -0.0094 -0.0089 0.0527 0.0497 0.1949)) (fh-improved . 33) (bu-improved . 1) (bh-improved . 3)) c (h - (equal) (text u . "Though Farmer Troutham had just hurt him, he was a boy who could not himself bear to hurt anything. He had never brought home a nest of young birds without lying awake in misery half the night after, and often reinstating them and the nest in their original place the next morning. He could scarcely bear to see trees cut down or lopped, from a fancy that it hurt them; and late pruning, when the sap was up and the tree bled profusely, had been a positive grief to him in his infancy. This weakness of character, as it may be called, suggested that he was the sort of man who was born to ache a good deal before the fall of the curtain upon his unnecessary life should signify that all was well with him again. He carefully picked his way on tiptoe among the earthworms, without killing a single one.") (measure . 330) (bh h - (equal) (time . 55) (line-count . 12) (looseness-spread . 0.0527) (bps q 13 29 44 61 76 92 109 127 144 160 175) (piece-count . 177) (avg-piece-length . 18.446454802259886) (avg-looseness . 0.0203) (looseness-sd . 0.016266768843105916) (looseness-variance . 0.0002646077685950413) (looses q 0.0365 0.0126 0.0058 0.0432 -0.0091 0.0436 0.0112 0.0317 0.0162 0.0065 0.0255 0.8586)) (fu h - (equal) (time . 21) (line-count . 12) (looseness-spread . 0.0845) (bps q 13 27 40 52 67 82 95 110 126 138 149) (piece-count . 151) (avg-piece-length . 21.62266556291391) (avg-looseness . 0.0233) (looseness-sd . 0.024215977240636156) (looseness-variance . 0.0005864135537190083) (looses q 0.0365 0.0126 0.0058 0.0432 -0.0091 0.0436 0.0112 0.0317 0.0162 0.0745 -0.01 0.8359)) (bu h - (equal) (time . 51) (line-count . 12) (looseness-spread . 0.0744) (bps q 13 27 40 52 67 82 95 110 125 138 149) (piece-count . 151) (avg-piece-length . 21.62266556291391) (avg-looseness . 0.0233) (looseness-sd . 0.022313691457181196) (looseness-variance . 0.000497900826446281) (looses q 0.0365 0.0126 0.0058 0.0432 -0.0091 0.0436 0.0112 0.0317 0.0644 0.0263 -0.01 0.8359)) (fh h - (equal) (time . 21) (line-count . 12) (looseness-spread . 0.0527) (bps q 13 29 44 61 76 92 109 127 144 160 175) (piece-count . 177) (avg-piece-length . 18.446454802259886) (avg-looseness . 0.0203) (looseness-sd . 0.016266768843105916) (looseness-variance . 0.0002646077685950413) (looses q 0.0365 0.0126 0.0058 0.0432 -0.0091 0.0436 0.0112 0.0317 0.0162 0.0065 0.0255 0.8586)) (fh-improved . 131) (bu-improved . 1) (bh-improved . 0)) c (h - (equal) (text u . "On entering the cottage he found his aunt selling a penny loaf to a little girl, and when the customer was gone she said, “Well, how do you come to be back here in the middle of the morning like this?”") (measure . 330) (bh h - (equal) (time . 8) (line-count . 3) (looseness-spread . 0.0247) (bps q 19 34) (piece-count . 48) (avg-piece-length . 16.973041666666667) (avg-looseness . 0.0076) (looseness-sd . 0.01235) (looseness-variance . 0.0001525225) (looses q 0.0199 -0.0048 0.2531)) (fu h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.0247) (bps q 15 29) (piece-count . 41) (avg-piece-length . 19.870878048780487) (avg-looseness . 0.0076) (looseness-sd . 0.01235) (looseness-variance . 0.0001525225) (looses q 0.0199 -0.0048 0.2531)) (bu h - (equal) (time . 8) (line-count . 3) (looseness-spread . 0.0247) (bps q 15 29) (piece-count . 41) (avg-piece-length . 19.870878048780487) (avg-looseness . 0.0076) (looseness-sd . 0.01235) (looseness-variance . 0.0001525225) (looses q 0.0199 -0.0048 0.2531)) (fh h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0247) (bps q 19 34) (piece-count . 48) (avg-piece-length . 16.973041666666667) (avg-looseness . 0.0076) (looseness-sd . 0.01235) (looseness-variance . 0.0001525225) (looses q 0.0199 -0.0048 0.2531)) (fh-improved . 9) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Ah!” said his aunt, suspending her breath. And she opened upon him a lecture on how she would now have him all the spring upon her hands doing nothing. “If you can’t skeer birds, what can ye do? There! don’t ye look so deedy! Farmer Troutham is not so much better than myself, come to that. But ‘tis as Job said, ‘Now they that are younger than I have me in derision, whose fathers I would have disdained to have set with the dogs of my flock.’ His father was my father’s journeyman, anyhow, and I must have been a fool to let ‘ee go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of mischty.”") (measure . 330) (bh h - (equal) (time . 26) (line-count . 9) (looseness-spread . 0.0522) (bps q 14 30 44 58 73 88 103 121) (piece-count . 132) (avg-piece-length . 19.122496212121213) (avg-looseness . 0.0349) (looseness-sd . 0.01710796598079386) (looseness-variance . 0.0002926825) (looses q 0.0362 0.0101 0.0272 0.0302 0.0623 0.0392 0.0162 0.0578 0.3089)) (fu h - (equal) (time . 16) (line-count . 9) (looseness-spread . 0.1412) (bps q 13 27 40 53 69 82 94 111) (piece-count . 121) (avg-piece-length . 20.860904958677686) (avg-looseness . 0.0369) (looseness-sd . 0.038598251255724005) (looseness-variance . 0.0014898249999999997) (looses q 0.0135 0.0327 0.0272 0.0302 -0.0096 0.0412 0.0288 0.1316 0.3089)) (bu h - (equal) (time . 45) (line-count . 9) (looseness-spread . 0.0731) (bps q 12 27 40 53 68 81 93 111) (piece-count . 121) (avg-piece-length . 20.860904958677686) (avg-looseness . 0.037) (looseness-sd . 0.02323622912070717) (looseness-variance . 0.00053992234375) (looses q 0.0362 0.0101 0.0272 0.0302 0.0623 0.0392 0.0818 0.0087 0.3089)) (fh h - (equal) (time . 17) (line-count . 9) (looseness-spread . 0.1412) (bps q 15 30 44 58 74 89 104 121) (piece-count . 132) (avg-piece-length . 19.122496212121213) (avg-looseness . 0.0369) (looseness-sd . 0.038598251255724005) (looseness-variance . 0.0014898249999999997) (looses q 0.0135 0.0327 0.0272 0.0302 -0.0096 0.0412 0.0288 0.1316 0.3089)) (fh-improved . 46) (bu-improved . 4) (bh-improved . 4)) c (h - (equal) (text u . "More angry with Jude for demeaning her by coming there than for dereliction of duty, she rated him primarily from that point of view, and only secondarily from a moral one.") (measure . 330) (bh h - (equal) (time . 7) (line-count . 3) (looseness-spread . 0.0068) (bps q 15 32) (piece-count . 39) (avg-piece-length . 18.52089743589744) (avg-looseness . 0.0087) (looseness-sd . 0.0034) (looseness-variance . 1.1559999999999998e-05) (looses q 0.0121 0.0053 0.5943)) (fu h - (equal) (time . 22) (line-count . 3) (looseness-spread . 0.0719) (bps q 12 25) (piece-count . 30) (avg-piece-length . 24.077166666666663) (avg-looseness . 0.0474) (looseness-sd . 0.03595) (looseness-variance . 0.0012924025) (looses q 0.0834 0.0115 0.5265)) (bu h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.0719) (bps q 12 25) (piece-count . 30) (avg-piece-length . 24.077166666666663) (avg-looseness . 0.0474) (looseness-sd . 0.03595) (looseness-variance . 0.0012924025) (looses q 0.0834 0.0115 0.5265)) (fh h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0068) (bps q 15 32) (piece-count . 39) (avg-piece-length . 18.52089743589744) (avg-looseness . 0.0087) (looseness-sd . 0.0034) (looseness-variance . 1.1559999999999998e-05) (looses q 0.0121 0.0053 0.5943)) (fh-improved . 10) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Not that you should have let the birds eat what Farmer Troutham planted. Of course you was wrong in that. Jude, Jude, why didstn’t go off with that schoolmaster of thine to Christminster or somewhere? But, oh no—poor or’nary child—there never was any sprawl on thy side of the family, and never will be!”") (measure . 330) (bh h - (equal) (time . 29) (line-count . 5) (looseness-spread . 0.0948) (bps q 12 27 43 57) (piece-count . 62) (avg-piece-length . 20.614677419354845) (avg-looseness . 0.0242) (looseness-sd . 0.037443557523290975) (looseness-variance . 0.0014020200000000001) (looses q 0.0872 -0.0076 0.0002 0.017 0.6499)) (fu h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.0948) (bps q 12 26 37 51) (piece-count . 55) (avg-piece-length . 23.238363636363637) (avg-looseness . 0.0242) (looseness-sd . 0.037443557523290975) (looseness-variance . 0.0014020200000000001) (looses q 0.0872 -0.0076 0.0002 0.017 0.6499)) (bu h - (equal) (time . 11) (line-count . 5) (looseness-spread . 0.0948) (bps q 12 26 37 51) (piece-count . 55) (avg-piece-length . 23.238363636363637) (avg-looseness . 0.0242) (looseness-sd . 0.037443557523290975) (looseness-variance . 0.0014020200000000001) (looses q 0.0872 -0.0076 0.0002 0.017 0.6499)) (fh h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.0948) (bps q 12 27 43 57) (piece-count . 62) (avg-piece-length . 20.614677419354845) (avg-looseness . 0.0242) (looseness-sd . 0.037443557523290975) (looseness-variance . 0.0014020200000000001) (looses q 0.0872 -0.0076 0.0002 0.017 0.6499)) (fh-improved . 13) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Lord! you ought to know where the city of Christminster is. Near a score of miles from here. It is a place much too good for you ever to have much to do with, poor boy, I’m a-thinking.”") (measure . 330) (bh h - (equal) (time . 8) (line-count . 3) (looseness-spread . 0.0718) (bps q 15 32) (piece-count . 42) (avg-piece-length . 18.068964285714287) (avg-looseness . 0.0321) (looseness-sd . 0.0359) (looseness-variance . 0.00128881) (looses q 0.068 -0.0038 0.4081)) (fu h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0718) (bps q 13 30) (piece-count . 39) (avg-piece-length . 19.458884615384616) (avg-looseness . 0.0321) (looseness-sd . 0.0359) (looseness-variance . 0.00128881) (looses q 0.068 -0.0038 0.4081)) (bu h - (equal) (time . 7) (line-count . 3) (looseness-spread . 0.0718) (bps q 13 30) (piece-count . 39) (avg-piece-length . 19.458884615384616) (avg-looseness . 0.0321) (looseness-sd . 0.0359) (looseness-variance . 0.00128881) (looses q 0.068 -0.0038 0.4081)) (fh h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0718) (bps q 15 32) (piece-count . 42) (avg-piece-length . 18.068964285714287) (avg-looseness . 0.0321) (looseness-sd . 0.0359) (looseness-variance . 0.00128881) (looses q 0.068 -0.0038 0.4081)) (fh-improved . 4) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as that. We’ve never had anything to do with folk in Christminster, nor folk in Christminster with we.”") (measure . 330) (bh h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.0434) (bps q 14 30) (piece-count . 35) (avg-piece-length . 20.56594285714286) (avg-looseness . 0.0175) (looseness-sd . 0.0217) (looseness-variance . 0.00047088999999999996) (looses q 0.0392 -0.0042 0.6438)) (fu h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.0434) (bps q 13 26) (piece-count . 29) (avg-piece-length . 24.820965517241376) (avg-looseness . 0.0175) (looseness-sd . 0.0217) (looseness-variance . 0.00047088999999999996) (looses q 0.0392 -0.0042 0.6438)) (bu h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.0434) (bps q 13 26) (piece-count . 29) (avg-piece-length . 24.820965517241376) (avg-looseness . 0.0175) (looseness-sd . 0.0217) (looseness-variance . 0.00047088999999999996) (looses q 0.0392 -0.0042 0.6438)) (fh h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0434) (bps q 14 30) (piece-count . 35) (avg-piece-length . 20.56594285714286) (avg-looseness . 0.0175) (looseness-sd . 0.0217) (looseness-variance . 0.00047088999999999996) (looses q 0.0392 -0.0042 0.6438)) (fh-improved . 5) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Jude went out, and, feeling more than ever his existence to be an undemanded one, he lay down upon his back on a heap of litter near the pig-sty. The fog had by this time become more translucent, and the position of the sun could be seen through it. He pulled his straw hat over his face, and peered through the interstices of the plaiting at the white brightness, vaguely reflecting. Growing up brought responsibilities, he found. Events did not rhyme quite as he had thought. Nature’s logic was too horrid for him to care for. That mercy towards one set of creatures was cruelty towards another sickened his sense of harmony. As you got older, and felt yourself to be at the centre of your time, and not at a point in its circumference, as you had felt when you were little, you were seized with a sort of shuddering, he perceived. All around you there seemed to be something glaring, garish, rattling, and the noises and glares hit upon the little cell called your life, and shook it, and warped it.") (measure . 330) (bh h - (equal) (time . 65) (line-count . 14) (looseness-spread . 0.0882) (bps q 16 32 47 62 77 92 104 120 134 151 170 186 202) (piece-count . 217) (avg-piece-length . 18.67255529953916) (avg-looseness . 0.0352) (looseness-sd . 0.02549243071322621) (looseness-variance . 0.000649864023668639) (looses q 0.0295 0.076 0.0034 0.0509 0.0306 0.0269 0.0579 0.0356 0.0499 0.075 0.0257 0.0078 -0.0122 0.0059)) (fu h - (equal) (time . 25) (line-count . 14) (looseness-spread . 0.1161) (bps q 13 28 41 56 69 77 90 104 116 133 146 158 169) (piece-count . 183) (avg-piece-length . 22.141773224043693) (avg-looseness . 0.0369) (looseness-sd . 0.035380924556676116) (looseness-variance . 0.0012518098224852069) (looses q 0.1093 0.006 0.0709 -0.0068 0.0306 0.0269 -0.0023 0.0278 0.0175 -0.0055 0.0761 0.0606 0.0682 0.0059)) (bu h - (equal) (time . 39) (line-count . 14) (looseness-spread . 0.1215) (bps q 13 27 41 56 69 77 90 104 115 131 145 157 169) (piece-count . 183) (avg-piece-length . 22.141773224043693) (avg-looseness . 0.0369) (looseness-sd . 0.03312000057170625) (looseness-variance . 0.0010969344378698224) (looses q 0.1093 0.0586 0.0183 -0.0068 0.0306 0.0269 -0.0023 0.0278 0.0695 0.046 0.0472 0.0664 -0.0122 0.0059)) (fh h - (equal) (time . 48) (line-count . 14) (looseness-spread . 0.1017) (bps q 16 33 48 64 79 93 106 122 136 155 172 187 202) (piece-count . 217) (avg-piece-length . 18.67255529953916) (avg-looseness . 0.0379) (looseness-sd . 0.033376142136342324) (looseness-variance . 0.0011139668639053254) (looses q 0.0295 0.0231 0.0042 0.0003 -0.0014 0.0962 0.0433 0.0203 0.0777 -0.0055 0.0761 0.0606 0.0682 0.0059)) (fh-improved . 213) (bu-improved . 6) (bh-improved . 20)) c (h - (equal) (text u . "Then, like the natural boy, he forgot his despondency, and sprang up. During the remainder of the morning he helped his aunt, and in the afternoon, when there was nothing more to be done, he went into the village. Here he asked a man whereabouts Christminster lay.") (measure . 330) (bh h - (equal) (time . 11) (line-count . 4) (looseness-spread . 0.0676) (bps q 15 31 47) (piece-count . 58) (avg-piece-length . 19.236922413793103) (avg-looseness . 0.0377) (looseness-sd . 0.028711437906636907) (looseness-variance . 0.0008243466666666667) (looses q 0.0489 0.0659 -0.0017 0.2048)) (fu h - (equal) (time . 7) (line-count . 4) (looseness-spread . 0.0234) (bps q 12 25 38) (piece-count . 46) (avg-piece-length . 24.25525) (avg-looseness . 0.0524) (looseness-sd . 0.00987432135502092) (looseness-variance . 9.750222222222221e-05) (looses q 0.0489 0.0659 0.0425 0.1704)) (bu h - (equal) (time . 9) (line-count . 4) (looseness-spread . 0.0234) (bps q 12 25 38) (piece-count . 46) (avg-piece-length . 24.25525) (avg-looseness . 0.0524) (looseness-sd . 0.00987432135502092) (looseness-variance . 9.750222222222221e-05) (looses q 0.0489 0.0659 0.0425 0.1704)) (fh h - (equal) (time . 8) (line-count . 4) (looseness-spread . 0.0676) (bps q 15 31 47) (piece-count . 58) (avg-piece-length . 19.236922413793103) (avg-looseness . 0.0377) (looseness-sd . 0.028711437906636907) (looseness-variance . 0.0008243466666666667) (looses q 0.0489 0.0659 -0.0017 0.2048)) (fh-improved . 18) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "The man pointed north-eastward, in the very direction where lay that field in which Jude had so disgraced himself. There was something unpleasant about the coincidence for the moment, but the fearsomeness of this fact rather increased his curiosity about the city. The farmer had said he was never to be seen in that field again; yet Christminster lay across it, and the path was a public one. So, stealing out of the hamlet, he descended into the same hollow which had witnessed his punishment in the morning, never swerving an inch from the path, and climbing up the long and tedious ascent on the other side till the track joined the highway by a little clump of trees. Here the ploughed land ended, and all before him was bleak open down.") (measure . 330) (bh h - (equal) (time . 52) (line-count . 11) (looseness-spread . 0.0893) (bps q 14 28 43 57 73 92 107 123 138 153) (piece-count . 158) (avg-piece-length . 19.360905063291128) (avg-looseness . 0.0184) (looseness-sd . 0.027878466600586196) (looseness-variance . 0.0007772089) (looses q 0.0368 0.0766 0.0005 0.0136 0.0539 -0.0127 0.0021 0.0018 -0.0118 0.0231 0.6418)) (fu h - (equal) (time . 19) (line-count . 11) (looseness-spread . 0.0893) (bps q 12 23 33 46 60 76 87 100 114 128) (piece-count . 133) (avg-piece-length . 23.000172932330816) (avg-looseness . 0.0184) (looseness-sd . 0.027878466600586196) (looseness-variance . 0.0007772089) (looses q 0.0368 0.0766 0.0005 0.0136 0.0539 -0.0127 0.0021 0.0018 -0.0118 0.0231 0.6418)) (bu h - (equal) (time . 45) (line-count . 11) (looseness-spread . 0.0893) (bps q 12 23 33 46 60 76 87 100 114 128) (piece-count . 133) (avg-piece-length . 23.000172932330816) (avg-looseness . 0.0184) (looseness-sd . 0.027878466600586196) (looseness-variance . 0.0007772089) (looses q 0.0368 0.0766 0.0005 0.0136 0.0539 -0.0127 0.0021 0.0018 -0.0118 0.0231 0.6418)) (fh h - (equal) (time . 20) (line-count . 11) (looseness-spread . 0.0893) (bps q 14 28 43 57 73 92 107 123 138 153) (piece-count . 158) (avg-piece-length . 19.360905063291128) (avg-looseness . 0.0184) (looseness-sd . 0.027878466600586196) (looseness-variance . 0.0007772089) (looses q 0.0368 0.0766 0.0005 0.0136 0.0539 -0.0127 0.0021 0.0018 -0.0118 0.0231 0.6418)) (fh-improved . 149) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "The schoolmaster was leaving the village, and everybody seemed sorry. The miller at Cresscombe lent him the small white tilted cart and horse to carry his goods to the city of his destination, about twenty miles off, such a vehicle proving of quite sufficient size for the departing teacher’s effects. For the schoolhouse had been partly furnished by the managers, and the only cumbersome article possessed by the master, in addition to the packing-case of books, was a cottage piano that he had bought at an auction during the year in which he thought of learning instrumental music. But the enthusiasm having waned he had never acquired any skill in playing, and the purchased article had been a perpetual trouble to him ever since in moving house.") (measure . 360) (bh h - (equal) (time . 54) (line-count . 10) (looseness-spread . 0.0641) (bps q 16 31 49 66 82 101 120 137 155) (piece-count . 168) (avg-piece-length . 18.455788690476183) (avg-looseness . 0.0271) (looseness-sd . 0.017906485479351388) (looseness-variance . 0.0003206422222222222) (looses q 0.0327 0.0479 0.0629 0.0281 0.0156 0.0157 0.0214 0.0205 -0.0012 0.3373)) (fu h - (equal) (time . 18) (line-count . 10) (looseness-spread . 0.1247) (bps q 11 26 40 52 63 76 92 103 117) (piece-count . 128) (avg-piece-length . 24.223222656249998) (avg-looseness . 0.0381) (looseness-sd . 0.03965159688842896) (looseness-variance . 0.0015722491358024693) (looses q 0.0327 0.0037 0.0725 0.0717 0.1216 0.0013 0.0166 0.0263 -0.0031 0.2488)) (bu h - (equal) (time . 46) (line-count . 10) (looseness-spread . 0.103) (bps q 10 24 38 50 63 76 92 103 117) (piece-count . 128) (avg-piece-length . 24.223222656249998) (avg-looseness . 0.0396) (looseness-sd . 0.033340958387137576) (looseness-variance . 0.0011116195061728396) (looses q 0.0999 0.0605 0.0732 0.0608 0.0207 0.0013 0.0166 0.0263 -0.0031 0.2488)) (fh h - (equal) (time . 20) (line-count . 10) (looseness-spread . 0.0557) (bps q 16 32 51 67 83 103 121 138 155) (piece-count . 168) (avg-piece-length . 18.455788690476183) (avg-looseness . 0.0264) (looseness-sd . 0.017488310028539664) (looseness-variance . 0.000305840987654321) (looses q 0.0327 0.0037 0.0057 0.0384 0.0327 0.0076 0.0594 0.0205 0.0368 0.3373)) (fh-improved . 186) (bu-improved . 7) (bh-improved . 9)) c (h - (equal) (text u . "The rector had gone away for the day, being a man who disliked the sight of changes. He did not mean to return till the evening, when the new school-teacher would have arrived and settled in, and everything would be smooth again.") (measure . 360) (bh h - (equal) (time . 9) (line-count . 4) (looseness-spread . 0.0229) (bps q 18 32 46) (piece-count . 47) (avg-piece-length . 20.3178085106383) (avg-looseness . 0.0527) (looseness-sd . 0.010276294187216624) (looseness-variance . 0.00010560222222222219) (looses q 0.0443 0.0672 0.0467 0.9314)) (fu h - (equal) (time . 6) (line-count . 4) (looseness-spread . 0.0229) (bps q 16 30 42) (piece-count . 43) (avg-piece-length . 22.20783720930233) (avg-looseness . 0.0527) (looseness-sd . 0.010276294187216624) (looseness-variance . 0.00010560222222222219) (looses q 0.0443 0.0672 0.0467 0.9314)) (bu h - (equal) (time . 9) (line-count . 4) (looseness-spread . 0.0229) (bps q 16 30 42) (piece-count . 43) (avg-piece-length . 22.20783720930233) (avg-looseness . 0.0527) (looseness-sd . 0.010276294187216624) (looseness-variance . 0.00010560222222222219) (looses q 0.0443 0.0672 0.0467 0.9314)) (fh h - (equal) (time . 6) (line-count . 4) (looseness-spread . 0.0229) (bps q 18 32 46) (piece-count . 47) (avg-piece-length . 20.3178085106383) (avg-looseness . 0.0527) (looseness-sd . 0.010276294187216624) (looseness-variance . 0.00010560222222222219) (looses q 0.0443 0.0672 0.0467 0.9314)) (fh-improved . 8) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "The blacksmith, the farm bailiff, and the schoolmaster himself were standing in perplexed attitudes in the parlour before the instrument. The master had remarked that even if he got it into the cart he should not know what to do with it on his arrival at Christminster, the city he was bound for, since he was only going into temporary lodgings just at first.") (measure . 360) (bh h - (equal) (time . 15) (line-count . 5) (looseness-spread . 0.0474) (bps q 16 33 51 69) (piece-count . 79) (avg-piece-length . 18.455898734177218) (avg-looseness . 0.0215) (looseness-sd . 0.017074158105159973) (looseness-variance . 0.00029152687500000004) (looses q 0.0255 0.042 -0.0054 0.024 0.4741)) (fu h - (equal) (time . 9) (line-count . 5) (looseness-spread . 0.0801) (bps q 12 23 41 57) (piece-count . 64) (avg-piece-length . 22.78150000000001) (avg-looseness . 0.0215) (looseness-sd . 0.03254991359435536) (looseness-variance . 0.001059496875) (looses q -0.0063 0.0738 -0.0054 0.024 0.4741)) (bu h - (equal) (time . 34) (line-count . 5) (looseness-spread . 0.0474) (bps q 11 23 41 57) (piece-count . 64) (avg-piece-length . 22.78150000000001) (avg-looseness . 0.0215) (looseness-sd . 0.017074158105159973) (looseness-variance . 0.00029152687500000004) (looses q 0.0255 0.042 -0.0054 0.024 0.4741)) (fh h - (equal) (time . 10) (line-count . 5) (looseness-spread . 0.0801) (bps q 17 33 51 69) (piece-count . 79) (avg-piece-length . 18.455898734177218) (avg-looseness . 0.0215) (looseness-sd . 0.03254991359435536) (looseness-variance . 0.001059496875) (looses q -0.0063 0.0738 -0.0054 0.024 0.4741)) (fh-improved . 37) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "A little boy of eleven, who had been thoughtfully assisting in the packing, joined the group of men, and as they rubbed their chins he spoke up, blushing at the sound of his own voice: “Aunt have got a great fuel-house, and it could be put there, perhaps, till you’ve found a place to settle in, sir.”") (measure . 360) (bh h - (equal) (time . 13) (line-count . 4) (looseness-spread . 0.064) (bps q 17 33 50) (piece-count . 65) (avg-piece-length . 18.452015384615382) (avg-looseness . 0.0383) (looseness-sd . 0.028643440203066858) (looseness-variance . 0.0008204466666666667) (looses q 0.0786 0.0146 0.0217 0.2132)) (fu h - (equal) (time . 8) (line-count . 4) (looseness-spread . 0.064) (bps q 13 28 45) (piece-count . 58) (avg-piece-length . 20.678982758620695) (avg-looseness . 0.0383) (looseness-sd . 0.028643440203066858) (looseness-variance . 0.0008204466666666667) (looses q 0.0786 0.0146 0.0217 0.2132)) (bu h - (equal) (time . 11) (line-count . 4) (looseness-spread . 0.064) (bps q 13 28 45) (piece-count . 58) (avg-piece-length . 20.678982758620695) (avg-looseness . 0.0383) (looseness-sd . 0.028643440203066858) (looseness-variance . 0.0008204466666666667) (looses q 0.0786 0.0146 0.0217 0.2132)) (fh h - (equal) (time . 27) (line-count . 4) (looseness-spread . 0.064) (bps q 17 33 50) (piece-count . 65) (avg-piece-length . 18.452015384615382) (avg-looseness . 0.0383) (looseness-sd . 0.028643440203066858) (looseness-variance . 0.0008204466666666667) (looses q 0.0786 0.0146 0.0217 0.2132)) (fh-improved . 14) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "It was decided that a deputation should wait on the boy’s aunt—an old maiden resident—and ask her if she would house the piano till Mr. Phillotson should send for it. The smith and the bailiff started to see about the practicability of the suggested shelter, and the boy and the schoolmaster were left standing alone.") (measure . 360) (bh h - (equal) (time . 32) (line-count . 5) (looseness-spread . 0.0589) (bps q 18 35 54 71) (piece-count . 72) (avg-piece-length . 17.800402777777776) (avg-looseness . 0.0282) (looseness-sd . 0.021036203911352448) (looseness-variance . 0.000442521875) (looses q -0.001 0.0238 0.0322 0.0579 0.9298)) (fu h - (equal) (time . 7) (line-count . 5) (looseness-spread . 0.0589) (bps q 15 29 44 56) (piece-count . 57) (avg-piece-length . 22.484719298245615) (avg-looseness . 0.0282) (looseness-sd . 0.021036203911352448) (looseness-variance . 0.000442521875) (looses q -0.001 0.0238 0.0322 0.0579 0.9298)) (bu h - (equal) (time . 11) (line-count . 5) (looseness-spread . 0.0589) (bps q 15 29 44 56) (piece-count . 57) (avg-piece-length . 22.484719298245615) (avg-looseness . 0.0282) (looseness-sd . 0.021036203911352448) (looseness-variance . 0.000442521875) (looses q -0.001 0.0238 0.0322 0.0579 0.9298)) (fh h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.0589) (bps q 18 35 54 71) (piece-count . 72) (avg-piece-length . 17.800402777777776) (avg-looseness . 0.0282) (looseness-sd . 0.021036203911352448) (looseness-variance . 0.000442521875) (looses q -0.001 0.0238 0.0322 0.0579 0.9298)) (fh-improved . 34) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Tears rose into the boy’s eyes, for he was not among the regular day scholars, who came unromantically close to the schoolmaster’s life, but one who had attended the night school only during the present teacher’s term of office. The regular scholars, if the truth must be told, stood at the present moment afar off, like certain historic disciples, indisposed to any enthusiastic volunteering of aid.") (measure . 360) (bh h - (equal) (time . 17) (line-count . 6) (looseness-spread . 0.0429) (bps q 18 35 49 66 87) (piece-count . 88) (avg-piece-length . 18.639670454545453) (avg-looseness . 0.028) (looseness-sd . 0.01548824070060896) (looseness-variance . 0.00023988559999999994) (looses q 0.0256 0.0455 0.0026 0.0429 0.0235 0.9274)) (fu h - (equal) (time . 9) (line-count . 6) (looseness-spread . 0.0723) (bps q 15 27 40 55 64) (piece-count . 65) (avg-piece-length . 25.235246153846152) (avg-looseness . 0.0294) (looseness-sd . 0.02723149647008038) (looseness-variance . 0.0007415544000000001) (looses q 0.0256 0.0455 0.0026 0.0004 0.0727 0.9274)) (bu h - (equal) (time . 13) (line-count . 6) (looseness-spread . 0.0429) (bps q 15 27 40 54 64) (piece-count . 65) (avg-piece-length . 25.235246153846152) (avg-looseness . 0.028) (looseness-sd . 0.01548824070060896) (looseness-variance . 0.00023988559999999994) (looses q 0.0256 0.0455 0.0026 0.0429 0.0235 0.9274)) (fh h - (equal) (time . 31) (line-count . 6) (looseness-spread . 0.0723) (bps q 18 35 49 67 87) (piece-count . 88) (avg-piece-length . 18.639670454545453) (avg-looseness . 0.0294) (looseness-sd . 0.02723149647008038) (looseness-variance . 0.0007415544000000001) (looses q 0.0256 0.0455 0.0026 0.0004 0.0727 0.9274)) (fh-improved . 55) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "“Well—don’t speak of this everywhere. You know what a university is, and a university degree? It is the necessary hallmark of a man who wants to do anything in teaching. My scheme, or dream, is to be a university graduate, and then to be ordained. By going to live at Christminster, or near it, I shall be at headquarters, so to speak, and if my scheme is practicable at all, I consider that being on the spot will afford me a better chance of carrying it out than I should have elsewhere.”") (measure . 360) (bh h - (equal) (time . 24) (line-count . 7) (looseness-spread . 0.0553) (bps q 17 37 56 75 96 116) (piece-count . 119) (avg-piece-length . 16.541445378151263) (avg-looseness . 0.0261) (looseness-sd . 0.019376568036907075) (looseness-variance . 0.0003754513888888889) (looses q 0.0368 0.0287 0.0535 0.0359 -0.0018 0.0036 0.798)) (fu h - (equal) (time . 12) (line-count . 7) (looseness-spread . 0.0838) (bps q 14 28 42 59 74 91) (piece-count . 93) (avg-piece-length . 21.165935483870978) (avg-looseness . 0.0275) (looseness-sd . 0.028629821282478637) (looseness-variance . 0.0008196666666666668) (looses q 0.0368 0.082 0.0085 0.0359 -0.0018 0.0036 0.798)) (bu h - (equal) (time . 19) (line-count . 7) (looseness-spread . 0.063) (bps q 13 28 42 59 74 91) (piece-count . 93) (avg-piece-length . 21.165935483870978) (avg-looseness . 0.0275) (looseness-sd . 0.025504770795545945) (looseness-variance . 0.0006504933333333333) (looses q 0.0576 0.0612 0.0085 0.0359 -0.0018 0.0036 0.798)) (fh h - (equal) (time . 35) (line-count . 7) (looseness-spread . 0.0553) (bps q 17 37 56 75 96 116) (piece-count . 119) (avg-piece-length . 16.541445378151263) (avg-looseness . 0.0261) (looseness-sd . 0.019376568036907075) (looseness-variance . 0.0003754513888888889) (looses q 0.0368 0.0287 0.0535 0.0359 -0.0018 0.0036 0.798)) (fh-improved . 89) (bu-improved . 1) (bh-improved . 0)) c (h - (equal) (text u . "The smith and his companion returned. Old Miss Fawley’s fuel-house was dry, and eminently practicable; and she seemed willing to give the instrument standing-room there. It was accordingly left in the school till the evening, when more hands would be available for removing it; and the schoolmaster gave a final glance round.") (measure . 360) (bh h - (equal) (time . 14) (line-count . 5) (looseness-spread . 0.0571) (bps q 15 33 49 66) (piece-count . 69) (avg-piece-length . 19.830333333333336) (avg-looseness . 0.025) (looseness-sd . 0.022340825857608756) (looseness-variance . 0.0004991125) (looses q 0.0506 0.0152 -0.0065 0.0409 0.7705)) (fu h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.0789) (bps q 13 24 38 51) (piece-count . 54) (avg-piece-length . 25.338759259259252) (avg-looseness . 0.0268) (looseness-sd . 0.03199456985177329) (looseness-variance . 0.0010236525000000003) (looses q 0.0002 0.0724 -0.0065 0.0409 0.7705)) (bu h - (equal) (time . 11) (line-count . 5) (looseness-spread . 0.0571) (bps q 12 24 38 51) (piece-count . 54) (avg-piece-length . 25.338759259259252) (avg-looseness . 0.025) (looseness-sd . 0.022340825857608756) (looseness-variance . 0.0004991125) (looses q 0.0506 0.0152 -0.0065 0.0409 0.7705)) (fh h - (equal) (time . 28) (line-count . 5) (looseness-spread . 0.0789) (bps q 16 33 49 66) (piece-count . 69) (avg-piece-length . 19.830333333333336) (avg-looseness . 0.0268) (looseness-sd . 0.03199456985177329) (looseness-variance . 0.0010236525000000003) (looses q 0.0002 0.0724 -0.0065 0.0409 0.7705)) (fh-improved . 38) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "The boy Jude assisted in loading some small articles, and at nine o’clock Mr. Phillotson mounted beside his box of books and other impedimenta, and bade his friends good-bye.") (measure . 360) (bh h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.0202) (bps q 16 31) (piece-count . 34) (avg-piece-length . 21.65077941176471) (avg-looseness . 0.0265) (looseness-sd . 0.0101) (looseness-variance . 0.00010200999999999998) (looses q 0.0366 0.0164 0.7414)) (fu h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.0202) (bps q 14 26) (piece-count . 29) (avg-piece-length . 25.383672413793107) (avg-looseness . 0.0265) (looseness-sd . 0.0101) (looseness-variance . 0.00010200999999999998) (looses q 0.0366 0.0164 0.7414)) (bu h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.0202) (bps q 14 26) (piece-count . 29) (avg-piece-length . 25.383672413793107) (avg-looseness . 0.0265) (looseness-sd . 0.0101) (looseness-variance . 0.00010200999999999998) (looses q 0.0366 0.0164 0.7414)) (fh h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.0202) (bps q 16 31) (piece-count . 34) (avg-piece-length . 21.65077941176471) (avg-looseness . 0.0265) (looseness-sd . 0.0101) (looseness-variance . 0.00010200999999999998) (looses q 0.0366 0.0164 0.7414)) (fh-improved . 7) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. “Be a good boy, remember; and be kind to animals and birds, and read all you can. And if ever you come to Christminster remember you hunt me out for old acquaintance’ sake.”") (measure . 360) (bh h - (equal) (time . 10) (line-count . 4) (looseness-spread . 0.0244) (bps q 18 36 52) (piece-count . 54) (avg-piece-length . 18.791) (avg-looseness . 0.0277) (looseness-sd . 0.011208429367618322) (looseness-variance . 0.00012562888888888887) (looses q 0.0191 0.0204 0.0435 0.8491)) (fu h - (equal) (time . 6) (line-count . 4) (looseness-spread . 0.1319) (bps q 16 32 44) (piece-count . 46) (avg-piece-length . 22.059) (avg-looseness . 0.0635) (looseness-sd . 0.06187411952235495) (looseness-variance . 0.0038284066666666662) (looses q 0.0191 0.0204 0.151 0.751)) (bu h - (equal) (time . 27) (line-count . 4) (looseness-spread . 0.0444) (bps q 15 30 44) (piece-count . 46) (avg-piece-length . 22.059) (avg-looseness . 0.0657) (looseness-sd . 0.018185036583838805) (looseness-variance . 0.0003306955555555557) (looses q 0.0889 0.0445 0.0636 0.751)) (fh h - (equal) (time . 7) (line-count . 4) (looseness-spread . 0.0244) (bps q 18 36 52) (piece-count . 54) (avg-piece-length . 18.791) (avg-looseness . 0.0277) (looseness-sd . 0.011208429367618322) (looseness-variance . 0.00012562888888888887) (looses q 0.0191 0.0204 0.0435 0.8491)) (fh-improved . 14) (bu-improved . 3) (bh-improved . 0)) c (h - (equal) (text u . "The cart creaked across the green, and disappeared round the corner by the rectory-house. The boy returned to the draw-well at the edge of the greensward, where he had left his buckets when he went to help his patron and teacher in the loading. There was a quiver in his lip now and after opening the well-cover to begin lowering the bucket he paused and leant with his forehead and arms against the framework, his face wearing the fixity of a thoughtful child’s who has felt the pricks of life somewhat before his time. The well into which he was looking was as ancient as the village itself, and from his present position appeared as a long circular perspective ending in a shining disk of quivering water at a distance of a hundred feet down. There was a lining of green moss near the top, and nearer still the hart’s-tongue fern.") (measure . 360) (bh h - (equal) (time . 60) (line-count . 11) (looseness-spread . 0.0957) (bps q 15 31 47 65 82 99 115 132 152 172) (piece-count . 184) (avg-piece-length . 18.36781249999998) (avg-looseness . 0.0432) (looseness-sd . 0.031471866801955045) (looseness-variance . 0.0009904784) (looses q 0.0886 0.0968 0.0011 0.012 0.0163 0.0598 0.0234 0.0213 0.0592 0.0531 0.2019)) (fu h - (equal) (time . 22) (line-count . 11) (looseness-spread . 0.1439) (bps q 13 27 42 58 72 85 100 115 128 143) (piece-count . 155) (avg-piece-length . 21.804370967741917) (avg-looseness . 0.0432) (looseness-sd . 0.03916853839499248) (looseness-variance . 0.0015341743999999998) (looses q 0.0404 0.145 0.0011 0.012 0.0163 0.0598 0.0234 0.0213 0.0592 0.0531 0.2019)) (bu h - (equal) (time . 52) (line-count . 11) (looseness-spread . 0.0957) (bps q 12 27 42 58 72 85 100 115 128 143) (piece-count . 155) (avg-piece-length . 21.804370967741917) (avg-looseness . 0.0432) (looseness-sd . 0.031471866801955045) (looseness-variance . 0.0009904784) (looses q 0.0886 0.0968 0.0011 0.012 0.0163 0.0598 0.0234 0.0213 0.0592 0.0531 0.2019)) (fh h - (equal) (time . 23) (line-count . 11) (looseness-spread . 0.1439) (bps q 16 31 47 65 82 99 115 132 152 172) (piece-count . 184) (avg-piece-length . 18.36781249999998) (avg-looseness . 0.0432) (looseness-sd . 0.03916853839499248) (looseness-variance . 0.0015341743999999998) (looses q 0.0404 0.145 0.0011 0.012 0.0163 0.0598 0.0234 0.0213 0.0592 0.0531 0.2019)) (fh-improved . 128) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "He said to himself, in the melodramatic tones of a whimsical boy, that the schoolmaster had drawn at that well scores of times on a morning like this, and would never draw there any more. “I’ve seen him look down into it, when he was tired with his drawing, just as I do now, and when he rested a bit before carrying the buckets home! But he was too clever to bide here any longer—a small sleepy place like this!”") (measure . 360) (bh h - (equal) (time . 18) (line-count . 6) (looseness-spread . 0.0669) (bps q 19 37 52 70 88) (piece-count . 93) (avg-piece-length . 18.083564516129027) (avg-looseness . 0.0329) (looseness-sd . 0.022272727717996287) (looseness-variance . 0.0004960744000000001) (looses q 0.068 0.0011 0.0221 0.0434 0.0297 0.6525)) (fu h - (equal) (time . 11) (line-count . 6) (looseness-spread . 0.0669) (bps q 14 29 44 61 76) (piece-count . 81) (avg-piece-length . 20.762611111111113) (avg-looseness . 0.0329) (looseness-sd . 0.022272727717996287) (looseness-variance . 0.0004960744000000001) (looses q 0.068 0.0011 0.0221 0.0434 0.0297 0.6525)) (bu h - (equal) (time . 34) (line-count . 6) (looseness-spread . 0.0669) (bps q 14 29 44 61 76) (piece-count . 81) (avg-piece-length . 20.762611111111113) (avg-looseness . 0.0329) (looseness-sd . 0.022272727717996287) (looseness-variance . 0.0004960744000000001) (looses q 0.068 0.0011 0.0221 0.0434 0.0297 0.6525)) (fh h - (equal) (time . 11) (line-count . 6) (looseness-spread . 0.0669) (bps q 19 37 52 70 88) (piece-count . 93) (avg-piece-length . 18.083564516129027) (avg-looseness . 0.0329) (looseness-sd . 0.022272727717996287) (looseness-variance . 0.0004960744000000001) (looses q 0.068 0.0011 0.0221 0.0434 0.0297 0.6525)) (fh-improved . 42) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "A tear rolled from his eye into the depths of the well. The morning was a little foggy, and the boy’s breathing unfurled itself as a thicker fog upon the still and heavy air. His thoughts were interrupted by a sudden outcry:") (measure . 360) (bh h - (equal) (time . 9) (line-count . 3) (looseness-spread . 0.0074) (bps q 19 35) (piece-count . 47) (avg-piece-length . 19.089265957446806) (avg-looseness . 0.0084) (looseness-sd . 0.0036999999999999997) (looseness-variance . 1.3689999999999998e-05) (looses q 0.0121 0.0047 0.2365)) (fu h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.0074) (bps q 17 32) (piece-count . 42) (avg-piece-length . 21.361797619047618) (avg-looseness . 0.0084) (looseness-sd . 0.0036999999999999997) (looseness-variance . 1.3689999999999998e-05) (looses q 0.0121 0.0047 0.2365)) (bu h - (equal) (time . 8) (line-count . 3) (looseness-spread . 0.0074) (bps q 17 32) (piece-count . 42) (avg-piece-length . 21.361797619047618) (avg-looseness . 0.0084) (looseness-sd . 0.0036999999999999997) (looseness-variance . 1.3689999999999998e-05) (looses q 0.0121 0.0047 0.2365)) (fh h - (equal) (time . 24) (line-count . 3) (looseness-spread . 0.0074) (bps q 19 35) (piece-count . 47) (avg-piece-length . 19.089265957446806) (avg-looseness . 0.0084) (looseness-sd . 0.0036999999999999997) (looseness-variance . 1.3689999999999998e-05) (looses q 0.0121 0.0047 0.2365)) (fh-improved . 5) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "It came from an old woman who had emerged from her door towards the garden gate of a green-thatched cottage not far off. The boy quickly waved a signal of assent, drew the water with what was a great effort for one of his stature, landed and emptied the big bucket into his own pair of smaller ones, and pausing a moment for breath, started with them across the patch of clammy greensward whereon the well stood—nearly in the centre of the little village, or rather hamlet of Marygreen.") (measure . 360) (bh h - (equal) (time . 20) (line-count . 7) (looseness-spread . 0.0891) (bps q 15 33 49 64 78 95) (piece-count . 101) (avg-piece-length . 19.84581188118812) (avg-looseness . 0.0325) (looseness-sd . 0.031058761512118713) (looseness-variance . 0.0009646466666666667) (looses q 0.0278 -0.0022 0.0543 0.0814 0.0414 -0.0077 0.6447)) (fu h - (equal) (time . 13) (line-count . 7) (looseness-spread . 0.0787) (bps q 14 29 45 59 72 85) (piece-count . 91) (avg-piece-length . 22.026670329670328) (avg-looseness . 0.0561) (looseness-sd . 0.026900521473673247) (looseness-variance . 0.0007236380555555555) (looses q 0.0768 0.0389 0.0705 0.0384 0.0954 0.0167 0.5124)) (bu h - (equal) (time . 19) (line-count . 7) (looseness-spread . 0.0772) (bps q 14 28 44 58 72 85) (piece-count . 91) (avg-piece-length . 22.026670329670328) (avg-looseness . 0.055) (looseness-sd . 0.027976383889908925) (looseness-variance . 0.0007826780555555556) (looses q 0.0768 0.0597 0.0939 0.062 0.0208 0.0167 0.5124)) (fh h - (equal) (time . 34) (line-count . 7) (looseness-spread . 0.1078) (bps q 15 33 49 65 78 95) (piece-count . 101) (avg-piece-length . 19.84581188118812) (avg-looseness . 0.031) (looseness-sd . 0.03702962777740729) (looseness-variance . 0.001371193333333333) (looses q 0.0278 -0.0022 0.0543 0.0137 0.1001 -0.0077 0.6447)) (fh-improved . 31) (bu-improved . 3) (bh-improved . 1)) c (h - (equal) (text u . "It was as old-fashioned as it was small, and it rested in the lap of an undulating upland adjoining the North Wessex downs. Old as it was, however, the well-shaft was probably the only relic of the local history that remained absolutely unchanged. Many of the thatched and dormered dwelling-houses had been pulled down of late years, and many trees felled on the green. Above all, the original church, hump-backed, wood-turreted, and quaintly hipped, had been taken down, and either cracked up into heaps of road-metal in the lane, or utilized as pig-sty walls, garden seats, guard-stones to fences, and rockeries in the flower-beds of the neighbourhood. In place of it a tall new building of modern Gothic design, unfamiliar to English eyes, had been erected on a new piece of ground by a certain obliterator of historic records who had run down from London and back in a day. The site whereon so long had stood the ancient temple to the Christian divinities was not even recorded on the green and level grass-plot that had immemorially been the churchyard, the obliterated graves being commemorated by eighteen-penny cast-iron crosses warranted to last five years.") (measure . 360) (bh h - (equal) (time . 76) (line-count . 16) (looseness-spread . 0.0643) (bps q 21 37 53 64 79 93 109 126 145 162 181 198 215 231 247) (piece-count . 248) (avg-piece-length . 19.40513709677419) (avg-looseness . 0.0253) (looseness-sd . 0.017128269031049227) (looseness-variance . 0.0002933776000000001) (looses q 0.0081 0.0434 0.0266 0.0499 0.0396 0.0205 0.0209 0.0022 0.017 0.0187 0.0025 0.0192 0.023 0.0211 0.0665 0.9321)) (fu h - (equal) (time . 48) (line-count . 16) (looseness-spread . 0.0817) (bps q 18 31 44 55 70 81 96 110 125 138 152 168 182 193 204) (piece-count . 206) (avg-piece-length . 23.361524271844665) (avg-looseness . 0.03) (looseness-sd . 0.022058282395105523) (looseness-variance . 0.00048656782222222225) (looses q 0.0081 0.0434 0.0266 0.0499 0.0396 0.0205 0.0649 0.0155 0.0758 0.0187 0.0251 -0.0059 0.0007 0.0231 0.0433 0.8791)) (bu h - (equal) (time . 45) (line-count . 16) (looseness-spread . 0.0708) (bps q 18 31 44 55 70 81 96 109 125 138 152 168 182 193 204) (piece-count . 206) (avg-piece-length . 23.361524271844665) (avg-looseness . 0.03) (looseness-sd . 0.019124011666546908) (looseness-variance . 0.00036572782222222226) (looses q 0.0081 0.0434 0.0266 0.0499 0.0396 0.0205 0.0649 0.0473 0.044 0.0187 0.0251 -0.0059 0.0007 0.0231 0.0433 0.8791)) (fh h - (equal) (time . 49) (line-count . 16) (looseness-spread . 0.0643) (bps q 21 37 53 64 79 93 109 126 145 162 181 198 215 231 247) (piece-count . 248) (avg-piece-length . 19.40513709677419) (avg-looseness . 0.0253) (looseness-sd . 0.017128269031049227) (looseness-variance . 0.0002933776000000001) (looses q 0.0081 0.0434 0.0266 0.0499 0.0396 0.0205 0.0209 0.0022 0.017 0.0187 0.0025 0.0192 0.023 0.0211 0.0665 0.9321)) (fh-improved . 294) (bu-improved . 1) (bh-improved . 0)) c (h - (equal) (text u . "Slender as was Jude Fawley’s frame he bore the two brimming house-buckets of water to the cottage without resting. Over the door was a little rectangular piece of blue board, on which was painted in yellow letters, “Drusilla Fawley, Baker.” Within the little lead panes of the window—this being one of the few old houses left—were five bottles of sweets, and three buns on a plate of the willow pattern.") (measure . 360) (bh h - (equal) (time . 18) (line-count . 6) (looseness-spread . 0.0174) (bps q 17 38 54 71 88) (piece-count . 92) (avg-piece-length . 17.89400000000001) (avg-looseness . 0.0257) (looseness-sd . 0.005980300995769359) (looseness-variance . 3.576399999999999e-05) (looses q 0.0191 0.0264 0.025 0.0215 0.0365 0.815)) (fu h - (equal) (time . 11) (line-count . 6) (looseness-spread . 0.0174) (bps q 13 27 40 55 71) (piece-count . 73) (avg-piece-length . 22.551342465753432) (avg-looseness . 0.0257) (looseness-sd . 0.005980300995769359) (looseness-variance . 3.576399999999999e-05) (looses q 0.0191 0.0264 0.025 0.0215 0.0365 0.815)) (bu h - (equal) (time . 35) (line-count . 6) (looseness-spread . 0.0174) (bps q 13 27 40 55 71) (piece-count . 73) (avg-piece-length . 22.551342465753432) (avg-looseness . 0.0257) (looseness-sd . 0.005980300995769359) (looseness-variance . 3.576399999999999e-05) (looses q 0.0191 0.0264 0.025 0.0215 0.0365 0.815)) (fh h - (equal) (time . 11) (line-count . 6) (looseness-spread . 0.0174) (bps q 17 38 54 71 88) (piece-count . 92) (avg-piece-length . 17.89400000000001) (avg-looseness . 0.0257) (looseness-sd . 0.005980300995769359) (looseness-variance . 3.576399999999999e-05) (looses q 0.0191 0.0264 0.025 0.0215 0.0365 0.815)) (fh-improved . 62) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "While emptying the buckets at the back of the house he could hear an animated conversation in progress within-doors between his great-aunt, the Drusilla of the sign-board, and some other villagers. Having seen the school-master depart, they were summing up particulars of the event, and indulging in predictions of his future.") (measure . 360) (bh h - (equal) (time . 13) (line-count . 5) (looseness-spread . 0.0643) (bps q 19 33 49 67) (piece-count . 71) (avg-piece-length . 19.119154929577466) (avg-looseness . 0.0252) (looseness-sd . 0.029417118740624477) (looseness-variance . 0.0008653668749999999) (looses q -0.0067 0.0576 0.0513 -0.0015 0.773)) (fu h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.0951) (bps q 15 27 39 51) (piece-count . 55) (avg-piece-length . 24.681090909090905) (avg-looseness . 0.0476) (looseness-sd . 0.04007052376747776) (looseness-variance . 0.001605646875) (looses q -0.0067 0.0251 0.0837 0.0884 0.6921)) (bu h - (equal) (time . 11) (line-count . 5) (looseness-spread . 0.0951) (bps q 15 26 39 51) (piece-count . 55) (avg-piece-length . 24.681090909090905) (avg-looseness . 0.0476) (looseness-sd . 0.034375899988218495) (looseness-variance . 0.0011817025000000001) (looses q -0.0067 0.0576 0.0513 0.0884 0.6921)) (fh h - (equal) (time . 29) (line-count . 5) (looseness-spread . 0.0904) (bps q 19 34 49 67) (piece-count . 71) (avg-piece-length . 19.119154929577466) (avg-looseness . 0.0252) (looseness-sd . 0.03589132903641212) (looseness-variance . 0.0012881874999999998) (looses q -0.0067 0.0251 0.0837 -0.0015 0.773)) (fh-improved . 37) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since you was last this way.” The old inhabitant who answered was a tall, gaunt woman, who spoke tragically on the most trivial subject, and gave a phrase of her conversation to each auditor in turn. “He come from Mellstock, down in South Wessex, about a year ago—worse luck for ‘n, Belinda” (turning to the right) “where his father was living, and was took wi’ the shakings for death, and died in two days, as you know, Caroline” (turning to the left). “It would ha’ been a blessing if Goddy-mighty had took thee too, wi’ thy mother and father, poor useless boy! But I’ve got him here to stay with me till I can see what’s to be done with un, though I am obliged to let him earn any penny he can. Just now he’s a-scaring of birds for Farmer Troutham. It keeps him out of mischty. Why do ye turn away, Jude?” she continued, as the boy, feeling the impact of their glances like slaps upon his face, moved aside.") (measure . 360) (bh h - (equal) (time . 62) (line-count . 13) (looseness-spread . 0.0442) (bps q 14 30 49 66 82 99 117 133 152 169 186 204) (piece-count . 212) (avg-piece-length . 18.828971698113204) (avg-looseness . 0.0265) (looseness-sd . 0.012612788373534044) (looseness-variance . 0.00015908243055555557) (looses q 0.0349 0.0211 0.0268 0.0371 0.0437 0.0155 0.0342 0.015 0.0459 0.0167 0.0017 0.0255 0.4334)) (fu h - (equal) (time . 46) (line-count . 13) (looseness-spread . 0.0913) (bps q 14 28 42 55 69 84 100 114 132 149 164 179) (piece-count . 187) (avg-piece-length . 21.34621390374331) (avg-looseness . 0.0273) (looseness-sd . 0.02278425839380241) (looseness-variance . 0.0005191224305555555) (looses q 0.0349 0.0211 0.0823 -0.009 0.0437 0.0155 0.0134 0.0358 0.0459 0.0167 0.0017 0.0255 0.4334)) (bu h - (equal) (time . 41) (line-count . 13) (looseness-spread . 0.0913) (bps q 14 28 42 55 69 84 99 114 132 149 164 179) (piece-count . 187) (avg-piece-length . 21.34621390374331) (avg-looseness . 0.0273) (looseness-sd . 0.02266221003981935) (looseness-variance . 0.0005135757638888889) (looses q 0.0349 0.0211 0.0823 -0.009 0.0437 0.0155 0.0342 0.015 0.0459 0.0167 0.0017 0.0255 0.4334)) (fh h - (equal) (time . 46) (line-count . 13) (looseness-spread . 0.0442) (bps q 14 30 49 66 82 99 118 133 152 169 186 204) (piece-count . 212) (avg-piece-length . 18.828971698113204) (avg-looseness . 0.0265) (looseness-sd . 0.012830787085063109) (looseness-variance . 0.00016462909722222226) (looses q 0.0349 0.0211 0.0268 0.0371 0.0437 0.0155 0.0134 0.0358 0.0459 0.0167 0.0017 0.0255 0.4334)) (fh-improved . 172) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "The local washerwoman replied that it was perhaps a very good plan of Miss or Mrs. Fawley’s (as they called her indifferently) to have him with her—”to kip ‘ee company in your loneliness, fetch water, shet the winder-shetters o’ nights, and help in the bit o’ baking.”") (measure . 360) (bh h - (equal) (time . 12) (line-count . 4) (looseness-spread . 0.0244) (bps q 18 35 52) (piece-count . 60) (avg-piece-length . 18.324483333333337) (avg-looseness . 0.0084) (looseness-sd . 0.0106680207473864) (looseness-variance . 0.00011380666666666667) (looses q -0.0065 0.0179 0.0138 0.6361)) (fu h - (equal) (time . 7) (line-count . 4) (looseness-spread . 0.0244) (bps q 15 29 42) (piece-count . 49) (avg-piece-length . 22.438142857142854) (avg-looseness . 0.0084) (looseness-sd . 0.0106680207473864) (looseness-variance . 0.00011380666666666667) (looses q -0.0065 0.0179 0.0138 0.6361)) (bu h - (equal) (time . 9) (line-count . 4) (looseness-spread . 0.0244) (bps q 15 29 42) (piece-count . 49) (avg-piece-length . 22.438142857142854) (avg-looseness . 0.0084) (looseness-sd . 0.0106680207473864) (looseness-variance . 0.00011380666666666667) (looses q -0.0065 0.0179 0.0138 0.6361)) (fh h - (equal) (time . 7) (line-count . 4) (looseness-spread . 0.0244) (bps q 18 35 52) (piece-count . 60) (avg-piece-length . 18.324483333333337) (avg-looseness . 0.0084) (looseness-sd . 0.0106680207473864) (looseness-variance . 0.00011380666666666667) (looses q -0.0065 0.0179 0.0138 0.6361)) (fh-improved . 19) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a better one. The boy is crazy for books, that he is. It runs in our family rather. His cousin Sue is just the same—so I’ve heard; but I have not seen the child for years, though she was born in this place, within these four walls, as it happened. My niece and her husband, after they were married, didn’ get a house of their own for some year or more; and then they only had one till—Well, I won’t go into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the Fawleys to take that step any more. She, their only one, was like a child o’ my own, Belinda, till the split come! Ah, that a little maid should know such changes!”") (measure . 360) (bh h - (equal) (time . 54) (line-count . 11) (looseness-spread . 0.0632) (bps q 17 35 52 70 87 103 120 136 152 169) (piece-count . 177) (avg-piece-length . 18.84115819209039) (avg-looseness . 0.0245) (looseness-sd . 0.0172481564232239) (looseness-variance . 0.00029749889999999997) (looses q 0.0198 0.0222 0.0378 0.0016 0.032 0.0229 0.0179 0.0648 0.0244 0.0017 0.4912)) (fu h - (equal) (time . 43) (line-count . 11) (looseness-spread . 0.0632) (bps q 14 27 42 59 76 90 106 122 137 154) (piece-count . 161) (avg-piece-length . 20.713571428571417) (avg-looseness . 0.0245) (looseness-sd . 0.0172481564232239) (looseness-variance . 0.00029749889999999997) (looses q 0.0198 0.0222 0.0378 0.0016 0.032 0.0229 0.0179 0.0648 0.0244 0.0017 0.4912)) (bu h - (equal) (time . 35) (line-count . 11) (looseness-spread . 0.0632) (bps q 14 27 42 59 76 90 106 122 137 154) (piece-count . 161) (avg-piece-length . 20.713571428571417) (avg-looseness . 0.0245) (looseness-sd . 0.0172481564232239) (looseness-variance . 0.00029749889999999997) (looses q 0.0198 0.0222 0.0378 0.0016 0.032 0.0229 0.0179 0.0648 0.0244 0.0017 0.4912)) (fh h - (equal) (time . 40) (line-count . 11) (looseness-spread . 0.0632) (bps q 17 35 52 70 87 103 120 136 152 169) (piece-count . 177) (avg-piece-length . 18.84115819209039) (avg-looseness . 0.0245) (looseness-sd . 0.0172481564232239) (looseness-variance . 0.00029749889999999997) (looses q 0.0198 0.0222 0.0378 0.0016 0.032 0.0229 0.0179 0.0648 0.0244 0.0017 0.4912)) (fh-improved . 114) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Jude, finding the general attention again centering on himself, went out to the bakehouse, where he ate the cake provided for his breakfast. The end of his spare time had now arrived, and emerging from the garden by getting over the hedge at the back he pursued a path northward, till he came to a wide and lonely depression in the general level of the upland, which was sown as a corn-field. This vast concave was the scene of his labours for Mr Troutham the farmer, and he descended into the midst of it.") (measure . 360) (bh h - (equal) (time . 44) (line-count . 7) (looseness-spread . 0.0515) (bps q 19 36 52 71 88 103) (piece-count . 111) (avg-piece-length . 18.720445945945947) (avg-looseness . 0.036) (looseness-sd . 0.020974647394731892) (looseness-variance . 0.00043993583333333335) (looses q 0.0168 0.0471 0.0582 0.0181 0.0123 0.0638 0.4287)) (fu h - (equal) (time . 13) (line-count . 7) (looseness-spread . 0.0563) (bps q 13 27 41 57 72 86) (piece-count . 94) (avg-piece-length . 22.1060585106383) (avg-looseness . 0.036) (looseness-sd . 0.02387626087421004) (looseness-variance . 0.0005700758333333333) (looses q 0.0168 0.0471 0.01 0.0663 0.0123 0.0638 0.4287)) (bu h - (equal) (time . 20) (line-count . 7) (looseness-spread . 0.0515) (bps q 13 27 40 57 72 86) (piece-count . 94) (avg-piece-length . 22.1060585106383) (avg-looseness . 0.036) (looseness-sd . 0.020974647394731892) (looseness-variance . 0.00043993583333333335) (looses q 0.0168 0.0471 0.0582 0.0181 0.0123 0.0638 0.4287)) (fh h - (equal) (time . 13) (line-count . 7) (looseness-spread . 0.0563) (bps q 19 36 53 71 88 103) (piece-count . 111) (avg-piece-length . 18.720445945945947) (avg-looseness . 0.036) (looseness-sd . 0.02387626087421004) (looseness-variance . 0.0005700758333333333) (looses q 0.0168 0.0471 0.01 0.0663 0.0123 0.0638 0.4287)) (fh-improved . 74) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "The brown surface of the field went right up towards the sky all round, where it was lost by degrees in the mist that shut out the actual verge and accentuated the solitude. The only marks on the uniformity of the scene were a rick of last year’s produce standing in the midst of the arable, the rooks that rose at his approach, and the path athwart the fallow by which he had come, trodden now by he hardly knew whom, though once by many of his own dead family.") (measure . 360) (bh h - (equal) (time . 22) (line-count . 6) (looseness-spread . 0.0559) (bps q 16 33 52 70 86) (piece-count . 100) (avg-piece-length . 18.930609999999998) (avg-looseness . 0.0136) (looseness-sd . 0.019246921831815082) (looseness-variance . 0.000370444) (looses q 0.0184 0.0484 0.0053 -0.0075 0.0034 0.1034)) (fu h - (equal) (time . 12) (line-count . 6) (looseness-spread . 0.051) (bps q 16 31 47 62 76) (piece-count . 90) (avg-piece-length . 21.034011111111102) (avg-looseness . 0.0154) (looseness-sd . 0.01734893656683314) (looseness-variance . 0.00030098559999999997) (looses q -0.007 0.0218 0.0149 0.044 0.0034 0.1034)) (bu h - (equal) (time . 18) (line-count . 6) (looseness-spread . 0.0476) (bps q 15 31 47 62 76) (piece-count . 90) (avg-piece-length . 21.034011111111102) (avg-looseness . 0.0154) (looseness-sd . 0.016323038932747787) (looseness-variance . 0.00026644159999999995) (looses q 0.0184 -0.0036 0.0149 0.044 0.0034 0.1034)) (fh h - (equal) (time . 32) (line-count . 6) (looseness-spread . 0.051) (bps q 17 34 53 70 86) (piece-count . 100) (avg-piece-length . 18.930609999999998) (avg-looseness . 0.0154) (looseness-sd . 0.01734893656683314) (looseness-variance . 0.00030098559999999997) (looses q -0.007 0.0218 0.0149 0.044 0.0034 0.1034)) (fh-improved . 28) (bu-improved . 1) (bh-improved . 3)) c (h - (equal) (text u . "The fresh harrow-lines seemed to stretch like the channellings in a piece of new corduroy, lending a meanly utilitarian air to the expanse, taking away its gradations, and depriving it of all history beyond that of the few recent months, though to every clod and stone there really attached associations enough and to spare—echoes of songs from ancient harvest-days, of spoken words, and of sturdy deeds. Every inch of ground had been the site, first or last, of energy, gaiety, horse-play, bickerings, weariness. Groups of gleaners had squatted in the sun on every square yard. Love-matches that had populated the adjoining hamlet had been made up there between reaping and carrying. Under the hedge which divided the field from a distant plantation girls had given themselves to lovers who would not turn their heads to look at them by the next harvest; and in that ancient cornfield many a man had made love-promises to a woman at whose voice he had trembled by the next seed-time after fulfilling them in the church adjoining. But this neither Jude nor the rooks around him considered. For them it was a lonely place, possessing, in the one view, only the quality of a work-ground, and in the other that of a granary good to feed in.") (measure . 360) (bh h - (equal) (time . 79) (line-count . 16) (looseness-spread . 0.0583) (bps q 17 36 53 68 84 99 116 132 149 166 183 199 217 233 253) (piece-count . 267) (avg-piece-length . 19.004589887640453) (avg-looseness . 0.02) (looseness-sd . 0.018114850874965057) (looseness-variance . 0.00032814782222222226) (looses q -0.0103 0.042 0.0407 0.0262 0.0132 0.0457 0.0357 0.0215 -0.0126 0.0151 0.0059 0.0358 0.0173 0.027 -0.0025 0.2051)) (fu h - (equal) (time . 52) (line-count . 16) (looseness-spread . 0.1033) (bps q 15 27 41 54 67 82 93 106 119 132 148 163 178 190 207) (piece-count . 220) (avg-piece-length . 23.064661363636375) (avg-looseness . 0.0207) (looseness-sd . 0.02660189132791543) (looseness-variance . 0.0007076606222222222) (looses q -0.0103 0.0907 0.0014 -0.0063 0.0457 0.0457 0.0357 0.0215 -0.0126 0.0151 0.0059 0.0358 0.0173 0.027 -0.0025 0.2051)) (bu h - (equal) (time . 65) (line-count . 16) (looseness-spread . 0.0619) (bps q 14 27 41 53 67 82 93 106 119 132 148 163 178 190 207) (piece-count . 220) (avg-piece-length . 23.064661363636375) (avg-looseness . 0.0207) (looseness-sd . 0.01714730947473166) (looseness-variance . 0.0002940302222222222) (looses q 0.0493 0.031 0.0014 0.0262 0.0132 0.0457 0.0357 0.0215 -0.0126 0.0151 0.0059 0.0358 0.0173 0.027 -0.0025 0.2051)) (fh h - (equal) (time . 32) (line-count . 16) (looseness-spread . 0.0834) (bps q 17 37 53 69 84 99 116 132 149 166 183 199 217 233 253) (piece-count . 267) (avg-piece-length . 19.004589887640453) (avg-looseness . 0.0201) (looseness-sd . 0.02298094476348225) (looseness-variance . 0.0005281238222222222) (looses q -0.0103 0.012 0.0708 -0.0063 0.0457 0.0457 0.0357 0.0215 -0.0126 0.0151 0.0059 0.0358 0.0173 0.027 -0.0025 0.2051)) (fh-improved . 385) (bu-improved . 2) (bh-improved . 2)) c (h - (equal) (text u . "The boy stood under the rick before mentioned, and every few seconds used his clacker or rattle briskly. At each clack the rooks left off pecking, and rose and went away on their leisurely wings, burnished like tassets of mail, afterwards wheeling back and regarding him warily, and descending to feed at a more respectful distance.") (measure . 360) (bh h - (equal) (time . 13) (line-count . 5) (looseness-spread . 0.0253) (bps q 15 32 47 64) (piece-count . 69) (avg-piece-length . 19.823999999999995) (avg-looseness . 0.0434) (looseness-sd . 0.010286732960469034) (looseness-variance . 0.000105816875) (looses q 0.03 0.0371 0.0513 0.0553 0.6843)) (fu h - (equal) (time . 26) (line-count . 5) (looseness-spread . 0.1305) (bps q 13 28 40 53) (piece-count . 56) (avg-piece-length . 24.42600000000001) (avg-looseness . 0.0472) (looseness-sd . 0.04818096097007613) (looseness-variance . 0.002321405) (looses q 0.03 0.0371 0.1261 -0.0044 0.6843)) (bu h - (equal) (time . 12) (line-count . 5) (looseness-spread . 0.1021) (bps q 13 27 40 53) (piece-count . 56) (avg-piece-length . 24.42600000000001) (avg-looseness . 0.0472) (looseness-sd . 0.03822152534894441) (looseness-variance . 0.0014608849999999999) (looses q 0.03 0.0977 0.0655 -0.0044 0.6843)) (fh h - (equal) (time . 9) (line-count . 5) (looseness-spread . 0.0253) (bps q 15 32 47 64) (piece-count . 69) (avg-piece-length . 19.823999999999995) (avg-looseness . 0.0434) (looseness-sd . 0.010286732960469034) (looseness-variance . 0.000105816875) (looses q 0.03 0.0371 0.0513 0.0553 0.6843)) (fh-improved . 24) (bu-improved . 1) (bh-improved . 0)) c (h - (equal) (text u . "He sounded the clacker till his arm ached, and at length his heart grew sympathetic with the birds’ thwarted desires. They seemed, like himself, to be living in a world which did not want them. Why should he frighten them away? They took upon more and more the aspect of gentle friends and pensioners—the only friends he could claim as being in the least degree interested in him, for his aunt had often told him that she was not. He ceased his rattling, and they alighted anew.") (measure . 360) (bh h - (equal) (time . 19) (line-count . 7) (looseness-spread . 0.0456) (bps q 16 31 46 62 78 95) (piece-count . 97) (avg-piece-length . 20.275092783505155) (avg-looseness . 0.0224) (looseness-sd . 0.01552628595497183) (looseness-variance . 0.00024106555555555552) (looses q 0.0147 0.0094 0.0009 0.0465 0.0335 0.0296 0.8251)) (fu h - (equal) (time . 36) (line-count . 7) (looseness-spread . 0.1084) (bps q 14 26 41 54 69 85) (piece-count . 88) (avg-piece-length . 22.34868181818182) (avg-looseness . 0.0344) (looseness-sd . 0.036669215820479294) (looseness-variance . 0.0013446313888888888) (looses q 0.1065 0.005 -0.0019 0.0124 0.0357 0.0486 0.7624)) (bu h - (equal) (time . 18) (line-count . 7) (looseness-spread . 0.1084) (bps q 14 26 41 54 69 85) (piece-count . 88) (avg-piece-length . 22.34868181818182) (avg-looseness . 0.0344) (looseness-sd . 0.036669215820479294) (looseness-variance . 0.0013446313888888888) (looses q 0.1065 0.005 -0.0019 0.0124 0.0357 0.0486 0.7624)) (fh h - (equal) (time . 13) (line-count . 7) (looseness-spread . 0.0844) (bps q 16 31 46 62 79 95) (piece-count . 97) (avg-piece-length . 20.275092783505155) (avg-looseness . 0.0224) (looseness-sd . 0.02886361127017123) (looseness-variance . 0.0008331080555555556) (looses q 0.0147 0.0094 0.0009 0.0465 -0.0107 0.0737 0.8251)) (fh-improved . 40) (bu-improved . 0) (bh-improved . 1)) c (h - (equal) (text u . "“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— you shall. There is enough for us all. Farmer Troutham can afford to let you have some. Eat, then my dear little birdies, and make a good meal!”") (measure . 360) (bh h - (equal) (time . 8) (line-count . 3) (looseness-spread . 0.0141) (bps q 14 29) (piece-count . 42) (avg-piece-length . 21.47077380952381) (avg-looseness . 0.0348) (looseness-sd . 0.007050000000000001) (looseness-variance . 4.970250000000001e-05) (looses q 0.0419 0.0278 0.2223)) (fu h - (equal) (time . 25) (line-count . 3) (looseness-spread . 0.0141) (bps q 12 27) (piece-count . 39) (avg-piece-length . 23.122371794871793) (avg-looseness . 0.0348) (looseness-sd . 0.007050000000000001) (looseness-variance . 4.970250000000001e-05) (looses q 0.0419 0.0278 0.2223)) (bu h - (equal) (time . 8) (line-count . 3) (looseness-spread . 0.0141) (bps q 12 27) (piece-count . 39) (avg-piece-length . 23.122371794871793) (avg-looseness . 0.0348) (looseness-sd . 0.007050000000000001) (looseness-variance . 4.970250000000001e-05) (looses q 0.0419 0.0278 0.2223)) (fh h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0141) (bps q 14 29) (piece-count . 42) (avg-piece-length . 21.47077380952381) (avg-looseness . 0.0348) (looseness-sd . 0.007050000000000001) (looseness-variance . 4.970250000000001e-05) (looses q 0.0419 0.0278 0.2223)) (fh-improved . 4) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "They stayed and ate, inky spots on the nut-brown soil, and Jude enjoyed their appetite. A magic thread of fellow-feeling united his own life with theirs. Puny and sorry as those lives were, they much resembled his own.") (measure . 360) (bh h - (equal) (time . 8) (line-count . 3) (looseness-spread . 0.01) (bps q 15 31) (piece-count . 42) (avg-piece-length . 21.34755952380953) (avg-looseness . 0.0135) (looseness-sd . 0.004999999999999999) (looseness-variance . 2.499999999999999e-05) (looses q 0.0185 0.0085 0.2406)) (fu h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.01) (bps q 15 29) (piece-count . 39) (avg-piece-length . 22.989679487179494) (avg-looseness . 0.0135) (looseness-sd . 0.004999999999999999) (looseness-variance . 2.499999999999999e-05) (looses q 0.0185 0.0085 0.2406)) (bu h - (equal) (time . 7) (line-count . 3) (looseness-spread . 0.01) (bps q 15 29) (piece-count . 39) (avg-piece-length . 22.989679487179494) (avg-looseness . 0.0135) (looseness-sd . 0.004999999999999999) (looseness-variance . 2.499999999999999e-05) (looses q 0.0185 0.0085 0.2406)) (fh h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.01) (bps q 15 31) (piece-count . 42) (avg-piece-length . 21.34755952380953) (avg-looseness . 0.0135) (looseness-sd . 0.004999999999999999) (looseness-variance . 2.499999999999999e-05) (looses q 0.0185 0.0085 0.2406)) (fh-improved . 2) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "His clacker he had by this time thrown away from him, as being a mean and sordid instrument, offensive both to the birds and to himself as their friend. All at once he became conscious of a smart blow upon his buttocks, followed by a loud clack, which announced to his surprised senses that the clacker had been the instrument of offence used. The birds and Jude started up simultaneously, and the dazed eyes of the latter beheld the farmer in person, the great Troutham himself, his red face glaring down upon Jude’s cowering frame, the clacker swinging in his hand.") (measure . 360) (bh h - (equal) (time . 46) (line-count . 8) (looseness-spread . 0.0359) (bps q 16 33 50 65 81 98 114) (piece-count . 120) (avg-piece-length . 19.57299999999999) (avg-looseness . 0.0304) (looseness-sd . 0.013243157648000567) (looseness-variance . 0.0001753812244897959) (looses q 0.0448 0.0498 0.0293 0.023 0.0139 0.0377 0.0142 0.6415)) (fu h - (equal) (time . 33) (line-count . 8) (looseness-spread . 0.121) (bps q 16 30 45 58 70 84 96) (piece-count . 101) (avg-piece-length . 23.255049504950488) (avg-looseness . 0.0317) (looseness-sd . 0.037790566796166346) (looseness-variance . 0.00142812693877551) (looses q 0.0448 -0.0023 0.0172 0.013 0.0164 0.1187 0.0142 0.6415)) (bu h - (equal) (time . 21) (line-count . 8) (looseness-spread . 0.121) (bps q 16 30 45 58 70 84 96) (piece-count . 101) (avg-piece-length . 23.255049504950488) (avg-looseness . 0.0317) (looseness-sd . 0.037790566796166346) (looseness-variance . 0.00142812693877551) (looses q 0.0448 -0.0023 0.0172 0.013 0.0164 0.1187 0.0142 0.6415)) (fh h - (equal) (time . 15) (line-count . 8) (looseness-spread . 0.121) (bps q 16 34 52 66 82 98 114) (piece-count . 120) (avg-piece-length . 19.57299999999999) (avg-looseness . 0.0317) (looseness-sd . 0.037790566796166346) (looseness-variance . 0.00142812693877551) (looses q 0.0448 -0.0023 0.0172 0.013 0.0164 0.1187 0.0142 0.6415)) (fh-improved . 63) (bu-improved . 0) (bh-improved . 5)) c (h - (equal) (text u . "“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear birdies,’ indeed! I’ll tickle your breeches, and see if you say, ‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s how you earn your sixpence a day for keeping the rooks off my corn!”") (measure . 360) (bh h - (equal) (time . 32) (line-count . 5) (looseness-spread . 0.059) (bps q 15 30 45 62) (piece-count . 65) (avg-piece-length . 20.546430769230764) (avg-looseness . 0.0344) (looseness-sd . 0.023734889930227186) (looseness-variance . 0.0005633449999999999) (looses q 0.0148 0.0416 0.0701 0.0111 0.8412)) (fu h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.059) (bps q 15 30 42 57) (piece-count . 60) (avg-piece-length . 22.25863333333333) (avg-looseness . 0.0344) (looseness-sd . 0.023734889930227186) (looseness-variance . 0.0005633449999999999) (looses q 0.0148 0.0416 0.0701 0.0111 0.8412)) (bu h - (equal) (time . 12) (line-count . 5) (looseness-spread . 0.059) (bps q 15 30 42 57) (piece-count . 60) (avg-piece-length . 22.25863333333333) (avg-looseness . 0.0344) (looseness-sd . 0.023734889930227186) (looseness-variance . 0.0005633449999999999) (looses q 0.0148 0.0416 0.0701 0.0111 0.8412)) (fh h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.059) (bps q 15 30 45 62) (piece-count . 65) (avg-piece-length . 20.546430769230764) (avg-looseness . 0.0344) (looseness-sd . 0.023734889930227186) (looseness-variance . 0.0005633449999999999) (looses q 0.0148 0.0416 0.0701 0.0111 0.8412)) (fh-improved . 8) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham had seized his left hand with his own left, and swinging his slim frame round him at arm’s-length, again struck Jude on the hind parts with the flat side of Jude’s own rattle, till the field echoed with the blows, which were delivered once or twice at each revolution.") (measure . 360) (bh h - (equal) (time . 33) (line-count . 5) (looseness-spread . 0.0576) (bps q 12 28 44 60) (piece-count . 67) (avg-piece-length . 20.503298507462688) (avg-looseness . 0.0329) (looseness-sd . 0.020793628831928302) (looseness-variance . 0.000432375) (looses q 0.0658 0.0275 0.0082 0.0301 0.6952)) (fu h - (equal) (time . 9) (line-count . 5) (looseness-spread . 0.069) (bps q 10 26 41 55) (piece-count . 59) (avg-piece-length . 23.283406779661018) (avg-looseness . 0.0329) (looseness-sd . 0.024644776322782887) (looseness-variance . 0.000607365) (looses q 0.0658 -0.0032 0.0389 0.0301 0.6952)) (bu h - (equal) (time . 12) (line-count . 5) (looseness-spread . 0.0576) (bps q 10 25 41 55) (piece-count . 59) (avg-piece-length . 23.283406779661018) (avg-looseness . 0.0329) (looseness-sd . 0.020793628831928302) (looseness-variance . 0.000432375) (looses q 0.0658 0.0275 0.0082 0.0301 0.6952)) (fh h - (equal) (time . 9) (line-count . 5) (looseness-spread . 0.069) (bps q 12 29 44 60) (piece-count . 67) (avg-piece-length . 20.503298507462688) (avg-looseness . 0.0329) (looseness-sd . 0.024644776322782887) (looseness-variance . 0.000607365) (looses q 0.0658 -0.0032 0.0389 0.0301 0.6952)) (fh-improved . 13) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as helpless under the centrifugal tendency of his person as a hooked fish swinging to land, and beholding the hill, the rick, the plantation, the path, and the rooks going round and round him in an amazing circular race. “I—I sir—only meant that—there was a good crop in the ground—I saw ‘em sow it—and the rooks could have a little bit for dinner—and you wouldn’t miss it, sir—and Mr. Phillotson said I was to be kind to ‘em—oh, oh, oh!”") (measure . 360) (bh h - (equal) (time . 44) (line-count . 7) (looseness-spread . 0.0315) (bps q 14 33 50 68 86 104) (piece-count . 112) (avg-piece-length . 17.802) (avg-looseness . 0.0178) (looseness-sd . 0.011390895487186246) (looseness-variance . 0.0001297525) (looses q 0.0248 0.0347 0.0032 0.007 0.0112 0.0262 0.5555)) (fu h - (equal) (time . 13) (line-count . 7) (looseness-spread . 0.0315) (bps q 13 27 41 56 74 89) (piece-count . 97) (avg-piece-length . 20.554886597938147) (avg-looseness . 0.0178) (looseness-sd . 0.011390895487186246) (looseness-variance . 0.0001297525) (looses q 0.0248 0.0347 0.0032 0.007 0.0112 0.0262 0.5555)) (bu h - (equal) (time . 20) (line-count . 7) (looseness-spread . 0.0315) (bps q 13 27 41 56 74 89) (piece-count . 97) (avg-piece-length . 20.554886597938147) (avg-looseness . 0.0178) (looseness-sd . 0.011390895487186246) (looseness-variance . 0.0001297525) (looses q 0.0248 0.0347 0.0032 0.007 0.0112 0.0262 0.5555)) (fh h - (equal) (time . 13) (line-count . 7) (looseness-spread . 0.0315) (bps q 14 33 50 68 86 104) (piece-count . 112) (avg-piece-length . 17.802) (avg-looseness . 0.0178) (looseness-sd . 0.011390895487186246) (looseness-variance . 0.0001297525) (looses q 0.0248 0.0347 0.0032 0.007 0.0112 0.0262 0.5555)) (fh-improved . 55) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "This truthful explanation seemed to exasperate the farmer even more than if Jude had stoutly denied saying anything at all, and he still smacked the whirling urchin, the clacks of the instrument continuing to resound all across the field and as far as the ears of distant workers—who gathered thereupon that Jude was pursuing his business of clacking with great assiduity—and echoing from the brand-new church tower just behind the mist, towards the building of which structure the farmer had largely subscribed, to testify his love for God and man.") (measure . 360) (bh h - (equal) (time . 23) (line-count . 8) (looseness-spread . 0.0779) (bps q 17 33 50 68 85 99 115) (piece-count . 116) (avg-piece-length . 19.530073275862062) (avg-looseness . 0.0295) (looseness-sd . 0.021405168172424993) (looseness-variance . 0.00045818122448979594) (looses q 0.0306 -0.0062 0.0259 0.0353 0.0193 0.0717 0.0298 0.8888)) (fu h - (equal) (time . 13) (line-count . 8) (looseness-spread . 0.0779) (bps q 12 26 39 53 65 78 91) (piece-count . 92) (avg-piece-length . 24.624875) (avg-looseness . 0.0295) (looseness-sd . 0.021405168172424993) (looseness-variance . 0.00045818122448979594) (looses q 0.0306 -0.0062 0.0259 0.0353 0.0193 0.0717 0.0298 0.8888)) (bu h - (equal) (time . 19) (line-count . 8) (looseness-spread . 0.0779) (bps q 12 26 39 53 65 78 91) (piece-count . 92) (avg-piece-length . 24.624875) (avg-looseness . 0.0295) (looseness-sd . 0.021405168172424993) (looseness-variance . 0.00045818122448979594) (looses q 0.0306 -0.0062 0.0259 0.0353 0.0193 0.0717 0.0298 0.8888)) (fh h - (equal) (time . 34) (line-count . 8) (looseness-spread . 0.0779) (bps q 17 33 50 68 85 99 115) (piece-count . 116) (avg-piece-length . 19.530073275862062) (avg-looseness . 0.0295) (looseness-sd . 0.021405168172424993) (looseness-variance . 0.00045818122448979594) (looses q 0.0306 -0.0062 0.0259 0.0353 0.0193 0.0717 0.0298 0.8888)) (fh-improved . 103) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Presently Troutham grew tired of his punitive task, and depositing the quivering boy on his legs, took a sixpence from his pocket and gave it him in payment for his day’s work, telling him to go home and never let him see him in one of those fields again.") (measure . 360) (bh h - (equal) (time . 11) (line-count . 4) (looseness-spread . 0.0181) (bps q 15 34 52) (piece-count . 55) (avg-piece-length . 18.821527272727277) (avg-looseness . 0.0132) (looseness-sd . 0.00812171301033361) (looseness-variance . 6.596222222222222e-05) (looses q 0.018 0.0018 0.0199 0.7797)) (fu h - (equal) (time . 7) (line-count . 4) (looseness-spread . 0.0878) (bps q 11 27 43) (piece-count . 49) (avg-piece-length . 21.126204081632654) (avg-looseness . 0.0556) (looseness-sd . 0.03785137602078248) (looseness-variance . 0.0014327266666666668) (looses q 0.1081 0.0384 0.0203 0.6617)) (bu h - (equal) (time . 9) (line-count . 4) (looseness-spread . 0.0878) (bps q 11 27 43) (piece-count . 49) (avg-piece-length . 21.126204081632654) (avg-looseness . 0.0556) (looseness-sd . 0.03785137602078248) (looseness-variance . 0.0014327266666666668) (looses q 0.1081 0.0384 0.0203 0.6617)) (fh h - (equal) (time . 8) (line-count . 4) (looseness-spread . 0.0181) (bps q 15 34 52) (piece-count . 55) (avg-piece-length . 18.821527272727277) (avg-looseness . 0.0132) (looseness-sd . 0.00812171301033361) (looseness-variance . 6.596222222222222e-05) (looses q 0.018 0.0018 0.0199 0.7797)) (fh-improved . 20) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Jude leaped out of arm’s reach, and walked along the trackway weeping—not from the pain, though that was keen enough; not from the perception of the flaw in the terrestrial scheme, by which what was good for God’s birds was bad for God’s gardener; but with the awful sense that he had wholly disgraced himself before he had been a year in the parish, and hence might be a burden to his great-aunt for life.") (measure . 360) (bh h - (equal) (time . 17) (line-count . 6) (looseness-spread . 0.039) (bps q 15 31 48 64 83) (piece-count . 87) (avg-piece-length . 19.24425862068965) (avg-looseness . 0.0131) (looseness-sd . 0.014844338988314701) (looseness-variance . 0.00022035439999999994) (looses q 0.0209 0.0387 -0.0003 0.004 0.002 0.7776)) (fu h - (equal) (time . 10) (line-count . 6) (looseness-spread . 0.0668) (bps q 13 27 42 55 72) (piece-count . 77) (avg-piece-length . 21.743512987012977) (avg-looseness . 0.0237) (looseness-sd . 0.02493824372324563) (looseness-variance . 0.000621916) (looses q 0.0209 0.0387 -0.0003 0.063 -0.0038 0.7334)) (bu h - (equal) (time . 18) (line-count . 6) (looseness-spread . 0.0559) (bps q 13 27 41 55 72) (piece-count . 77) (avg-piece-length . 21.743512987012977) (avg-looseness . 0.0237) (looseness-sd . 0.01983562451751898) (looseness-variance . 0.000393452) (looses q 0.0209 0.0387 0.0521 0.0106 -0.0038 0.7334)) (fh h - (equal) (time . 33) (line-count . 6) (looseness-spread . 0.039) (bps q 15 31 48 64 83) (piece-count . 87) (avg-piece-length . 19.24425862068965) (avg-looseness . 0.0131) (looseness-sd . 0.014844338988314701) (looseness-variance . 0.00022035439999999994) (looses q 0.0209 0.0387 -0.0003 0.004 0.002 0.7776)) (fh-improved . 32) (bu-improved . 1) (bh-improved . 0)) c (h - (equal) (text u . "With this shadow on his mind he did not care to show himself in the village, and went homeward by a roundabout track behind a high hedge and across a pasture. Here he beheld scores of coupled earthworms lying half their length on the surface of the damp ground, as they always did in such weather at that time of the year. It was impossible to advance in regular steps without crushing some of them at each tread.") (measure . 360) (bh h - (equal) (time . 19) (line-count . 6) (looseness-spread . 0.0459) (bps q 18 34 49 66 86) (piece-count . 92) (avg-piece-length . 18.551874999999995) (avg-looseness . 0.0256) (looseness-sd . 0.01526866071402466) (looseness-variance . 0.00023313200000000004) (looses q 0.0449 0.0345 0.0264 0.0232 -0.001 0.6559)) (fu h - (equal) (time . 11) (line-count . 6) (looseness-spread . 0.077) (bps q 16 30 43 59 72) (piece-count . 78) (avg-piece-length . 21.881698717948716) (avg-looseness . 0.0256) (looseness-sd . 0.028964419552271373) (looseness-variance . 0.0008389376000000001) (looses q 0.0449 0.0345 -0.0131 -0.0023 0.0639 0.6559)) (bu h - (equal) (time . 16) (line-count . 6) (looseness-spread . 0.0459) (bps q 16 30 42 58 72) (piece-count . 78) (avg-piece-length . 21.881698717948716) (avg-looseness . 0.0256) (looseness-sd . 0.01526866071402466) (looseness-variance . 0.00023313200000000004) (looses q 0.0449 0.0345 0.0264 0.0232 -0.001 0.6559)) (fh h - (equal) (time . 30) (line-count . 6) (looseness-spread . 0.077) (bps q 18 34 50 67 86) (piece-count . 92) (avg-piece-length . 18.551874999999995) (avg-looseness . 0.0256) (looseness-sd . 0.028964419552271373) (looseness-variance . 0.0008389376000000001) (looses q 0.0449 0.0345 -0.0131 -0.0023 0.0639 0.6559)) (fh-improved . 35) (bu-improved . 2) (bh-improved . 2)) c (h - (equal) (text u . "Though Farmer Troutham had just hurt him, he was a boy who could not himself bear to hurt anything. He had never brought home a nest of young birds without lying awake in misery half the night after, and often reinstating them and the nest in their original place the next morning. He could scarcely bear to see trees cut down or lopped, from a fancy that it hurt them; and late pruning, when the sap was up and the tree bled profusely, had been a positive grief to him in his infancy. This weakness of character, as it may be called, suggested that he was the sort of man who was born to ache a good deal before the fall of the curtain upon his unnecessary life should signify that all was well with him again. He carefully picked his way on tiptoe among the earthworms, without killing a single one.") (measure . 360) (bh h - (equal) (time . 61) (line-count . 11) (looseness-spread . 0.0345) (bps q 15 31 48 66 83 102 120 139 157 173) (piece-count . 177) (avg-piece-length . 18.446454802259886) (avg-looseness . 0.0222) (looseness-sd . 0.011753216581004537) (looseness-variance . 0.00013813809999999998) (looses q 0.0081 0.0389 0.0279 0.0044 0.0169 0.0366 0.0301 0.0102 0.0171 0.0315 0.7637)) (fu h - (equal) (time . 21) (line-count . 11) (looseness-spread . 0.0782) (bps q 14 29 42 57 73 89 103 122 136 148) (piece-count . 151) (avg-piece-length . 21.62266556291391) (avg-looseness . 0.0231) (looseness-sd . 0.020052483636696976) (looseness-variance . 0.00040210210000000003) (looses q 0.0671 -0.0111 0.0279 0.0044 0.0169 0.0366 0.0301 0.0102 0.0171 0.0315 0.7637)) (bu h - (equal) (time . 50) (line-count . 11) (looseness-spread . 0.0782) (bps q 14 29 42 57 73 89 103 122 136 148) (piece-count . 151) (avg-piece-length . 21.62266556291391) (avg-looseness . 0.0231) (looseness-sd . 0.020052483636696976) (looseness-variance . 0.00040210210000000003) (looses q 0.0671 -0.0111 0.0279 0.0044 0.0169 0.0366 0.0301 0.0102 0.0171 0.0315 0.7637)) (fh h - (equal) (time . 22) (line-count . 11) (looseness-spread . 0.0345) (bps q 15 31 48 66 83 102 120 139 157 173) (piece-count . 177) (avg-piece-length . 18.446454802259886) (avg-looseness . 0.0222) (looseness-sd . 0.011753216581004537) (looseness-variance . 0.00013813809999999998) (looses q 0.0081 0.0389 0.0279 0.0044 0.0169 0.0366 0.0301 0.0102 0.0171 0.0315 0.7637)) (fh-improved . 121) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "On entering the cottage he found his aunt selling a penny loaf to a little girl, and when the customer was gone she said, “Well, how do you come to be back here in the middle of the morning like this?”") (measure . 360) (bh h - (equal) (time . 27) (line-count . 3) (looseness-spread . 0.004) (bps q 21 38) (piece-count . 48) (avg-piece-length . 16.973041666666667) (avg-looseness . -0.0085) (looseness-sd . 0.0020000000000000005) (looseness-variance . 4.000000000000002e-06) (looses q -0.0105 -0.0065 0.5128)) (fu h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.004) (bps q 17 33) (piece-count . 41) (avg-piece-length . 19.870878048780487) (avg-looseness . -0.0085) (looseness-sd . 0.0020000000000000005) (looseness-variance . 4.000000000000002e-06) (looses q -0.0105 -0.0065 0.5128)) (bu h - (equal) (time . 8) (line-count . 3) (looseness-spread . 0.004) (bps q 17 33) (piece-count . 41) (avg-piece-length . 19.870878048780487) (avg-looseness . -0.0085) (looseness-sd . 0.0020000000000000005) (looseness-variance . 4.000000000000002e-06) (looses q -0.0105 -0.0065 0.5128)) (fh h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.004) (bps q 21 38) (piece-count . 48) (avg-piece-length . 16.973041666666667) (avg-looseness . -0.0085) (looseness-sd . 0.0020000000000000005) (looseness-variance . 4.000000000000002e-06) (looses q -0.0105 -0.0065 0.5128)) (fh-improved . 9) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Ah!” said his aunt, suspending her breath. And she opened upon him a lecture on how she would now have him all the spring upon her hands doing nothing. “If you can’t skeer birds, what can ye do? There! don’t ye look so deedy! Farmer Troutham is not so much better than myself, come to that. But ‘tis as Job said, ‘Now they that are younger than I have me in derision, whose fathers I would have disdained to have set with the dogs of my flock.’ His father was my father’s journeyman, anyhow, and I must have been a fool to let ‘ee go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of mischty.”") (measure . 360) (bh h - (equal) (time . 50) (line-count . 8) (looseness-spread . 0.0473) (bps q 16 32 48 64 80 97 116) (piece-count . 132) (avg-piece-length . 19.122496212121213) (avg-looseness . 0.0229) (looseness-sd . 0.01526451132930396) (looseness-variance . 0.00023300530612244895) (looses q 0.0501 0.0028 0.0196 0.0206 0.0046 0.0312 0.0311 0.1056)) (fu h - (equal) (time . 16) (line-count . 9) (looseness-spread . 0.1049) (bps q 13 28 43 57 73 88 103 120) (piece-count . 121) (avg-piece-length . 20.860904958677686) (avg-looseness . 0.0523) (looseness-sd . 0.03667062644338109) (looseness-variance . 0.00134473484375) (looses q 0.0957 0.0345 0.0546 0.0087 0.0268 0.074 0.0102 0.1136 0.8919)) (bu h - (equal) (time . 43) (line-count . 9) (looseness-spread . 0.0659) (bps q 13 28 43 56 72 87 101 120) (piece-count . 121) (avg-piece-length . 20.860904958677686) (avg-looseness . 0.0527) (looseness-sd . 0.020788003601837284) (looseness-variance . 0.0004321410937499999) (looses q 0.0957 0.0345 0.0546 0.0686 0.0586 0.0482 0.0298 0.0317 0.8919)) (fh h - (equal) (time . 17) (line-count . 8) (looseness-spread . 0.0473) (bps q 16 32 48 64 80 97 116) (piece-count . 132) (avg-piece-length . 19.122496212121213) (avg-looseness . 0.0229) (looseness-sd . 0.01526451132930396) (looseness-variance . 0.00023300530612244895) (looses q 0.0501 0.0028 0.0196 0.0206 0.0046 0.0312 0.0311 0.1056)) (fh-improved . 48) (bu-improved . 5) (bh-improved . 0)) c (h - (equal) (text u . "More angry with Jude for demeaning her by coming there than for dereliction of duty, she rated him primarily from that point of view, and only secondarily from a moral one.") (measure . 360) (bh h - (equal) (time . 7) (line-count . 3) (looseness-spread . 0.0082) (bps q 17 36) (piece-count . 39) (avg-piece-length . 18.52089743589744) (avg-looseness . 0.0194) (looseness-sd . 0.0041) (looseness-variance . 1.6810000000000003e-05) (looses q 0.0153 0.0235 0.7809)) (fu h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.0082) (bps q 13 27) (piece-count . 30) (avg-piece-length . 24.077166666666663) (avg-looseness . 0.0194) (looseness-sd . 0.0041) (looseness-variance . 1.6810000000000003e-05) (looses q 0.0153 0.0235 0.7809)) (bu h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.0082) (bps q 13 27) (piece-count . 30) (avg-piece-length . 24.077166666666663) (avg-looseness . 0.0194) (looseness-sd . 0.0041) (looseness-variance . 1.6810000000000003e-05) (looses q 0.0153 0.0235 0.7809)) (fh h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0082) (bps q 17 36) (piece-count . 39) (avg-piece-length . 18.52089743589744) (avg-looseness . 0.0194) (looseness-sd . 0.0041) (looseness-variance . 1.6810000000000003e-05) (looses q 0.0153 0.0235 0.7809)) (fh-improved . 13) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Not that you should have let the birds eat what Farmer Troutham planted. Of course you was wrong in that. Jude, Jude, why didstn’t go off with that schoolmaster of thine to Christminster or somewhere? But, oh no—poor or’nary child—there never was any sprawl on thy side of the family, and never will be!”") (measure . 360) (bh h - (equal) (time . 11) (line-count . 5) (looseness-spread . 0.0682) (bps q 13 29 45 61) (piece-count . 62) (avg-piece-length . 20.614677419354845) (avg-looseness . 0.0509) (looseness-sd . 0.026747838697734064) (looseness-variance . 0.0007154468749999999) (looses q 0.0592 0.0653 0.0736 0.0054 0.9042)) (fu h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.1002) (bps q 14 28 39 54) (piece-count . 55) (avg-piece-length . 23.238363636363637) (avg-looseness . 0.0493) (looseness-sd . 0.041957202897714714) (looseness-variance . 0.001760406875) (looses q 0.0125 0.1056 0.0736 0.0054 0.9042)) (bu h - (equal) (time . 32) (line-count . 5) (looseness-spread . 0.0682) (bps q 13 28 39 54) (piece-count . 55) (avg-piece-length . 23.238363636363637) (avg-looseness . 0.0509) (looseness-sd . 0.026747838697734064) (looseness-variance . 0.0007154468749999999) (looses q 0.0592 0.0653 0.0736 0.0054 0.9042)) (fh h - (equal) (time . 8) (line-count . 5) (looseness-spread . 0.0968) (bps q 14 30 46 61) (piece-count . 62) (avg-piece-length . 20.614677419354845) (avg-looseness . 0.047) (looseness-sd . 0.03938282461936929) (looseness-variance . 0.0015510068749999997) (looses q 0.0125 0.0138 0.0525 0.1093 0.9042)) (fh-improved . 16) (bu-improved . 1) (bh-improved . 3)) c (h - (equal) (text u . "“Lord! you ought to know where the city of Christminster is. Near a score of miles from here. It is a place much too good for you ever to have much to do with, poor boy, I’m a-thinking.”") (measure . 360) (bh h - (equal) (time . 8) (line-count . 3) (looseness-spread . 0.0025) (bps q 17 35) (piece-count . 42) (avg-piece-length . 18.068964285714287) (avg-looseness . 0.0372) (looseness-sd . 0.0012499999999999976) (looseness-variance . 1.5624999999999941e-06) (looses q 0.0384 0.0359 0.6085)) (fu h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0025) (bps q 15 33) (piece-count . 39) (avg-piece-length . 19.458884615384616) (avg-looseness . 0.0372) (looseness-sd . 0.0012499999999999976) (looseness-variance . 1.5624999999999941e-06) (looses q 0.0384 0.0359 0.6085)) (bu h - (equal) (time . 7) (line-count . 3) (looseness-spread . 0.0025) (bps q 15 33) (piece-count . 39) (avg-piece-length . 19.458884615384616) (avg-looseness . 0.0372) (looseness-sd . 0.0012499999999999976) (looseness-variance . 1.5624999999999941e-06) (looses q 0.0384 0.0359 0.6085)) (fh h - (equal) (time . 24) (line-count . 3) (looseness-spread . 0.0025) (bps q 17 35) (piece-count . 42) (avg-piece-length . 18.068964285714287) (avg-looseness . 0.0372) (looseness-sd . 0.0012499999999999976) (looseness-variance . 1.5624999999999941e-06) (looses q 0.0384 0.0359 0.6085)) (fh-improved . 4) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as that. We’ve never had anything to do with folk in Christminster, nor folk in Christminster with we.”") (measure . 360) (bh h - (equal) (time . 7) (line-count . 3) (looseness-spread . 0.0367) (bps q 15 32) (piece-count . 35) (avg-piece-length . 20.56594285714286) (avg-looseness . 0.0416) (looseness-sd . 0.018349999999999998) (looseness-variance . 0.0003367224999999999) (looses q 0.06 0.0233 0.7863)) (fu h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.0533) (bps q 14 27) (piece-count . 29) (avg-piece-length . 24.820965517241376) (avg-looseness . 0.0866) (looseness-sd . 0.02665) (looseness-variance . 0.0007102225) (looses q 0.06 0.1133 0.7053)) (bu h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0715) (bps q 13 27) (piece-count . 29) (avg-piece-length . 24.820965517241376) (avg-looseness . 0.0834) (looseness-sd . 0.035750000000000004) (looseness-variance . 0.0012780625000000001) (looses q 0.1192 0.0477 0.7053)) (fh h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0367) (bps q 15 32) (piece-count . 35) (avg-piece-length . 20.56594285714286) (avg-looseness . 0.0416) (looseness-sd . 0.018349999999999998) (looseness-variance . 0.0003367224999999999) (looses q 0.06 0.0233 0.7863)) (fh-improved . 6) (bu-improved . 1) (bh-improved . 0)) c (h - (equal) (text u . "Jude went out, and, feeling more than ever his existence to be an undemanded one, he lay down upon his back on a heap of litter near the pig-sty. The fog had by this time become more translucent, and the position of the sun could be seen through it. He pulled his straw hat over his face, and peered through the interstices of the plaiting at the white brightness, vaguely reflecting. Growing up brought responsibilities, he found. Events did not rhyme quite as he had thought. Nature’s logic was too horrid for him to care for. That mercy towards one set of creatures was cruelty towards another sickened his sense of harmony. As you got older, and felt yourself to be at the centre of your time, and not at a point in its circumference, as you had felt when you were little, you were seized with a sort of shuddering, he perceived. All around you there seemed to be something glaring, garish, rattling, and the noises and glares hit upon the little cell called your life, and shook it, and warped it.") (measure . 360) (bh h - (equal) (time . 72) (line-count . 13) (looseness-spread . 0.0529) (bps q 17 36 52 67 83 100 115 131 150 170 187 204) (piece-count . 217) (avg-piece-length . 18.67255529953916) (avg-looseness . 0.0331) (looseness-sd . 0.018822642614680862) (looseness-variance . 0.00035429187500000004) (looses q 0.0093 0.0554 0.0339 0.0312 0.0115 0.0538 0.0597 0.0068 0.044 0.0528 0.0168 0.0223 0.2122)) (fu h - (equal) (time . 48) (line-count . 13) (looseness-spread . 0.1226) (bps q 14 33 47 62 73 86 100 112 128 145 158 171) (piece-count . 183) (avg-piece-length . 22.141773224043693) (avg-looseness . 0.0332) (looseness-sd . 0.03307601094448966) (looseness-variance . 0.0010940225) (looses q 0.0093 0.0017 0.0509 0.0197 0.0215 0.0466 0.0053 0.1149 0.044 -0.0077 0.0705 0.0223 0.2122)) (bu h - (equal) (time . 39) (line-count . 13) (looseness-spread . 0.0917) (bps q 14 32 46 61 72 84 99 112 128 144 158 171) (piece-count . 183) (avg-piece-length . 22.141773224043693) (avg-looseness . 0.0344) (looseness-sd . 0.02452840048913821) (looseness-variance . 0.0006016424305555556) (looses q 0.0093 0.0554 0.0339 0.0312 0.0985 0.0195 0.0218 0.0068 0.044 0.0528 0.0168 0.0223 0.2122)) (fh h - (equal) (time . 27) (line-count . 13) (looseness-spread . 0.0688) (bps q 17 37 53 68 84 101 116 132 151 171 187 204) (piece-count . 217) (avg-piece-length . 18.67255529953916) (avg-looseness . 0.0319) (looseness-sd . 0.022030589529107022) (looseness-variance . 0.00048534687499999997) (looses q 0.0093 0.0017 0.0509 0.0197 0.0215 0.0466 0.0053 0.0639 0.0251 0.0463 0.0705 0.0223 0.2122)) (fh-improved . 192) (bu-improved . 8) (bh-improved . 9)) c (h - (equal) (text u . "Then, like the natural boy, he forgot his despondency, and sprang up. During the remainder of the morning he helped his aunt, and in the afternoon, when there was nothing more to be done, he went into the village. Here he asked a man whereabouts Christminster lay.") (measure . 360) (bh h - (equal) (time . 11) (line-count . 4) (looseness-spread . 0.0086) (bps q 17 34 52) (piece-count . 58) (avg-piece-length . 19.236922413793103) (avg-looseness . 0.027) (looseness-sd . 0.0035562152165844333) (looseness-variance . 1.2646666666666667e-05) (looses q 0.0231 0.0262 0.0317 0.5461)) (fu h - (equal) (time . 7) (line-count . 4) (looseness-spread . 0.0086) (bps q 13 27 43) (piece-count . 46) (avg-piece-length . 24.25525) (avg-looseness . 0.027) (looseness-sd . 0.0035562152165844333) (looseness-variance . 1.2646666666666667e-05) (looses q 0.0231 0.0262 0.0317 0.5461)) (bu h - (equal) (time . 9) (line-count . 4) (looseness-spread . 0.0086) (bps q 13 27 43) (piece-count . 46) (avg-piece-length . 24.25525) (avg-looseness . 0.027) (looseness-sd . 0.0035562152165844333) (looseness-variance . 1.2646666666666667e-05) (looses q 0.0231 0.0262 0.0317 0.5461)) (fh h - (equal) (time . 31) (line-count . 4) (looseness-spread . 0.0086) (bps q 17 34 52) (piece-count . 58) (avg-piece-length . 19.236922413793103) (avg-looseness . 0.027) (looseness-sd . 0.0035562152165844333) (looseness-variance . 1.2646666666666667e-05) (looses q 0.0231 0.0262 0.0317 0.5461)) (fh-improved . 20) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "The man pointed north-eastward, in the very direction where lay that field in which Jude had so disgraced himself. There was something unpleasant about the coincidence for the moment, but the fearsomeness of this fact rather increased his curiosity about the city. The farmer had said he was never to be seen in that field again; yet Christminster lay across it, and the path was a public one. So, stealing out of the hamlet, he descended into the same hollow which had witnessed his punishment in the morning, never swerving an inch from the path, and climbing up the long and tedious ascent on the other side till the track joined the highway by a little clump of trees. Here the ploughed land ended, and all before him was bleak open down.") (measure . 360) (bh h - (equal) (time . 54) (line-count . 10) (looseness-spread . 0.0932) (bps q 16 31 47 62 80 98 115 132 149) (piece-count . 158) (avg-piece-length . 19.360905063291128) (avg-looseness . 0.0297) (looseness-sd . 0.025582131109404577) (looseness-variance . 0.0006544454320987654) (looses q 0.0223 0.0239 0.0828 0.0595 0.0326 0.0198 0.0264 -0.0104 0.0105 0.3993)) (fu h - (equal) (time . 18) (line-count . 10) (looseness-spread . 0.0932) (bps q 14 25 37 52 67 81 93 109 124) (piece-count . 133) (avg-piece-length . 23.000172932330816) (avg-looseness . 0.0297) (looseness-sd . 0.027083041024063583) (looseness-variance . 0.000733491111111111) (looses q 0.0223 0.0239 0.0828 0.0228 0.0692 0.0198 0.0264 -0.0104 0.0105 0.3993)) (bu h - (equal) (time . 48) (line-count . 10) (looseness-spread . 0.0932) (bps q 14 25 37 51 67 81 93 109 124) (piece-count . 133) (avg-piece-length . 23.000172932330816) (avg-looseness . 0.0297) (looseness-sd . 0.025582131109404577) (looseness-variance . 0.0006544454320987654) (looses q 0.0223 0.0239 0.0828 0.0595 0.0326 0.0198 0.0264 -0.0104 0.0105 0.3993)) (fh h - (equal) (time . 20) (line-count . 10) (looseness-spread . 0.0932) (bps q 16 31 47 63 81 98 115 132 149) (piece-count . 158) (avg-piece-length . 19.360905063291128) (avg-looseness . 0.0287) (looseness-sd . 0.027382313837787907) (looseness-variance . 0.0007497911111111111) (looses q 0.0223 0.0239 0.0828 0.0228 0.0117 0.0683 0.0264 -0.0104 0.0105 0.3993)) (fh-improved . 130) (bu-improved . 1) (bh-improved . 2)) c (h - (equal) (text u . "The schoolmaster was leaving the village, and everybody seemed sorry. The miller at Cresscombe lent him the small white tilted cart and horse to carry his goods to the city of his destination, about twenty miles off, such a vehicle proving of quite sufficient size for the departing teacher’s effects. For the schoolhouse had been partly furnished by the managers, and the only cumbersome article possessed by the master, in addition to the packing-case of books, was a cottage piano that he had bought at an auction during the year in which he thought of learning instrumental music. But the enthusiasm having waned he had never acquired any skill in playing, and the purchased article had been a perpetual trouble to him ever since in moving house.") (measure . 390) (bh h - (equal) (time . 55) (line-count . 9) (looseness-spread . 0.0571) (bps q 18 35 55 71 90 110 130 149) (piece-count . 168) (avg-piece-length . 18.455788690476183) (avg-looseness . 0.0243) (looseness-sd . 0.01762288551145924) (looseness-variance . 0.00031056609374999997) (looses q 0.0026 0.0345 0.0572 0.0307 0.033 0.023 0.0001 0.0132 0.0889)) (fu h - (equal) (time . 19) (line-count . 9) (looseness-spread . 0.1115) (bps q 13 29 43 56 69 87 101 114) (piece-count . 128) (avg-piece-length . 24.223222656249998) (avg-looseness . 0.0335) (looseness-sd . 0.04243974957218763) (looseness-variance . 0.0018011323437499998) (looses q 0.0026 0.0345 0.1013 -0.0042 0.0022 0.0055 0.0185 0.1073 0.048)) (bu h - (equal) (time . 49) (line-count . 9) (looseness-spread . 0.067) (bps q 12 28 43 56 69 86 100 114) (piece-count . 128) (avg-piece-length . 24.223222656249998) (avg-looseness . 0.0335) (looseness-sd . 0.022832484397235443) (looseness-variance . 0.00052132234375) (looses q 0.031 0.0506 0.0568 -0.0042 0.0022 0.0401 0.0284 0.0628 0.048)) (fh h - (equal) (time . 22) (line-count . 9) (looseness-spread . 0.0563) (bps q 18 35 56 72 92 112 131 149) (piece-count . 168) (avg-piece-length . 18.455788690476183) (avg-looseness . 0.0244) (looseness-sd . 0.01980495124331287) (looseness-variance . 0.00039223609375) (looses q 0.0026 0.0345 0.0424 0.0031 0.0014 0.0349 0.0185 0.0577 0.0889)) (fh-improved . 153) (bu-improved . 4) (bh-improved . 7)) c (h - (equal) (text u . "The rector had gone away for the day, being a man who disliked the sight of changes. He did not mean to return till the evening, when the new school-teacher would have arrived and settled in, and everything would be smooth again.") (measure . 390) (bh h - (equal) (time . 28) (line-count . 3) (looseness-spread . 0.0018) (bps q 19 35) (piece-count . 47) (avg-piece-length . 20.3178085106383) (avg-looseness . 0.0143) (looseness-sd . 0.0008999999999999998) (looseness-variance . 8.099999999999996e-07) (looses q 0.0152 0.0134 0.2833)) (fu h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.0018) (bps q 17 33) (piece-count . 43) (avg-piece-length . 22.20783720930233) (avg-looseness . 0.0143) (looseness-sd . 0.0008999999999999998) (looseness-variance . 8.099999999999996e-07) (looses q 0.0152 0.0134 0.2833)) (bu h - (equal) (time . 9) (line-count . 3) (looseness-spread . 0.0018) (bps q 17 33) (piece-count . 43) (avg-piece-length . 22.20783720930233) (avg-looseness . 0.0143) (looseness-sd . 0.0008999999999999998) (looseness-variance . 8.099999999999996e-07) (looses q 0.0152 0.0134 0.2833)) (fh h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.0018) (bps q 19 35) (piece-count . 47) (avg-piece-length . 20.3178085106383) (avg-looseness . 0.0143) (looseness-sd . 0.0008999999999999998) (looseness-variance . 8.099999999999996e-07) (looses q 0.0152 0.0134 0.2833)) (fh-improved . 4) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "The blacksmith, the farm bailiff, and the schoolmaster himself were standing in perplexed attitudes in the parlour before the instrument. The master had remarked that even if he got it into the cart he should not know what to do with it on his arrival at Christminster, the city he was bound for, since he was only going into temporary lodgings just at first.") (measure . 390) (bh h - (equal) (time . 18) (line-count . 5) (looseness-spread . 0.0478) (bps q 18 35 55 74) (piece-count . 79) (avg-piece-length . 18.455898734177218) (avg-looseness . 0.0313) (looseness-sd . 0.01778853212044209) (looseness-variance . 0.00031643187499999997) (looses q 0.0236 0.0127 0.0605 0.0285 0.768)) (fu h - (equal) (time . 9) (line-count . 5) (looseness-spread . 0.0637) (bps q 12 24 45 60) (piece-count . 64) (avg-piece-length . 22.78150000000001) (avg-looseness . 0.0334) (looseness-sd . 0.023271159726150306) (looseness-variance . 0.0005415468749999999) (looses q 0.0711 0.0267 0.0074 0.0285 0.768)) (bu h - (equal) (time . 13) (line-count . 5) (looseness-spread . 0.0637) (bps q 12 24 45 60) (piece-count . 64) (avg-piece-length . 22.78150000000001) (avg-looseness . 0.0334) (looseness-sd . 0.023271159726150306) (looseness-variance . 0.0005415468749999999) (looses q 0.0711 0.0267 0.0074 0.0285 0.768)) (fh h - (equal) (time . 10) (line-count . 5) (looseness-spread . 0.0442) (bps q 18 35 56 74) (piece-count . 79) (avg-piece-length . 18.455898734177218) (avg-looseness . 0.0314) (looseness-sd . 0.01628964394945451) (looseness-variance . 0.0002653525) (looses q 0.0236 0.0127 0.0322 0.0569 0.768)) (fh-improved . 42) (bu-improved . 0) (bh-improved . 1)) c (h - (equal) (text u . "A little boy of eleven, who had been thoughtfully assisting in the packing, joined the group of men, and as they rubbed their chins he spoke up, blushing at the sound of his own voice: “Aunt have got a great fuel-house, and it could be put there, perhaps, till you’ve found a place to settle in, sir.”") (measure . 390) (bh h - (equal) (time . 12) (line-count . 4) (looseness-spread . 0.0265) (bps q 19 38 56) (piece-count . 65) (avg-piece-length . 18.452015384615382) (avg-looseness . 0.0092) (looseness-sd . 0.011887341540011748) (looseness-variance . 0.00014130888888888888) (looses q 0.019 -0.0075 0.0162 0.5765)) (fu h - (equal) (time . 29) (line-count . 4) (looseness-spread . 0.0265) (bps q 15 33 50) (piece-count . 58) (avg-piece-length . 20.678982758620695) (avg-looseness . 0.0092) (looseness-sd . 0.011887341540011748) (looseness-variance . 0.00014130888888888888) (looses q 0.019 -0.0075 0.0162 0.5765)) (bu h - (equal) (time . 12) (line-count . 4) (looseness-spread . 0.0265) (bps q 15 33 50) (piece-count . 58) (avg-piece-length . 20.678982758620695) (avg-looseness . 0.0092) (looseness-sd . 0.011887341540011748) (looseness-variance . 0.00014130888888888888) (looses q 0.019 -0.0075 0.0162 0.5765)) (fh h - (equal) (time . 8) (line-count . 4) (looseness-spread . 0.0265) (bps q 19 38 56) (piece-count . 65) (avg-piece-length . 18.452015384615382) (avg-looseness . 0.0092) (looseness-sd . 0.011887341540011748) (looseness-variance . 0.00014130888888888888) (looses q 0.019 -0.0075 0.0162 0.5765)) (fh-improved . 15) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "It was decided that a deputation should wait on the boy’s aunt—an old maiden resident—and ask her if she would house the piano till Mr. Phillotson should send for it. The smith and the bailiff started to see about the practicability of the suggested shelter, and the boy and the schoolmaster were left standing alone.") (measure . 390) (bh h - (equal) (time . 14) (line-count . 4) (looseness-spread . 0.0108) (bps q 20 38 58) (piece-count . 72) (avg-piece-length . 17.800402777777776) (avg-looseness . 0.0188) (looseness-sd . 0.004616155206325811) (looseness-variance . 2.1308888888888893e-05) (looses q 0.0252 0.0144 0.0169 0.2735)) (fu h - (equal) (time . 8) (line-count . 4) (looseness-spread . 0.0792) (bps q 15 31 46) (piece-count . 57) (avg-piece-length . 22.484719298245615) (avg-looseness . 0.0382) (looseness-sd . 0.03243331620417499) (looseness-variance . 0.00105192) (looses q 0.076 -0.0032 0.0418 0.226)) (bu h - (equal) (time . 30) (line-count . 4) (looseness-spread . 0.0745) (bps q 15 30 46) (piece-count . 57) (avg-piece-length . 22.484719298245615) (avg-looseness . 0.0382) (looseness-sd . 0.03042327325511763) (looseness-variance . 0.0009255755555555555) (looses q 0.076 0.0372 0.0015 0.226)) (fh h - (equal) (time . 9) (line-count . 4) (looseness-spread . 0.0108) (bps q 20 38 58) (piece-count . 72) (avg-piece-length . 17.800402777777776) (avg-looseness . 0.0188) (looseness-sd . 0.004616155206325811) (looseness-variance . 2.1308888888888893e-05) (looses q 0.0252 0.0144 0.0169 0.2735)) (fh-improved . 24) (bu-improved . 1) (bh-improved . 0)) c (h - (equal) (text u . "Tears rose into the boy’s eyes, for he was not among the regular day scholars, who came unromantically close to the schoolmaster’s life, but one who had attended the night school only during the present teacher’s term of office. The regular scholars, if the truth must be told, stood at the present moment afar off, like certain historic disciples, indisposed to any enthusiastic volunteering of aid.") (measure . 390) (bh h - (equal) (time . 18) (line-count . 5) (looseness-spread . 0.0277) (bps q 19 37 55 73) (piece-count . 88) (avg-piece-length . 18.639670454545453) (avg-looseness . 0.0223) (looseness-sd . 0.009912964995398703) (looseness-variance . 9.826687500000001e-05) (looses q 0.0376 0.0214 0.0099 0.0202 0.3367)) (fu h - (equal) (time . 10) (line-count . 5) (looseness-spread . 0.0529) (bps q 16 29 43 58) (piece-count . 65) (avg-piece-length . 25.235246153846152) (avg-looseness . 0.0329) (looseness-sd . 0.01985791718685522) (looseness-variance . 0.00039433687499999993) (looses q 0.0376 0.0214 0.0099 0.0628 0.3025)) (bu h - (equal) (time . 37) (line-count . 5) (looseness-spread . 0.0184) (bps q 16 29 42 58) (piece-count . 65) (avg-piece-length . 25.235246153846152) (avg-looseness . 0.0345) (looseness-sd . 0.007605918747922568) (looseness-variance . 5.785000000000001e-05) (looses q 0.0376 0.0214 0.0392 0.0398 0.3025)) (fh h - (equal) (time . 11) (line-count . 5) (looseness-spread . 0.0379) (bps q 19 37 55 74) (piece-count . 88) (avg-piece-length . 18.639670454545453) (avg-looseness . 0.0172) (looseness-sd . 0.01408305719650389) (looseness-variance . 0.00019833250000000002) (looses q 0.0376 0.0214 0.0099 -0.0003 0.3572)) (fh-improved . 39) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "“Well—don’t speak of this everywhere. You know what a university is, and a university degree? It is the necessary hallmark of a man who wants to do anything in teaching. My scheme, or dream, is to be a university graduate, and then to be ordained. By going to live at Christminster, or near it, I shall be at headquarters, so to speak, and if my scheme is practicable at all, I consider that being on the spot will afford me a better chance of carrying it out than I should have elsewhere.”") (measure . 390) (bh h - (equal) (time . 25) (line-count . 6) (looseness-spread . 0.0633) (bps q 18 38 59 79 101) (piece-count . 119) (avg-piece-length . 16.541445378151263) (avg-looseness . 0.0535) (looseness-sd . 0.02384822005936712) (looseness-variance . 0.0005687376000000001) (looses q 0.0643 0.0816 0.0703 0.0331 0.0183 0.145)) (fu h - (equal) (time . 12) (line-count . 6) (looseness-spread . 0.1078) (bps q 14 30 45 62 79) (piece-count . 93) (avg-piece-length . 21.165935483870978) (avg-looseness . 0.0552) (looseness-sd . 0.04366533636650472) (looseness-variance . 0.0019066615999999998) (looses q 0.1109 0.014 0.0996 0.0031 0.0483 0.145)) (bu h - (equal) (time . 41) (line-count . 6) (looseness-spread . 0.0926) (bps q 14 29 45 61 79) (piece-count . 93) (avg-piece-length . 21.165935483870978) (avg-looseness . 0.0552) (looseness-sd . 0.03261827708509449) (looseness-variance . 0.001063952) (looses q 0.1109 0.0434 0.0703 0.0331 0.0183 0.145)) (fh h - (equal) (time . 14) (line-count . 6) (looseness-spread . 0.021) (bps q 19 40 61 83 105) (piece-count . 119) (avg-piece-length . 16.541445378151263) (avg-looseness . 0.0151) (looseness-sd . 0.008066721762897243) (looseness-variance . 6.5072e-05) (looses q 0.0269 0.0183 0.0061 0.0059 0.0183 0.3202)) (fh-improved . 78) (bu-improved . 2) (bh-improved . 13)) c (h - (equal) (text u . "The smith and his companion returned. Old Miss Fawley’s fuel-house was dry, and eminently practicable; and she seemed willing to give the instrument standing-room there. It was accordingly left in the school till the evening, when more hands would be available for removing it; and the schoolmaster gave a final glance round.") (measure . 390) (bh h - (equal) (time . 13) (line-count . 4) (looseness-spread . 0.0282) (bps q 17 36 53) (piece-count . 69) (avg-piece-length . 19.830333333333336) (avg-looseness . 0.0094) (looseness-sd . 0.012071269840226237) (looseness-variance . 0.00014571555555555554) (looses q 0.0209 0.0145 -0.0073 0.1537)) (fu h - (equal) (time . 32) (line-count . 4) (looseness-spread . 0.0282) (bps q 14 26 42) (piece-count . 54) (avg-piece-length . 25.338759259259252) (avg-looseness . 0.0094) (looseness-sd . 0.012071269840226237) (looseness-variance . 0.00014571555555555554) (looses q 0.0209 0.0145 -0.0073 0.1537)) (bu h - (equal) (time . 11) (line-count . 4) (looseness-spread . 0.0282) (bps q 14 26 42) (piece-count . 54) (avg-piece-length . 25.338759259259252) (avg-looseness . 0.0094) (looseness-sd . 0.012071269840226237) (looseness-variance . 0.00014571555555555554) (looses q 0.0209 0.0145 -0.0073 0.1537)) (fh h - (equal) (time . 8) (line-count . 4) (looseness-spread . 0.0282) (bps q 17 36 53) (piece-count . 69) (avg-piece-length . 19.830333333333336) (avg-looseness . 0.0094) (looseness-sd . 0.012071269840226237) (looseness-variance . 0.00014571555555555554) (looses q 0.0209 0.0145 -0.0073 0.1537)) (fh-improved . 24) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "The boy Jude assisted in loading some small articles, and at nine o’clock Mr. Phillotson mounted beside his box of books and other impedimenta, and bade his friends good-bye.") (measure . 390) (bh h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.023) (bps q 17 33) (piece-count . 34) (avg-piece-length . 21.65077941176471) (avg-looseness . 0.0294) (looseness-sd . 0.0115) (looseness-variance . 0.00013225) (looses q 0.0179 0.0409 0.891)) (fu h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0594) (bps q 14 27) (piece-count . 29) (avg-piece-length . 25.383672413793107) (avg-looseness . 0.081) (looseness-sd . 0.029700000000000004) (looseness-variance . 0.0008820900000000002) (looses q 0.1107 0.0513 0.8021)) (bu h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.0594) (bps q 14 27) (piece-count . 29) (avg-piece-length . 25.383672413793107) (avg-looseness . 0.081) (looseness-sd . 0.029700000000000004) (looseness-variance . 0.0008820900000000002) (looses q 0.1107 0.0513 0.8021)) (fh h - (equal) (time . 24) (line-count . 3) (looseness-spread . 0.023) (bps q 17 33) (piece-count . 34) (avg-piece-length . 21.65077941176471) (avg-looseness . 0.0294) (looseness-sd . 0.0115) (looseness-variance . 0.00013225) (looses q 0.0179 0.0409 0.891)) (fh-improved . 9) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. “Be a good boy, remember; and be kind to animals and birds, and read all you can. And if ever you come to Christminster remember you hunt me out for old acquaintance’ sake.”") (measure . 390) (bh h - (equal) (time . 11) (line-count . 3) (looseness-spread . 0.0021) (bps q 19 38) (piece-count . 54) (avg-piece-length . 18.791) (avg-looseness . 0.045) (looseness-sd . 0.0010500000000000023) (looseness-variance . 1.102500000000005e-06) (looses q 0.0461 0.044 0.0864)) (fu h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.0021) (bps q 17 34) (piece-count . 46) (avg-piece-length . 22.059) (avg-looseness . 0.045) (looseness-sd . 0.0010500000000000023) (looseness-variance . 1.102500000000005e-06) (looses q 0.0461 0.044 0.0864)) (bu h - (equal) (time . 9) (line-count . 3) (looseness-spread . 0.0021) (bps q 17 34) (piece-count . 46) (avg-piece-length . 22.059) (avg-looseness . 0.045) (looseness-sd . 0.0010500000000000023) (looseness-variance . 1.102500000000005e-06) (looses q 0.0461 0.044 0.0864)) (fh h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.0021) (bps q 19 38) (piece-count . 54) (avg-piece-length . 18.791) (avg-looseness . 0.045) (looseness-sd . 0.0010500000000000023) (looseness-variance . 1.102500000000005e-06) (looses q 0.0461 0.044 0.0864)) (fh-improved . 6) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "The cart creaked across the green, and disappeared round the corner by the rectory-house. The boy returned to the draw-well at the edge of the greensward, where he had left his buckets when he went to help his patron and teacher in the loading. There was a quiver in his lip now and after opening the well-cover to begin lowering the bucket he paused and leant with his forehead and arms against the framework, his face wearing the fixity of a thoughtful child’s who has felt the pricks of life somewhat before his time. The well into which he was looking was as ancient as the village itself, and from his present position appeared as a long circular perspective ending in a shining disk of quivering water at a distance of a hundred feet down. There was a lining of green moss near the top, and nearer still the hart’s-tongue fern.") (measure . 390) (bh h - (equal) (time . 61) (line-count . 10) (looseness-spread . 0.0355) (bps q 18 35 54 74 91 111 130 151 173) (piece-count . 184) (avg-piece-length . 18.36781249999998) (avg-looseness . 0.0091) (looseness-sd . 0.01331235386519224) (looseness-variance . 0.00017721876543209876) (looses q 0.0215 -0.0092 -0.0062 0.0193 0.0099 -0.0048 0.0012 0.0263 0.0238 0.3354)) (fu h - (equal) (time . 41) (line-count . 10) (looseness-spread . 0.0838) (bps q 14 31 48 65 79 94 111 125 141) (piece-count . 155) (avg-piece-length . 21.804370967741917) (avg-looseness . 0.0302) (looseness-sd . 0.0302825949277065) (looseness-variance . 0.0009170355555555555) (looses q 0.0215 -0.0092 -0.0062 0.0193 0.0746 0.0602 -0.0005 0.06 0.0521 0.16)) (bu h - (equal) (time . 35) (line-count . 10) (looseness-spread . 0.07) (bps q 14 30 47 64 78 94 110 124 141) (piece-count . 155) (avg-piece-length . 21.804370967741917) (avg-looseness . 0.0295) (looseness-sd . 0.022191189442859725) (looseness-variance . 0.000492448888888889) (looses q 0.0215 0.0404 -0.0049 0.0532 0.0436 0.0064 0.0651 0.0073 0.0329 0.16)) (fh h - (equal) (time . 43) (line-count . 10) (looseness-spread . 0.063) (bps q 18 35 54 74 91 111 130 152 173) (piece-count . 184) (avg-piece-length . 18.36781249999998) (avg-looseness . 0.0091) (looseness-sd . 0.018988209467072775) (looseness-variance . 0.0003605520987654321) (looses q 0.0215 -0.0092 -0.0062 0.0193 0.0099 -0.0048 0.0012 -0.0037 0.0538 0.3354)) (fh-improved . 130) (bu-improved . 6) (bh-improved . 1)) c (h - (equal) (text u . "He said to himself, in the melodramatic tones of a whimsical boy, that the schoolmaster had drawn at that well scores of times on a morning like this, and would never draw there any more. “I’ve seen him look down into it, when he was tired with his drawing, just as I do now, and when he rested a bit before carrying the buckets home! But he was too clever to bide here any longer—a small sleepy place like this!”") (measure . 390) (bh h - (equal) (time . 37) (line-count . 5) (looseness-spread . 0.048) (bps q 21 39 56 77) (piece-count . 93) (avg-piece-length . 18.083564516129027) (avg-looseness . 0.024) (looseness-sd . 0.019784510987133345) (looseness-variance . 0.00039142687500000003) (looses q 0.0076 0.0505 0.0355 0.0025 0.1046)) (fu h - (equal) (time . 11) (line-count . 5) (looseness-spread . 0.1408) (bps q 14 30 47 64) (piece-count . 81) (avg-piece-length . 20.762611111111113) (avg-looseness . 0.0468) (looseness-sd . 0.05646651109285927) (looseness-variance . 0.0031884668749999996) (looses q 0.1397 -0.0011 0.0041 0.0444 0.022)) (bu h - (equal) (time . 17) (line-count . 5) (looseness-spread . 0.1408) (bps q 14 30 47 64) (piece-count . 81) (avg-piece-length . 20.762611111111113) (avg-looseness . 0.0468) (looseness-sd . 0.05646651109285927) (looseness-variance . 0.0031884668749999996) (looses q 0.1397 -0.0011 0.0041 0.0444 0.022)) (fh h - (equal) (time . 12) (line-count . 5) (looseness-spread . 0.048) (bps q 21 39 56 77) (piece-count . 93) (avg-piece-length . 18.083564516129027) (avg-looseness . 0.024) (looseness-sd . 0.019784510987133345) (looseness-variance . 0.00039142687500000003) (looses q 0.0076 0.0505 0.0355 0.0025 0.1046)) (fh-improved . 38) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "A tear rolled from his eye into the depths of the well. The morning was a little foggy, and the boy’s breathing unfurled itself as a thicker fog upon the still and heavy air. His thoughts were interrupted by a sudden outcry:") (measure . 390) (bh h - (equal) (time . 9) (line-count . 3) (looseness-spread . 0.0258) (bps q 20 38) (piece-count . 47) (avg-piece-length . 19.089265957446806) (avg-looseness . 0.0045) (looseness-sd . 0.012899999999999998) (looseness-variance . 0.00016640999999999995) (looses q 0.0174 -0.0084 0.4618)) (fu h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.0258) (bps q 18 35) (piece-count . 42) (avg-piece-length . 21.361797619047618) (avg-looseness . 0.0045) (looseness-sd . 0.012899999999999998) (looseness-variance . 0.00016640999999999995) (looses q 0.0174 -0.0084 0.4618)) (bu h - (equal) (time . 8) (line-count . 3) (looseness-spread . 0.0258) (bps q 18 35) (piece-count . 42) (avg-piece-length . 21.361797619047618) (avg-looseness . 0.0045) (looseness-sd . 0.012899999999999998) (looseness-variance . 0.00016640999999999995) (looses q 0.0174 -0.0084 0.4618)) (fh h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.0258) (bps q 20 38) (piece-count . 47) (avg-piece-length . 19.089265957446806) (avg-looseness . 0.0045) (looseness-sd . 0.012899999999999998) (looseness-variance . 0.00016640999999999995) (looses q 0.0174 -0.0084 0.4618)) (fh-improved . 5) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "It came from an old woman who had emerged from her door towards the garden gate of a green-thatched cottage not far off. The boy quickly waved a signal of assent, drew the water with what was a great effort for one of his stature, landed and emptied the big bucket into his own pair of smaller ones, and pausing a moment for breath, started with them across the patch of clammy greensward whereon the well stood—nearly in the centre of the little village, or rather hamlet of Marygreen.") (measure . 390) (bh h - (equal) (time . 41) (line-count . 6) (looseness-spread . 0.0228) (bps q 17 36 54 71 85) (piece-count . 101) (avg-piece-length . 19.84581188118812) (avg-looseness . 0.0041) (looseness-sd . 0.008381264821015979) (looseness-variance . 7.02456e-05) (looses q 0.0062 -0.0027 0.0194 -0.0034 0.0009 0.2891)) (fu h - (equal) (time . 35) (line-count . 6) (looseness-spread . 0.0228) (bps q 16 33 50 66 80) (piece-count . 91) (avg-piece-length . 22.026670329670328) (avg-looseness . 0.0041) (looseness-sd . 0.008381264821015979) (looseness-variance . 7.02456e-05) (looses q 0.0062 -0.0027 0.0194 -0.0034 0.0009 0.2891)) (bu h - (equal) (time . 20) (line-count . 6) (looseness-spread . 0.0228) (bps q 16 33 50 66 80) (piece-count . 91) (avg-piece-length . 22.026670329670328) (avg-looseness . 0.0041) (looseness-sd . 0.008381264821015979) (looseness-variance . 7.02456e-05) (looses q 0.0062 -0.0027 0.0194 -0.0034 0.0009 0.2891)) (fh h - (equal) (time . 12) (line-count . 6) (looseness-spread . 0.0228) (bps q 17 36 54 71 85) (piece-count . 101) (avg-piece-length . 19.84581188118812) (avg-looseness . 0.0041) (looseness-sd . 0.008381264821015979) (looseness-variance . 7.02456e-05) (looses q 0.0062 -0.0027 0.0194 -0.0034 0.0009 0.2891)) (fh-improved . 18) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "It was as old-fashioned as it was small, and it rested in the lap of an undulating upland adjoining the North Wessex downs. Old as it was, however, the well-shaft was probably the only relic of the local history that remained absolutely unchanged. Many of the thatched and dormered dwelling-houses had been pulled down of late years, and many trees felled on the green. Above all, the original church, hump-backed, wood-turreted, and quaintly hipped, had been taken down, and either cracked up into heaps of road-metal in the lane, or utilized as pig-sty walls, garden seats, guard-stones to fences, and rockeries in the flower-beds of the neighbourhood. In place of it a tall new building of modern Gothic design, unfamiliar to English eyes, had been erected on a new piece of ground by a certain obliterator of historic records who had run down from London and back in a day. The site whereon so long had stood the ancient temple to the Christian divinities was not even recorded on the green and level grass-plot that had immemorially been the churchyard, the obliterated graves being commemorated by eighteen-penny cast-iron crosses warranted to last five years.") (measure . 390) (bh h - (equal) (time . 74) (line-count . 14) (looseness-spread . 0.0437) (bps q 22 40 56 70 86 101 120 140 158 179 197 216 234) (piece-count . 248) (avg-piece-length . 19.40513709677419) (avg-looseness . 0.0173) (looseness-sd . 0.014276239207759155) (looseness-variance . 0.00020381100591715975) (looses q -0.0036 0.0261 0.0226 0.015 0.0311 -0.0011 0.0401 -0.0024 0.0357 0.0258 0.0177 0.0014 0.0162 0.1942)) (fu h - (equal) (time . 29) (line-count . 14) (looseness-spread . 0.107) (bps q 19 33 46 60 74 88 105 122 135 152 168 183 194) (piece-count . 206) (avg-piece-length . 23.361524271844665) (avg-looseness . 0.0298) (looseness-sd . 0.03626965249775206) (looseness-variance . 0.0013154876923076922) (looses q -0.0036 0.0887 -0.0017 0.0412 0.0602 -0.0004 -0.0041 0.0227 0.017 -0.0106 0.0715 0.0101 0.0964 0.0691)) (bu h - (equal) (time . 64) (line-count . 14) (looseness-spread . 0.0861) (bps q 18 33 46 60 74 87 104 119 134 150 167 181 193) (piece-count . 206) (avg-piece-length . 23.361524271844665) (avg-looseness . 0.0352) (looseness-sd . 0.0228831143657703) (looseness-variance . 0.000523636923076923) (looses q 0.0844 0.0007 -0.0017 0.0412 0.0602 0.0522 0.0256 0.0276 0.0244 0.0151 0.0448 0.0461 0.037 -0.0012)) (fh h - (equal) (time . 53) (line-count . 14) (looseness-spread . 0.0687) (bps q 22 41 57 70 86 101 120 140 159 179 197 216 234) (piece-count . 248) (avg-piece-length . 19.40513709677419) (avg-looseness . 0.0173) (looseness-sd . 0.02036993085015844) (looseness-variance . 0.0004149340828402366) (looses q -0.0036 0.0134 -0.0092 0.0595 0.0311 -0.0011 0.0401 -0.0024 0.0165 0.045 0.0177 0.0014 0.0162 0.1942)) (fh-improved . 243) (bu-improved . 13) (bh-improved . 3)) c (h - (equal) (text u . "Slender as was Jude Fawley’s frame he bore the two brimming house-buckets of water to the cottage without resting. Over the door was a little rectangular piece of blue board, on which was painted in yellow letters, “Drusilla Fawley, Baker.” Within the little lead panes of the window—this being one of the few old houses left—were five bottles of sweets, and three buns on a plate of the willow pattern.") (measure . 390) (bh h - (equal) (time . 36) (line-count . 5) (looseness-spread . 0.0554) (bps q 19 41 57 76) (piece-count . 92) (avg-piece-length . 17.89400000000001) (avg-looseness . 0.0185) (looseness-sd . 0.019784131899075075) (looseness-variance . 0.00039141187499999996) (looses q -0.0075 0.0479 0.02 0.0137 0.2456)) (fu h - (equal) (time . 11) (line-count . 5) (looseness-spread . 0.0554) (bps q 15 30 43 60) (piece-count . 73) (avg-piece-length . 22.551342465753432) (avg-looseness . 0.0185) (looseness-sd . 0.019784131899075075) (looseness-variance . 0.00039141187499999996) (looses q -0.0075 0.0479 0.02 0.0137 0.2456)) (bu h - (equal) (time . 15) (line-count . 5) (looseness-spread . 0.0554) (bps q 15 30 43 60) (piece-count . 73) (avg-piece-length . 22.551342465753432) (avg-looseness . 0.0185) (looseness-sd . 0.019784131899075075) (looseness-variance . 0.00039141187499999996) (looses q -0.0075 0.0479 0.02 0.0137 0.2456)) (fh h - (equal) (time . 10) (line-count . 5) (looseness-spread . 0.0554) (bps q 19 41 57 76) (piece-count . 92) (avg-piece-length . 17.89400000000001) (avg-looseness . 0.0185) (looseness-sd . 0.019784131899075075) (looseness-variance . 0.00039141187499999996) (looses q -0.0075 0.0479 0.02 0.0137 0.2456)) (fh-improved . 45) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "While emptying the buckets at the back of the house he could hear an animated conversation in progress within-doors between his great-aunt, the Drusilla of the sign-board, and some other villagers. Having seen the school-master depart, they were summing up particulars of the event, and indulging in predictions of his future.") (measure . 390) (bh h - (equal) (time . 13) (line-count . 4) (looseness-spread . 0.0713) (bps q 19 36 52) (piece-count . 71) (avg-piece-length . 19.119154929577466) (avg-looseness . 0.0379) (looseness-sd . 0.029392327041064457) (looseness-variance . 0.0008639088888888889) (looses q 0.0707 -0.0006 0.0437 0.0799)) (fu h - (equal) (time . 8) (line-count . 4) (looseness-spread . 0.0713) (bps q 15 29 42) (piece-count . 55) (avg-piece-length . 24.681090909090905) (avg-looseness . 0.0379) (looseness-sd . 0.029392327041064457) (looseness-variance . 0.0008639088888888889) (looses q 0.0707 -0.0006 0.0437 0.0799)) (bu h - (equal) (time . 11) (line-count . 4) (looseness-spread . 0.0713) (bps q 15 29 42) (piece-count . 55) (avg-piece-length . 24.681090909090905) (avg-looseness . 0.0379) (looseness-sd . 0.029392327041064457) (looseness-variance . 0.0008639088888888889) (looses q 0.0707 -0.0006 0.0437 0.0799)) (fh h - (equal) (time . 9) (line-count . 4) (looseness-spread . 0.0242) (bps q 20 36 52) (piece-count . 71) (avg-piece-length . 19.119154929577466) (avg-looseness . 0.0351) (looseness-sd . 0.011029153286731591) (looseness-variance . 0.00012164222222222226) (looses q 0.0195 0.042 0.0437 0.0799)) (fh-improved . 22) (bu-improved . 0) (bh-improved . 1)) c (h - (equal) (text u . "“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since you was last this way.” The old inhabitant who answered was a tall, gaunt woman, who spoke tragically on the most trivial subject, and gave a phrase of her conversation to each auditor in turn. “He come from Mellstock, down in South Wessex, about a year ago—worse luck for ‘n, Belinda” (turning to the right) “where his father was living, and was took wi’ the shakings for death, and died in two days, as you know, Caroline” (turning to the left). “It would ha’ been a blessing if Goddy-mighty had took thee too, wi’ thy mother and father, poor useless boy! But I’ve got him here to stay with me till I can see what’s to be done with un, though I am obliged to let him earn any penny he can. Just now he’s a-scaring of birds for Farmer Troutham. It keeps him out of mischty. Why do ye turn away, Jude?” she continued, as the boy, feeling the impact of their glances like slaps upon his face, moved aside.") (measure . 390) (bh h - (equal) (time . 69) (line-count . 12) (looseness-spread . 0.0496) (bps q 16 33 56 73 91 111 129 148 167 185 204) (piece-count . 212) (avg-piece-length . 18.828971698113204) (avg-looseness . 0.0175) (looseness-sd . 0.015671883546156715) (looseness-variance . 0.00024560793388429754) (looses q 0.0106 0.0033 -0.0088 0.0102 0.0018 0.0192 0.0408 0.0261 0.0141 0.0387 0.037 0.477)) (fu h - (equal) (time . 26) (line-count . 12) (looseness-spread . 0.0839) (bps q 16 30 45 59 74 91 108 126 146 162 177) (piece-count . 187) (avg-piece-length . 21.34621390374331) (avg-looseness . 0.0289) (looseness-sd . 0.02707568821954455) (looseness-variance . 0.0007330928925619835) (looses q 0.0106 0.0577 0.036 0.0658 0.0208 0.0079 0.0125 -0.0004 -0.0006 0.0833 0.024 0.3844)) (bu h - (equal) (time . 62) (line-count . 12) (looseness-spread . 0.0662) (bps q 15 30 45 59 74 91 108 126 145 162 177) (piece-count . 187) (avg-piece-length . 21.34621390374331) (avg-looseness . 0.0289) (looseness-sd . 0.02063700439533856) (looseness-variance . 0.0004258859504132231) (looses q 0.0582 0.0101 0.036 0.0658 0.0208 0.0079 0.0125 -0.0004 0.0344 0.0482 0.024 0.3844)) (fh h - (equal) (time . 27) (line-count . 12) (looseness-spread . 0.0496) (bps q 16 33 56 73 91 111 129 148 167 185 204) (piece-count . 212) (avg-piece-length . 18.828971698113204) (avg-looseness . 0.0175) (looseness-sd . 0.015671883546156715) (looseness-variance . 0.00024560793388429754) (looses q 0.0106 0.0033 -0.0088 0.0102 0.0018 0.0192 0.0408 0.0261 0.0141 0.0387 0.037 0.477)) (fh-improved . 179) (bu-improved . 2) (bh-improved . 0)) c (h - (equal) (text u . "The local washerwoman replied that it was perhaps a very good plan of Miss or Mrs. Fawley’s (as they called her indifferently) to have him with her—”to kip ‘ee company in your loneliness, fetch water, shet the winder-shetters o’ nights, and help in the bit o’ baking.”") (measure . 390) (bh h - (equal) (time . 11) (line-count . 4) (looseness-spread . 0.0408) (bps q 19 37 55) (piece-count . 60) (avg-piece-length . 18.324483333333337) (avg-looseness . 0.0331) (looseness-sd . 0.016705089044958724) (looseness-variance . 0.0002790599999999999) (looses q 0.0136 0.0544 0.0313 0.8013)) (fu h - (equal) (time . 7) (line-count . 4) (looseness-spread . 0.1036) (bps q 16 30 44) (piece-count . 49) (avg-piece-length . 22.438142857142854) (avg-looseness . 0.0457) (looseness-sd . 0.047989188597247844) (looseness-variance . 0.0023029622222222224) (looses q 0.0136 0.1135 0.0099 0.7719)) (bu h - (equal) (time . 30) (line-count . 4) (looseness-spread . 0.061) (bps q 15 30 44) (piece-count . 49) (avg-piece-length . 22.438142857142854) (avg-looseness . 0.0437) (looseness-sd . 0.025328025759795984) (looseness-variance . 0.000641508888888889) (looses q 0.0709 0.0502 0.0099 0.7719)) (fh h - (equal) (time . 8) (line-count . 4) (looseness-spread . 0.0408) (bps q 19 37 55) (piece-count . 60) (avg-piece-length . 18.324483333333337) (avg-looseness . 0.0331) (looseness-sd . 0.016705089044958724) (looseness-variance . 0.0002790599999999999) (looses q 0.0136 0.0544 0.0313 0.8013)) (fh-improved . 21) (bu-improved . 1) (bh-improved . 0)) c (h - (equal) (text u . "Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a better one. The boy is crazy for books, that he is. It runs in our family rather. His cousin Sue is just the same—so I’ve heard; but I have not seen the child for years, though she was born in this place, within these four walls, as it happened. My niece and her husband, after they were married, didn’ get a house of their own for some year or more; and then they only had one till—Well, I won’t go into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the Fawleys to take that step any more. She, their only one, was like a child o’ my own, Belinda, till the split come! Ah, that a little maid should know such changes!”") (measure . 390) (bh h - (equal) (time . 39) (line-count . 10) (looseness-spread . 0.0466) (bps q 18 37 57 76 93 112 131 148 166) (piece-count . 177) (avg-piece-length . 18.84115819209039) (avg-looseness . 0.0191) (looseness-sd . 0.015115759089093283) (looseness-variance . 0.00022848617283950618) (looses q 0.0121 0.0437 0.0317 0.0231 -0.0029 0.0011 0.0052 0.0331 0.0246 0.3466)) (fu h - (equal) (time . 22) (line-count . 10) (looseness-spread . 0.0995) (bps q 14 27 43 62 80 95 114 131 149) (piece-count . 161) (avg-piece-length . 20.713571428571417) (avg-looseness . 0.0316) (looseness-sd . 0.03627193589172397) (looseness-variance . 0.0013156533333333336) (looses q 0.0952 0.0974 0.0356 0.0061 -0.0021 0.0188 -0.0013 0.0159 0.0185 0.2444)) (bu h - (equal) (time . 57) (line-count . 10) (looseness-spread . 0.0995) (bps q 14 27 43 62 80 95 114 131 149) (piece-count . 161) (avg-piece-length . 20.713571428571417) (avg-looseness . 0.0316) (looseness-sd . 0.03627193589172397) (looseness-variance . 0.0013156533333333336) (looses q 0.0952 0.0974 0.0356 0.0061 -0.0021 0.0188 -0.0013 0.0159 0.0185 0.2444)) (fh h - (equal) (time . 41) (line-count . 10) (looseness-spread . 0.0466) (bps q 18 37 57 76 93 112 131 148 166) (piece-count . 177) (avg-piece-length . 18.84115819209039) (avg-looseness . 0.0191) (looseness-sd . 0.015115759089093283) (looseness-variance . 0.00022848617283950618) (looses q 0.0121 0.0437 0.0317 0.0231 -0.0029 0.0011 0.0052 0.0331 0.0246 0.3466)) (fh-improved . 123) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Jude, finding the general attention again centering on himself, went out to the bakehouse, where he ate the cake provided for his breakfast. The end of his spare time had now arrived, and emerging from the garden by getting over the hedge at the back he pursued a path northward, till he came to a wide and lonely depression in the general level of the upland, which was sown as a corn-field. This vast concave was the scene of his labours for Mr Troutham the farmer, and he descended into the midst of it.") (measure . 390) (bh h - (equal) (time . 43) (line-count . 6) (looseness-spread . 0.036) (bps q 20 39 58 78 96) (piece-count . 111) (avg-piece-length . 18.720445945945947) (avg-looseness . 0.0131) (looseness-sd . 0.012381017728765271) (looseness-variance . 0.00015328959999999996) (looses q 0.0308 -0.0052 0.0202 0.005 0.0146 0.0529)) (fu h - (equal) (time . 33) (line-count . 7) (looseness-spread . 0.1013) (bps q 13 29 45 61 78 93) (piece-count . 94) (avg-piece-length . 22.1060585106383) (avg-looseness . 0.0303) (looseness-sd . 0.03719178523395844) (looseness-variance . 0.001383228888888889) (looses q 0.0924 -0.0089 0.0057 0.0623 -0.0051 0.0352 0.9516)) (bu h - (equal) (time . 19) (line-count . 7) (looseness-spread . 0.0975) (bps q 13 28 44 61 78 93) (piece-count . 94) (avg-piece-length . 22.1060585106383) (avg-looseness . 0.0303) (looseness-sd . 0.034023602918496966) (looseness-variance . 0.0011576055555555555) (looses q 0.0924 0.051 0.0057 0.0024 -0.0051 0.0352 0.9516)) (fh h - (equal) (time . 14) (line-count . 6) (looseness-spread . 0.036) (bps q 20 39 58 78 96) (piece-count . 111) (avg-piece-length . 18.720445945945947) (avg-looseness . 0.0131) (looseness-sd . 0.012381017728765271) (looseness-variance . 0.00015328959999999996) (looses q 0.0308 -0.0052 0.0202 0.005 0.0146 0.0529)) (fh-improved . 65) (bu-improved . 2) (bh-improved . 0)) c (h - (equal) (text u . "The brown surface of the field went right up towards the sky all round, where it was lost by degrees in the mist that shut out the actual verge and accentuated the solitude. The only marks on the uniformity of the scene were a rick of last year’s produce standing in the midst of the arable, the rooks that rose at his approach, and the path athwart the fallow by which he had come, trodden now by he hardly knew whom, though once by many of his own dead family.") (measure . 390) (bh h - (equal) (time . 42) (line-count . 6) (looseness-spread . 0.0611) (bps q 18 36 56 74 91) (piece-count . 100) (avg-piece-length . 18.930609999999998) (avg-looseness . 0.0293) (looseness-sd . 0.02303793393514271) (looseness-variance . 0.0005307464) (looses q 0.0196 0.0541 -0.0054 0.0227 0.0557 0.4793)) (fu h - (equal) (time . 12) (line-count . 6) (looseness-spread . 0.0606) (bps q 17 33 49 66 81) (piece-count . 90) (avg-piece-length . 21.034011111111102) (avg-looseness . 0.0322) (looseness-sd . 0.022971373489628345) (looseness-variance . 0.0005276839999999999) (looses q 0.0196 0.0012 0.0618 0.0227 0.0557 0.4793)) (bu h - (equal) (time . 19) (line-count . 6) (looseness-spread . 0.0606) (bps q 17 33 49 66 81) (piece-count . 90) (avg-piece-length . 21.034011111111102) (avg-looseness . 0.0322) (looseness-sd . 0.022971373489628345) (looseness-variance . 0.0005276839999999999) (looses q 0.0196 0.0012 0.0618 0.0227 0.0557 0.4793)) (fh h - (equal) (time . 12) (line-count . 6) (looseness-spread . 0.0606) (bps q 18 37 56 74 91) (piece-count . 100) (avg-piece-length . 18.930609999999998) (avg-looseness . 0.0322) (looseness-sd . 0.022971373489628345) (looseness-variance . 0.0005276839999999999) (looses q 0.0196 0.0012 0.0618 0.0227 0.0557 0.4793)) (fh-improved . 30) (bu-improved . 0) (bh-improved . 1)) c (h - (equal) (text u . "The fresh harrow-lines seemed to stretch like the channellings in a piece of new corduroy, lending a meanly utilitarian air to the expanse, taking away its gradations, and depriving it of all history beyond that of the few recent months, though to every clod and stone there really attached associations enough and to spare—echoes of songs from ancient harvest-days, of spoken words, and of sturdy deeds. Every inch of ground had been the site, first or last, of energy, gaiety, horse-play, bickerings, weariness. Groups of gleaners had squatted in the sun on every square yard. Love-matches that had populated the adjoining hamlet had been made up there between reaping and carrying. Under the hedge which divided the field from a distant plantation girls had given themselves to lovers who would not turn their heads to look at them by the next harvest; and in that ancient cornfield many a man had made love-promises to a woman at whose voice he had trembled by the next seed-time after fulfilling them in the church adjoining. But this neither Jude nor the rooks around him considered. For them it was a lonely place, possessing, in the one view, only the quality of a work-ground, and in the other that of a granary good to feed in.") (measure . 390) (bh h - (equal) (time . 82) (line-count . 15) (looseness-spread . 0.0664) (bps q 18 38 56 72 89 107 124 142 161 179 197 216 234 254) (piece-count . 267) (avg-piece-length . 19.004589887640453) (avg-looseness . 0.0241) (looseness-sd . 0.02121415223623232) (looseness-variance . 0.00045004025510204075) (looses q 0.0209 0.0681 0.0173 0.0521 0.0017 0.0159 0.0033 0.0447 0.0118 0.005 0.0206 0.0168 0.0028 0.0567 0.3338)) (fu h - (equal) (time . 55) (line-count . 15) (looseness-spread . 0.1085) (bps q 15 28 44 57 72 86 100 113 126 141 158 174 189 204) (piece-count . 220) (avg-piece-length . 23.064661363636375) (avg-looseness . 0.0404) (looseness-sd . 0.03357991458097096) (looseness-variance . 0.0011276106632653062) (looses q 0.0674 0.0303 0.0173 0.0521 0.0017 0.0944 0.0444 0.0347 0.1005 -0.0032 0.0096 0.0566 -0.008 0.0679 0.1298)) (bu h - (equal) (time . 48) (line-count . 15) (looseness-spread . 0.1017) (bps q 15 28 44 57 71 86 100 113 126 140 157 174 188 204) (piece-count . 220) (avg-piece-length . 23.064661363636375) (avg-looseness . 0.0403) (looseness-sd . 0.025799024067920534) (looseness-variance . 0.0006655896428571429) (looses q 0.0674 0.0303 0.0173 0.0521 0.0317 0.0644 0.0444 0.0347 0.1005 0.0537 0.0096 -0.0012 0.0447 0.0153 0.1298)) (fh h - (equal) (time . 54) (line-count . 15) (looseness-spread . 0.0833) (bps q 18 39 57 73 89 107 124 143 162 180 197 216 234 254) (piece-count . 267) (avg-piece-length . 19.004589887640453) (avg-looseness . 0.0237) (looseness-sd . 0.02638400102721499) (looseness-variance . 0.0006961155102040818) (looses q 0.0209 0.012 0.0104 0.0362 0.0745 0.0159 0.0033 -0.0052 0.0121 -0.0029 0.0781 0.0168 0.0028 0.0567 0.3338)) (fh-improved . 386) (bu-improved . 4) (bh-improved . 6)) c (h - (equal) (text u . "The boy stood under the rick before mentioned, and every few seconds used his clacker or rattle briskly. At each clack the rooks left off pecking, and rose and went away on their leisurely wings, burnished like tassets of mail, afterwards wheeling back and regarding him warily, and descending to feed at a more respectful distance.") (measure . 390) (bh h - (equal) (time . 14) (line-count . 4) (looseness-spread . 0.0669) (bps q 16 34 51) (piece-count . 69) (avg-piece-length . 19.823999999999995) (avg-looseness . 0.033) (looseness-sd . 0.02754273447249242) (looseness-variance . 0.0007586022222222222) (looses q 0.0639 0.038 -0.003 0.079)) (fu h - (equal) (time . 9) (line-count . 4) (looseness-spread . 0.0669) (bps q 14 30 43) (piece-count . 56) (avg-piece-length . 24.42600000000001) (avg-looseness . 0.033) (looseness-sd . 0.02754273447249242) (looseness-variance . 0.0007586022222222222) (looses q 0.0639 0.038 -0.003 0.079)) (bu h - (equal) (time . 34) (line-count . 4) (looseness-spread . 0.0669) (bps q 14 30 43) (piece-count . 56) (avg-piece-length . 24.42600000000001) (avg-looseness . 0.033) (looseness-sd . 0.02754273447249242) (looseness-variance . 0.0007586022222222222) (looses q 0.0639 0.038 -0.003 0.079)) (fh h - (equal) (time . 9) (line-count . 4) (looseness-spread . 0.0669) (bps q 16 34 51) (piece-count . 69) (avg-piece-length . 19.823999999999995) (avg-looseness . 0.033) (looseness-sd . 0.02754273447249242) (looseness-variance . 0.0007586022222222222) (looses q 0.0639 0.038 -0.003 0.079)) (fh-improved . 14) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "He sounded the clacker till his arm ached, and at length his heart grew sympathetic with the birds’ thwarted desires. They seemed, like himself, to be living in a world which did not want them. Why should he frighten them away? They took upon more and more the aspect of gentle friends and pensioners—the only friends he could claim as being in the least degree interested in him, for his aunt had often told him that she was not. He ceased his rattling, and they alighted anew.") (measure . 390) (bh h - (equal) (time . 20) (line-count . 6) (looseness-spread . 0.0481) (bps q 17 34 49 67 86) (piece-count . 97) (avg-piece-length . 20.275092783505155) (avg-looseness . 0.0138) (looseness-sd . 0.0162996441678952) (looseness-variance . 0.00026567839999999996) (looses q 0.0247 0.0372 0.0075 -0.0109 0.0103 0.3577)) (fu h - (equal) (time . 13) (line-count . 6) (looseness-spread . 0.0481) (bps q 15 30 45 60 78) (piece-count . 88) (avg-piece-length . 22.34868181818182) (avg-looseness . 0.0138) (looseness-sd . 0.0162996441678952) (looseness-variance . 0.00026567839999999996) (looses q 0.0247 0.0372 0.0075 -0.0109 0.0103 0.3577)) (bu h - (equal) (time . 38) (line-count . 6) (looseness-spread . 0.0481) (bps q 15 30 45 60 78) (piece-count . 88) (avg-piece-length . 22.34868181818182) (avg-looseness . 0.0138) (looseness-sd . 0.0162996441678952) (looseness-variance . 0.00026567839999999996) (looses q 0.0247 0.0372 0.0075 -0.0109 0.0103 0.3577)) (fh h - (equal) (time . 13) (line-count . 6) (looseness-spread . 0.0481) (bps q 17 34 49 67 86) (piece-count . 97) (avg-piece-length . 20.275092783505155) (avg-looseness . 0.0138) (looseness-sd . 0.0162996441678952) (looseness-variance . 0.00026567839999999996) (looses q 0.0247 0.0372 0.0075 -0.0109 0.0103 0.3577)) (fh-improved . 25) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— you shall. There is enough for us all. Farmer Troutham can afford to let you have some. Eat, then my dear little birdies, and make a good meal!”") (measure . 390) (bh h - (equal) (time . 8) (line-count . 3) (looseness-spread . 0.0066) (bps q 15 31) (piece-count . 42) (avg-piece-length . 21.47077380952381) (avg-looseness . 0.0498) (looseness-sd . 0.003300000000000001) (looseness-variance . 1.0890000000000006e-05) (looses q 0.0531 0.0465 0.4129)) (fu h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0066) (bps q 13 29) (piece-count . 39) (avg-piece-length . 23.122371794871793) (avg-looseness . 0.0498) (looseness-sd . 0.003300000000000001) (looseness-variance . 1.0890000000000006e-05) (looses q 0.0531 0.0465 0.4129)) (bu h - (equal) (time . 7) (line-count . 3) (looseness-spread . 0.0066) (bps q 13 29) (piece-count . 39) (avg-piece-length . 23.122371794871793) (avg-looseness . 0.0498) (looseness-sd . 0.003300000000000001) (looseness-variance . 1.0890000000000006e-05) (looses q 0.0531 0.0465 0.4129)) (fh h - (equal) (time . 24) (line-count . 3) (looseness-spread . 0.0066) (bps q 15 31) (piece-count . 42) (avg-piece-length . 21.47077380952381) (avg-looseness . 0.0498) (looseness-sd . 0.003300000000000001) (looseness-variance . 1.0890000000000006e-05) (looses q 0.0531 0.0465 0.4129)) (fh-improved . 4) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "They stayed and ate, inky spots on the nut-brown soil, and Jude enjoyed their appetite. A magic thread of fellow-feeling united his own life with theirs. Puny and sorry as those lives were, they much resembled his own.") (measure . 390) (bh h - (equal) (time . 8) (line-count . 3) (looseness-spread . 0.0591) (bps q 15 32) (piece-count . 42) (avg-piece-length . 21.34755952380953) (avg-looseness . 0.0645) (looseness-sd . 0.02955) (looseness-variance . 0.0008732025) (looses q 0.094 0.0349 0.3489)) (fu h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.0591) (bps q 15 30) (piece-count . 39) (avg-piece-length . 22.989679487179494) (avg-looseness . 0.0645) (looseness-sd . 0.02955) (looseness-variance . 0.0008732025) (looses q 0.094 0.0349 0.3489)) (bu h - (equal) (time . 8) (line-count . 3) (looseness-spread . 0.0591) (bps q 15 30) (piece-count . 39) (avg-piece-length . 22.989679487179494) (avg-looseness . 0.0645) (looseness-sd . 0.02955) (looseness-variance . 0.0008732025) (looses q 0.094 0.0349 0.3489)) (fh h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0591) (bps q 15 32) (piece-count . 42) (avg-piece-length . 21.34755952380953) (avg-looseness . 0.0645) (looseness-sd . 0.02955) (looseness-variance . 0.0008732025) (looses q 0.094 0.0349 0.3489)) (fh-improved . 2) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "His clacker he had by this time thrown away from him, as being a mean and sordid instrument, offensive both to the birds and to himself as their friend. All at once he became conscious of a smart blow upon his buttocks, followed by a loud clack, which announced to his surprised senses that the clacker had been the instrument of offence used. The birds and Jude started up simultaneously, and the dazed eyes of the latter beheld the farmer in person, the great Troutham himself, his red face glaring down upon Jude’s cowering frame, the clacker swinging in his hand.") (measure . 390) (bh h - (equal) (time . 50) (line-count . 7) (looseness-spread . 0.0414) (bps q 18 37 55 71 90 107) (piece-count . 120) (avg-piece-length . 19.57299999999999) (avg-looseness . 0.0201) (looseness-sd . 0.014337450958939669) (looseness-variance . 0.00020556250000000002) (looses q 0.0374 0.0297 0.0075 -0.004 0.0195 0.0302 0.2795)) (fu h - (equal) (time . 36) (line-count . 7) (looseness-spread . 0.0414) (bps q 17 33 48 62 77 91) (piece-count . 101) (avg-piece-length . 23.255049504950488) (avg-looseness . 0.0201) (looseness-sd . 0.014337450958939669) (looseness-variance . 0.00020556250000000002) (looses q 0.0374 0.0297 0.0075 -0.004 0.0195 0.0302 0.2795)) (bu h - (equal) (time . 22) (line-count . 7) (looseness-spread . 0.0414) (bps q 17 33 48 62 77 91) (piece-count . 101) (avg-piece-length . 23.255049504950488) (avg-looseness . 0.0201) (looseness-sd . 0.014337450958939669) (looseness-variance . 0.00020556250000000002) (looses q 0.0374 0.0297 0.0075 -0.004 0.0195 0.0302 0.2795)) (fh h - (equal) (time . 15) (line-count . 7) (looseness-spread . 0.0414) (bps q 18 37 55 71 90 107) (piece-count . 120) (avg-piece-length . 19.57299999999999) (avg-looseness . 0.0201) (looseness-sd . 0.014337450958939669) (looseness-variance . 0.00020556250000000002) (looses q 0.0374 0.0297 0.0075 -0.004 0.0195 0.0302 0.2795)) (fh-improved . 50) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear birdies,’ indeed! I’ll tickle your breeches, and see if you say, ‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s how you earn your sixpence a day for keeping the rooks off my corn!”") (measure . 390) (bh h - (equal) (time . 33) (line-count . 4) (looseness-spread . 0.0273) (bps q 16 32 49) (piece-count . 65) (avg-piece-length . 20.546430769230764) (avg-looseness . 0.0253) (looseness-sd . 0.011851582172857764) (looseness-variance . 0.00014045999999999997) (looses q 0.0196 0.0418 0.0145 0.1994)) (fu h - (equal) (time . 8) (line-count . 4) (looseness-spread . 0.0273) (bps q 16 32 46) (piece-count . 60) (avg-piece-length . 22.25863333333333) (avg-looseness . 0.0253) (looseness-sd . 0.011851582172857764) (looseness-variance . 0.00014045999999999997) (looses q 0.0196 0.0418 0.0145 0.1994)) (bu h - (equal) (time . 13) (line-count . 4) (looseness-spread . 0.0273) (bps q 16 32 46) (piece-count . 60) (avg-piece-length . 22.25863333333333) (avg-looseness . 0.0253) (looseness-sd . 0.011851582172857764) (looseness-variance . 0.00014045999999999997) (looses q 0.0196 0.0418 0.0145 0.1994)) (fh h - (equal) (time . 9) (line-count . 4) (looseness-spread . 0.0273) (bps q 16 32 49) (piece-count . 65) (avg-piece-length . 20.546430769230764) (avg-looseness . 0.0253) (looseness-sd . 0.011851582172857764) (looseness-variance . 0.00014045999999999997) (looses q 0.0196 0.0418 0.0145 0.1994)) (fh-improved . 3) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham had seized his left hand with his own left, and swinging his slim frame round him at arm’s-length, again struck Jude on the hind parts with the flat side of Jude’s own rattle, till the field echoed with the blows, which were delivered once or twice at each revolution.") (measure . 390) (bh h - (equal) (time . 13) (line-count . 4) (looseness-spread . 0.0331) (bps q 14 31 50) (piece-count . 67) (avg-piece-length . 20.503298507462688) (avg-looseness . 0.0188) (looseness-sd . 0.013575058829420306) (looseness-variance . 0.0001842822222222222) (looses q 0.017 0.0363 0.0032 0.0911)) (fu h - (equal) (time . 9) (line-count . 4) (looseness-spread . 0.0331) (bps q 12 28 46) (piece-count . 59) (avg-piece-length . 23.283406779661018) (avg-looseness . 0.0188) (looseness-sd . 0.013575058829420306) (looseness-variance . 0.0001842822222222222) (looses q 0.017 0.0363 0.0032 0.0911)) (bu h - (equal) (time . 13) (line-count . 4) (looseness-spread . 0.0331) (bps q 12 28 46) (piece-count . 59) (avg-piece-length . 23.283406779661018) (avg-looseness . 0.0188) (looseness-sd . 0.013575058829420306) (looseness-variance . 0.0001842822222222222) (looses q 0.017 0.0363 0.0032 0.0911)) (fh h - (equal) (time . 9) (line-count . 4) (looseness-spread . 0.0331) (bps q 14 31 50) (piece-count . 67) (avg-piece-length . 20.503298507462688) (avg-looseness . 0.0188) (looseness-sd . 0.013575058829420306) (looseness-variance . 0.0001842822222222222) (looses q 0.017 0.0363 0.0032 0.0911)) (fh-improved . 9) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as helpless under the centrifugal tendency of his person as a hooked fish swinging to land, and beholding the hill, the rick, the plantation, the path, and the rooks going round and round him in an amazing circular race. “I—I sir—only meant that—there was a good crop in the ground—I saw ‘em sow it—and the rooks could have a little bit for dinner—and you wouldn’t miss it, sir—and Mr. Phillotson said I was to be kind to ‘em—oh, oh, oh!”") (measure . 390) (bh h - (equal) (time . 45) (line-count . 6) (looseness-spread . 0.0602) (bps q 15 35 53 74 94) (piece-count . 112) (avg-piece-length . 17.802) (avg-looseness . 0.0227) (looseness-sd . 0.02030964302985161) (looseness-variance . 0.0004124816) (looses q 0.0553 0.0305 0.0231 -0.0049 0.0094 0.0303)) (fu h - (equal) (time . 35) (line-count . 6) (looseness-spread . 0.0616) (bps q 14 28 45 62 80) (piece-count . 97) (avg-piece-length . 20.554886597938147) (avg-looseness . 0.0227) (looseness-sd . 0.020711001907198982) (looseness-variance . 0.00042894559999999995) (looses q 0.0553 0.0305 -0.0063 0.0245 0.0094 0.0303)) (bu h - (equal) (time . 20) (line-count . 6) (looseness-spread . 0.0602) (bps q 14 28 44 62 80) (piece-count . 97) (avg-piece-length . 20.554886597938147) (avg-looseness . 0.0227) (looseness-sd . 0.02030964302985161) (looseness-variance . 0.0004124816) (looses q 0.0553 0.0305 0.0231 -0.0049 0.0094 0.0303)) (fh h - (equal) (time . 13) (line-count . 6) (looseness-spread . 0.0616) (bps q 15 35 54 74 94) (piece-count . 112) (avg-piece-length . 17.802) (avg-looseness . 0.0227) (looseness-sd . 0.020711001907198982) (looseness-variance . 0.00042894559999999995) (looses q 0.0553 0.0305 -0.0063 0.0245 0.0094 0.0303)) (fh-improved . 43) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "This truthful explanation seemed to exasperate the farmer even more than if Jude had stoutly denied saying anything at all, and he still smacked the whirling urchin, the clacks of the instrument continuing to resound all across the field and as far as the ears of distant workers—who gathered thereupon that Jude was pursuing his business of clacking with great assiduity—and echoing from the brand-new church tower just behind the mist, towards the building of which structure the farmer had largely subscribed, to testify his love for God and man.") (measure . 390) (bh h - (equal) (time . 24) (line-count . 7) (looseness-spread . 0.0497) (bps q 18 35 55 75 91 107) (piece-count . 116) (avg-piece-length . 19.530073275862062) (avg-looseness . 0.0197) (looseness-sd . 0.019877849201784606) (looseness-variance . 0.0003951288888888889) (looses q 0.0447 -0.004 0.0425 -0.005 0.0147 0.0251 0.4934)) (fu h - (equal) (time . 14) (line-count . 7) (looseness-spread . 0.0793) (bps q 14 28 44 57 71 84) (piece-count . 92) (avg-piece-length . 24.624875) (avg-looseness . 0.0279) (looseness-sd . 0.028872747627400403) (looseness-variance . 0.0008336355555555557) (looses q -0.0048 0.0455 0.0425 -0.005 0.0147 0.0743 0.4525)) (bu h - (equal) (time . 20) (line-count . 7) (looseness-spread . 0.0696) (bps q 13 28 44 57 70 84) (piece-count . 92) (avg-piece-length . 24.624875) (avg-looseness . 0.0279) (looseness-sd . 0.02567056788533428) (looseness-variance . 0.0006589780555555557) (looses q 0.0447 -0.004 0.0425 -0.005 0.0646 0.0245 0.4525)) (fh h - (equal) (time . 36) (line-count . 7) (looseness-spread . 0.0505) (bps q 19 35 55 75 91 107) (piece-count . 116) (avg-piece-length . 19.530073275862062) (avg-looseness . 0.0197) (looseness-sd . 0.02020714944985781) (looseness-variance . 0.0004083288888888889) (looses q -0.0048 0.0455 0.0425 -0.005 0.0147 0.0251 0.4934)) (fh-improved . 84) (bu-improved . 2) (bh-improved . 1)) c (h - (equal) (text u . "Presently Troutham grew tired of his punitive task, and depositing the quivering boy on his legs, took a sixpence from his pocket and gave it him in payment for his day’s work, telling him to go home and never let him see him in one of those fields again.") (measure . 390) (bh h - (equal) (time . 11) (line-count . 3) (looseness-spread . 0.0094) (bps q 17 37) (piece-count . 55) (avg-piece-length . 18.821527272727277) (avg-looseness . 0.015) (looseness-sd . 0.004699999999999999) (looseness-variance . 2.2089999999999993e-05) (looses q 0.0103 0.0197 0.0359)) (fu h - (equal) (time . 7) (line-count . 3) (looseness-spread . 0.0094) (bps q 13 31) (piece-count . 49) (avg-piece-length . 21.126204081632654) (avg-looseness . 0.015) (looseness-sd . 0.004699999999999999) (looseness-variance . 2.2089999999999993e-05) (looses q 0.0103 0.0197 0.0359)) (bu h - (equal) (time . 10) (line-count . 3) (looseness-spread . 0.0094) (bps q 13 31) (piece-count . 49) (avg-piece-length . 21.126204081632654) (avg-looseness . 0.015) (looseness-sd . 0.004699999999999999) (looseness-variance . 2.2089999999999993e-05) (looses q 0.0103 0.0197 0.0359)) (fh h - (equal) (time . 29) (line-count . 3) (looseness-spread . 0.0094) (bps q 17 37) (piece-count . 55) (avg-piece-length . 18.821527272727277) (avg-looseness . 0.015) (looseness-sd . 0.004699999999999999) (looseness-variance . 2.2089999999999993e-05) (looses q 0.0103 0.0197 0.0359)) (fh-improved . 10) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Jude leaped out of arm’s reach, and walked along the trackway weeping—not from the pain, though that was keen enough; not from the perception of the flaw in the terrestrial scheme, by which what was good for God’s birds was bad for God’s gardener; but with the awful sense that he had wholly disgraced himself before he had been a year in the parish, and hence might be a burden to his great-aunt for life.") (measure . 390) (bh h - (equal) (time . 38) (line-count . 5) (looseness-spread . 0.0273) (bps q 16 35 52 70) (piece-count . 87) (avg-piece-length . 19.24425862068965) (avg-looseness . 0.0197) (looseness-sd . 0.013404663367649334) (looseness-variance . 0.00017968499999999996) (looses q 0.0326 0.0063 0.0063 0.0336 0.1614)) (fu h - (equal) (time . 11) (line-count . 5) (looseness-spread . 0.0906) (bps q 14 30 44 59) (piece-count . 77) (avg-piece-length . 21.743512987012977) (avg-looseness . 0.0404) (looseness-sd . 0.03246385490048894) (looseness-variance . 0.0010539018749999999) (looses q 0.0326 0.0475 0.086 -0.0046 0.0798)) (bu h - (equal) (time . 16) (line-count . 5) (looseness-spread . 0.0906) (bps q 14 30 44 59) (piece-count . 77) (avg-piece-length . 21.743512987012977) (avg-looseness . 0.0404) (looseness-sd . 0.03246385490048894) (looseness-variance . 0.0010539018749999999) (looses q 0.0326 0.0475 0.086 -0.0046 0.0798)) (fh h - (equal) (time . 12) (line-count . 5) (looseness-spread . 0.0273) (bps q 16 35 52 70) (piece-count . 87) (avg-piece-length . 19.24425862068965) (avg-looseness . 0.0197) (looseness-sd . 0.013404663367649334) (looseness-variance . 0.00017968499999999996) (looses q 0.0326 0.0063 0.0063 0.0336 0.1614)) (fh-improved . 26) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "With this shadow on his mind he did not care to show himself in the village, and went homeward by a roundabout track behind a high hedge and across a pasture. Here he beheld scores of coupled earthworms lying half their length on the surface of the damp ground, as they always did in such weather at that time of the year. It was impossible to advance in regular steps without crushing some of them at each tread.") (measure . 390) (bh h - (equal) (time . 36) (line-count . 5) (looseness-spread . 0.0621) (bps q 19 36 54 72) (piece-count . 92) (avg-piece-length . 18.551874999999995) (avg-looseness . 0.0384) (looseness-sd . 0.025975216553476507) (looseness-variance . 0.000674711875) (looses q 0.0622 0.063 0.0009 0.0274 0.0248)) (fu h - (equal) (time . 11) (line-count . 5) (looseness-spread . 0.0738) (bps q 18 33 47 64) (piece-count . 78) (avg-piece-length . 21.881698717948716) (avg-looseness . 0.0369) (looseness-sd . 0.029456440297496913) (looseness-variance . 0.0008676818750000001) (looses q -0.0019 0.0196 0.0579 0.0719 0.0248)) (bu h - (equal) (time . 17) (line-count . 5) (looseness-spread . 0.0621) (bps q 17 31 46 64) (piece-count . 78) (avg-piece-length . 21.881698717948716) (avg-looseness . 0.0384) (looseness-sd . 0.025975216553476507) (looseness-variance . 0.000674711875) (looses q 0.0622 0.063 0.0009 0.0274 0.0248)) (fh h - (equal) (time . 11) (line-count . 5) (looseness-spread . 0.0738) (bps q 20 38 55 72) (piece-count . 92) (avg-piece-length . 18.551874999999995) (avg-looseness . 0.0369) (looseness-sd . 0.029456440297496913) (looseness-variance . 0.0008676818750000001) (looses q -0.0019 0.0196 0.0579 0.0719 0.0248)) (fh-improved . 23) (bu-improved . 4) (bh-improved . 4)) c (h - (equal) (text u . "Though Farmer Troutham had just hurt him, he was a boy who could not himself bear to hurt anything. He had never brought home a nest of young birds without lying awake in misery half the night after, and often reinstating them and the nest in their original place the next morning. He could scarcely bear to see trees cut down or lopped, from a fancy that it hurt them; and late pruning, when the sap was up and the tree bled profusely, had been a positive grief to him in his infancy. This weakness of character, as it may be called, suggested that he was the sort of man who was born to ache a good deal before the fall of the curtain upon his unnecessary life should signify that all was well with him again. He carefully picked his way on tiptoe among the earthworms, without killing a single one.") (measure . 390) (bh h - (equal) (time . 61) (line-count . 10) (looseness-spread . 0.0594) (bps q 16 33 52 70 89 109 130 150 169) (piece-count . 177) (avg-piece-length . 18.446454802259886) (avg-looseness . 0.0239) (looseness-sd . 0.018589191071462955) (looseness-variance . 0.000345558024691358) (looses q 0.0451 0.062 0.0215 0.0363 0.0118 0.0095 0.0119 0.014 0.0026 0.5282)) (fu h - (equal) (time . 21) (line-count . 10) (looseness-spread . 0.0692) (bps q 15 31 47 62 80 96 114 130 146) (piece-count . 151) (avg-piece-length . 21.62266556291391) (avg-looseness . 0.0248) (looseness-sd . 0.02425111426738731) (looseness-variance . 0.0005881165432098765) (looses q 0.0451 -0.0019 0.0227 0.0673 -0.001 0.024 0.0118 0.0001 0.055 0.5282)) (bu h - (equal) (time . 58) (line-count . 10) (looseness-spread . 0.063) (bps q 15 30 46 62 80 96 114 130 146) (piece-count . 151) (avg-piece-length . 21.62266556291391) (avg-looseness . 0.0248) (looseness-sd . 0.022529585487137183) (looseness-variance . 0.0005075822222222223) (looses q 0.0451 0.062 0.0215 0.0047 -0.001 0.024 0.0118 0.0001 0.055 0.5282)) (fh h - (equal) (time . 22) (line-count . 10) (looseness-spread . 0.0692) (bps q 16 34 53 71 90 110 131 151 169) (piece-count . 177) (avg-piece-length . 18.446454802259886) (avg-looseness . 0.0248) (looseness-sd . 0.02425111426738731) (looseness-variance . 0.0005881165432098765) (looses q 0.0451 -0.0019 0.0227 0.0673 -0.001 0.024 0.0118 0.0001 0.055 0.5282)) (fh-improved . 104) (bu-improved . 2) (bh-improved . 7)) c (h - (equal) (text u . "On entering the cottage he found his aunt selling a penny loaf to a little girl, and when the customer was gone she said, “Well, how do you come to be back here in the middle of the morning like this?”") (measure . 390) (bh h - (equal) (time . 26) (line-count . 3) (looseness-spread . 0.0169) (bps q 22 41) (piece-count . 48) (avg-piece-length . 16.973041666666667) (avg-looseness . 0.005) (looseness-sd . 0.00845) (looseness-variance . 7.14025e-05) (looses q -0.0035 0.0134 0.6702)) (fu h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0713) (bps q 18 35) (piece-count . 41) (avg-piece-length . 19.870878048780487) (avg-looseness . 0.0322) (looseness-sd . 0.03565) (looseness-variance . 0.0012709225) (looses q -0.0035 0.0678 0.6242)) (bu h - (equal) (time . 8) (line-count . 3) (looseness-spread . 0.0713) (bps q 18 35) (piece-count . 41) (avg-piece-length . 19.870878048780487) (avg-looseness . 0.0322) (looseness-sd . 0.03565) (looseness-variance . 0.0012709225) (looses q -0.0035 0.0678 0.6242)) (fh h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0169) (bps q 22 41) (piece-count . 48) (avg-piece-length . 16.973041666666667) (avg-looseness . 0.005) (looseness-sd . 0.00845) (looseness-variance . 7.14025e-05) (looses q -0.0035 0.0134 0.6702)) (fh-improved . 10) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Ah!” said his aunt, suspending her breath. And she opened upon him a lecture on how she would now have him all the spring upon her hands doing nothing. “If you can’t skeer birds, what can ye do? There! don’t ye look so deedy! Farmer Troutham is not so much better than myself, come to that. But ‘tis as Job said, ‘Now they that are younger than I have me in derision, whose fathers I would have disdained to have set with the dogs of my flock.’ His father was my father’s journeyman, anyhow, and I must have been a fool to let ‘ee go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of mischty.”") (measure . 390) (bh h - (equal) (time . 49) (line-count . 8) (looseness-spread . 0.0335) (bps q 18 35 50 69 87 105 126) (piece-count . 132) (avg-piece-length . 19.122496212121213) (avg-looseness . 0.0225) (looseness-sd . 0.011450514648446406) (looseness-variance . 0.00013111428571428572) (looses q 0.0404 0.0361 0.0174 0.0237 0.0069 0.0224 0.0106 0.7197)) (fu h - (equal) (time . 16) (line-count . 8) (looseness-spread . 0.0343) (bps q 15 31 46 64 80 96 116) (piece-count . 121) (avg-piece-length . 20.860904958677686) (avg-looseness . 0.0225) (looseness-sd . 0.0123266759012927) (looseness-variance . 0.0001519469387755102) (looses q 0.0404 0.0361 0.0174 0.0237 0.0069 0.0061 0.0268 0.7197)) (bu h - (equal) (time . 51) (line-count . 8) (looseness-spread . 0.0335) (bps q 15 31 46 64 80 95 116) (piece-count . 121) (avg-piece-length . 20.860904958677686) (avg-looseness . 0.0225) (looseness-sd . 0.011450514648446406) (looseness-variance . 0.00013111428571428572) (looses q 0.0404 0.0361 0.0174 0.0237 0.0069 0.0224 0.0106 0.7197)) (fh h - (equal) (time . 16) (line-count . 8) (looseness-spread . 0.0343) (bps q 18 35 50 69 87 106 126) (piece-count . 132) (avg-piece-length . 19.122496212121213) (avg-looseness . 0.0225) (looseness-sd . 0.0123266759012927) (looseness-variance . 0.0001519469387755102) (looses q 0.0404 0.0361 0.0174 0.0237 0.0069 0.0061 0.0268 0.7197)) (fh-improved . 43) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "More angry with Jude for demeaning her by coming there than for dereliction of duty, she rated him primarily from that point of view, and only secondarily from a moral one.") (measure . 390) (bh h - (equal) (time . 7) (line-count . 3) (looseness-spread . 0.0152) (bps q 18 38) (piece-count . 39) (avg-piece-length . 18.52089743589744) (avg-looseness . 0.0534) (looseness-sd . 0.007599999999999999) (looseness-variance . 5.775999999999999e-05) (looses q 0.061 0.0458 0.8806)) (fu h - (equal) (time . 4) (line-count . 3) (looseness-spread . 0.1112) (bps q 15 29) (piece-count . 30) (avg-piece-length . 24.077166666666663) (avg-looseness . 0.0566) (looseness-sd . 0.0556) (looseness-variance . 0.0030913599999999996) (looses q 0.001 0.1122 0.8806)) (bu h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.0152) (bps q 14 29) (piece-count . 30) (avg-piece-length . 24.077166666666663) (avg-looseness . 0.0534) (looseness-sd . 0.007599999999999999) (looseness-variance . 5.775999999999999e-05) (looses q 0.061 0.0458 0.8806)) (fh h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.1112) (bps q 19 38) (piece-count . 39) (avg-piece-length . 18.52089743589744) (avg-looseness . 0.0566) (looseness-sd . 0.0556) (looseness-variance . 0.0030913599999999996) (looses q 0.001 0.1122 0.8806)) (fh-improved . 13) (bu-improved . 1) (bh-improved . 1)) c (h - (equal) (text u . "“Not that you should have let the birds eat what Farmer Troutham planted. Of course you was wrong in that. Jude, Jude, why didstn’t go off with that schoolmaster of thine to Christminster or somewhere? But, oh no—poor or’nary child—there never was any sprawl on thy side of the family, and never will be!”") (measure . 390) (bh h - (equal) (time . 12) (line-count . 4) (looseness-spread . 0.0726) (bps q 14 31 48) (piece-count . 62) (avg-piece-length . 20.614677419354845) (avg-looseness . 0.0489) (looseness-sd . 0.030003999733368883) (looseness-variance . 0.00090024) (looses q 0.0885 0.0423 0.0159 0.2397)) (fu h - (equal) (time . 7) (line-count . 4) (looseness-spread . 0.0772) (bps q 14 29 42) (piece-count . 55) (avg-piece-length . 23.238363636363637) (avg-looseness . 0.0517) (looseness-sd . 0.03161564310414844) (looseness-variance . 0.0009995488888888888) (looses q 0.0885 0.0113 0.0552 0.2397)) (bu h - (equal) (time . 33) (line-count . 4) (looseness-spread . 0.0772) (bps q 14 29 42) (piece-count . 55) (avg-piece-length . 23.238363636363637) (avg-looseness . 0.0517) (looseness-sd . 0.03161564310414844) (looseness-variance . 0.0009995488888888888) (looses q 0.0885 0.0113 0.0552 0.2397)) (fh h - (equal) (time . 8) (line-count . 4) (looseness-spread . 0.0772) (bps q 14 32 48) (piece-count . 62) (avg-piece-length . 20.614677419354845) (avg-looseness . 0.0517) (looseness-sd . 0.03161564310414844) (looseness-variance . 0.0009995488888888888) (looses q 0.0885 0.0113 0.0552 0.2397)) (fh-improved . 9) (bu-improved . 0) (bh-improved . 1)) c (h - (equal) (text u . "“Lord! you ought to know where the city of Christminster is. Near a score of miles from here. It is a place much too good for you ever to have much to do with, poor boy, I’m a-thinking.”") (measure . 390) (bh h - (equal) (time . 8) (line-count . 3) (looseness-spread . 0.0404) (bps q 18 38) (piece-count . 42) (avg-piece-length . 18.068964285714287) (avg-looseness . 0.0228) (looseness-sd . 0.0202) (looseness-variance . 0.0004080399999999999) (looses q 0.043 0.0026 0.8218)) (fu h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0404) (bps q 16 36) (piece-count . 39) (avg-piece-length . 19.458884615384616) (avg-looseness . 0.0228) (looseness-sd . 0.0202) (looseness-variance . 0.0004080399999999999) (looses q 0.043 0.0026 0.8218)) (bu h - (equal) (time . 7) (line-count . 3) (looseness-spread . 0.0404) (bps q 16 36) (piece-count . 39) (avg-piece-length . 19.458884615384616) (avg-looseness . 0.0228) (looseness-sd . 0.0202) (looseness-variance . 0.0004080399999999999) (looses q 0.043 0.0026 0.8218)) (fh h - (equal) (time . 27) (line-count . 3) (looseness-spread . 0.0404) (bps q 18 38) (piece-count . 42) (avg-piece-length . 18.068964285714287) (avg-looseness . 0.0228) (looseness-sd . 0.0202) (looseness-variance . 0.0004080399999999999) (looses q 0.043 0.0026 0.8218)) (fh-improved . 4) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as that. We’ve never had anything to do with folk in Christminster, nor folk in Christminster with we.”") (measure . 390) (bh h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.0495) (bps q 16 34) (piece-count . 35) (avg-piece-length . 20.56594285714286) (avg-looseness . 0.0682) (looseness-sd . 0.024749999999999998) (looseness-variance . 0.0006125624999999998) (looses q 0.0434 0.0929 0.8996)) (fu h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0495) (bps q 15 28) (piece-count . 29) (avg-piece-length . 24.820965517241376) (avg-looseness . 0.0682) (looseness-sd . 0.024749999999999998) (looseness-variance . 0.0006125624999999998) (looses q 0.0434 0.0929 0.8996)) (bu h - (equal) (time . 6) (line-count . 3) (looseness-spread . 0.0495) (bps q 15 28) (piece-count . 29) (avg-piece-length . 24.820965517241376) (avg-looseness . 0.0682) (looseness-sd . 0.024749999999999998) (looseness-variance . 0.0006125624999999998) (looses q 0.0434 0.0929 0.8996)) (fh h - (equal) (time . 5) (line-count . 3) (looseness-spread . 0.0495) (bps q 16 34) (piece-count . 35) (avg-piece-length . 20.56594285714286) (avg-looseness . 0.0682) (looseness-sd . 0.024749999999999998) (looseness-variance . 0.0006125624999999998) (looses q 0.0434 0.0929 0.8996)) (fh-improved . 7) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "Jude went out, and, feeling more than ever his existence to be an undemanded one, he lay down upon his back on a heap of litter near the pig-sty. The fog had by this time become more translucent, and the position of the sun could be seen through it. He pulled his straw hat over his face, and peered through the interstices of the plaiting at the white brightness, vaguely reflecting. Growing up brought responsibilities, he found. Events did not rhyme quite as he had thought. Nature’s logic was too horrid for him to care for. That mercy towards one set of creatures was cruelty towards another sickened his sense of harmony. As you got older, and felt yourself to be at the centre of your time, and not at a point in its circumference, as you had felt when you were little, you were seized with a sort of shuddering, he perceived. All around you there seemed to be something glaring, garish, rattling, and the noises and glares hit upon the little cell called your life, and shook it, and warped it.") (measure . 390) (bh h - (equal) (time . 72) (line-count . 12) (looseness-spread . 0.0655) (bps q 19 40 57 74 92 107 125 145 167 186 204) (piece-count . 217) (avg-piece-length . 18.67255529953916) (avg-looseness . 0.0246) (looseness-sd . 0.01664528821723165) (looseness-variance . 0.0002770656198347108) (looses q -0.007 0.0268 0.0343 0.0311 0.0318 0.0585 0.0224 0.0017 0.0128 0.0284 0.0295 0.2728)) (fu h - (equal) (time . 47) (line-count . 12) (looseness-spread . 0.0694) (bps q 16 36 51 67 77 92 107 124 142 157 171) (piece-count . 183) (avg-piece-length . 22.141773224043693) (avg-looseness . 0.0253) (looseness-sd . 0.021266117854348527) (looseness-variance . 0.0004522477685950412) (looses q -0.007 0.0268 0.0343 0.0027 0.0602 0.0269 0.0624 0.0017 0.0128 0.0284 0.0295 0.2728)) (bu h - (equal) (time . 59) (line-count . 12) (looseness-spread . 0.0694) (bps q 16 36 51 66 77 92 107 124 142 157 171) (piece-count . 183) (avg-piece-length . 22.141773224043693) (avg-looseness . 0.0253) (looseness-sd . 0.017377742960845724) (looseness-variance . 0.0003019859504132231) (looses q -0.007 0.0268 0.0343 0.0311 0.0318 0.0269 0.0624 0.0017 0.0128 0.0284 0.0295 0.2728)) (fh h - (equal) (time . 27) (line-count . 12) (looseness-spread . 0.0694) (bps q 19 40 57 75 92 108 125 145 167 186 204) (piece-count . 217) (avg-piece-length . 18.67255529953916) (avg-looseness . 0.0253) (looseness-sd . 0.021266117854348527) (looseness-variance . 0.0004522477685950412) (looses q -0.007 0.0268 0.0343 0.0027 0.0602 0.0269 0.0624 0.0017 0.0128 0.0284 0.0295 0.2728)) (fh-improved . 178) (bu-improved . 1) (bh-improved . 2)) c (h - (equal) (text u . "Then, like the natural boy, he forgot his despondency, and sprang up. During the remainder of the morning he helped his aunt, and in the afternoon, when there was nothing more to be done, he went into the village. Here he asked a man whereabouts Christminster lay.") (measure . 390) (bh h - (equal) (time . 11) (line-count . 4) (looseness-spread . 0.0429) (bps q 18 36 55) (piece-count . 58) (avg-piece-length . 19.236922413793103) (avg-looseness . 0.0305) (looseness-sd . 0.017715216309401614) (looseness-variance . 0.0003138288888888889) (looses q 0.0538 0.0267 0.0109 0.7953)) (fu h - (equal) (time . 7) (line-count . 4) (looseness-spread . 0.0429) (bps q 14 29 45) (piece-count . 46) (avg-piece-length . 24.25525) (avg-looseness . 0.0305) (looseness-sd . 0.017715216309401614) (looseness-variance . 0.0003138288888888889) (looses q 0.0538 0.0267 0.0109 0.7953)) (bu h - (equal) (time . 9) (line-count . 4) (looseness-spread . 0.0429) (bps q 14 29 45) (piece-count . 46) (avg-piece-length . 24.25525) (avg-looseness . 0.0305) (looseness-sd . 0.017715216309401614) (looseness-variance . 0.0003138288888888889) (looses q 0.0538 0.0267 0.0109 0.7953)) (fh h - (equal) (time . 1857) (line-count . 4) (looseness-spread . 0.0429) (bps q 18 36 55) (piece-count . 58) (avg-piece-length . 19.236922413793103) (avg-looseness . 0.0305) (looseness-sd . 0.017715216309401614) (looseness-variance . 0.0003138288888888889) (looses q 0.0538 0.0267 0.0109 0.7953)) (fh-improved . 21) (bu-improved . 0) (bh-improved . 0)) c (h - (equal) (text u . "The man pointed north-eastward, in the very direction where lay that field in which Jude had so disgraced himself. There was something unpleasant about the coincidence for the moment, but the fearsomeness of this fact rather increased his curiosity about the city. The farmer had said he was never to be seen in that field again; yet Christminster lay across it, and the path was a public one. So, stealing out of the hamlet, he descended into the same hollow which had witnessed his punishment in the morning, never swerving an inch from the path, and climbing up the long and tedious ascent on the other side till the track joined the highway by a little clump of trees. Here the ploughed land ended, and all before him was bleak open down.") (measure . 390) (bh h - (equal) (time . 55) (line-count . 9) (looseness-spread . 0.0535) (bps q 17 34 51 69 90 108 126 145) (piece-count . 158) (avg-piece-length . 19.360905063291128) (avg-looseness . 0.0258) (looseness-sd . 0.02203088740836374) (looseness-variance . 0.00048536) (looses q 0.0195 0.0533 -0.0001 0.0467 0.0029 0.0316 -0.0002 0.0531 0.1607)) (fu h - (equal) (time . 18) (line-count . 10) (looseness-spread . 0.1422) (bps q 15 26 39 56 72 85 99 116 132) (piece-count . 133) (avg-piece-length . 23.000172932330816) (avg-looseness . 0.0501) (looseness-sd . 0.0462856855988763) (looseness-variance . 0.002142364691358025) (looses q 0.0195 0.1325 0.0385 0.057 0.0173 0.1273 0.0228 0.0461 -0.0097 0.9333)) (bu h - (equal) (time . 28) (line-count . 10) (looseness-spread . 0.1072) (bps q 14 26 39 56 71 85 99 116 132) (piece-count . 133) (avg-piece-length . 23.000172932330816) (avg-looseness . 0.0501) (looseness-sd . 0.029710196944300722) (looseness-variance . 0.000882695802469136) (looses q 0.0975 0.0545 0.0385 0.057 0.063 0.0816 0.0228 0.0461 -0.0097 0.9333)) (fh h - (equal) (time . 20) (line-count . 9) (looseness-spread . 0.0535) (bps q 17 34 51 69 90 108 126 145) (piece-count . 158) (avg-piece-length . 19.360905063291128) (avg-looseness . 0.0258) (looseness-sd . 0.02203088740836374) (looseness-variance . 0.00048536) (looses q 0.0195 0.0533 -0.0001 0.0467 0.0029 0.0316 -0.0002 0.0531 0.1607)) (fh-improved . 132) (bu-improved . 2) (bh-improved . 0)))) \ No newline at end of file diff --git a/quad/quad/old-master/stats.rkt b/quad/quad/old-master/stats.rkt deleted file mode 100644 index 49e89acb..00000000 --- a/quad/quad/old-master/stats.rkt +++ /dev/null @@ -1,194 +0,0 @@ -#lang racket -(require math/statistics sugar racket/serialize plot) -(require (except-in "quads.rkt" line) "utils.rkt" "wrap.rkt" "world.rkt" "measure.rkt" "logger.rkt" "typeset.rkt") - -(define+provide (make-wrap-proc-bps - #:make-pieces-proc make-pieces-proc - #:measure-quad-proc measure-quad-proc - #:compose-line-proc compose-line-proc - #:fast-measure-pieces-proc [fast-measure-pieces-proc (compose1 measure-quad-proc compose-line-proc)] - #:find-breakpoints-proc find-breakpoints-proc) - (λ(qs [measure #f]) - (let* ([measure (or measure (quad-attr-ref/parameter (car qs) world:measure-key))] - [qs (if (quad-has-attr? (car qs) world:measure-key) - qs - (map (curryr quad-attr-set world:measure-key measure) qs))]) - (log-quad-debug "wrapping on measure = ~a" measure) - (define pieces (make-pieces-proc qs)) - - (log-quad-debug "avg piece length for breakpoints = ~a" - (/ (for/sum ([p (in-list pieces)]) - (for/sum ([q (in-list (quad-list p))]) - (define str (quad->string q)) - (if (equal? str "") - (quad-attr-ref q world:width-key 0) - (apply measure-text (quad->string q) (font-attributes-with-defaults q))))) - (length pieces))) - - (define bps (find-breakpoints-proc (list->vector pieces) (+ 0.0 measure))) - (values pieces bps (map (curryr compose-line-proc measure-quad-proc) (break-at pieces bps)))))) - -;; wrap proc based on greedy proc -(define wrap-first-bps (make-wrap-proc-bps - #:make-pieces-proc (make-caching-proc make-pieces) - #:measure-quad-proc quad-width - #:compose-line-proc pieces->line - #:fast-measure-pieces-proc measure-potential-line - #:find-breakpoints-proc wrap-first)) - -;; wrap proc based on penalty function -(define wrap-best-bps (make-wrap-proc-bps - #:make-pieces-proc (make-caching-proc make-pieces) - #:measure-quad-proc quad-width - #:compose-line-proc pieces->line - #:fast-measure-pieces-proc measure-potential-line - #:find-breakpoints-proc wrap-best)) - -(define ti (block '(measure 54 leading 18) "Meg is an ally.")) - - -(define (looseness-spread lines) - (if (<= (length lines) 1) - 0 - (let ([lines-to-measure (drop-right lines 1)]) ; exclude last line from looseness calculation - (define measures (map (λ(line) (quad-attr-ref line world:line-looseness-key 0)) lines-to-measure)) - (round-float (- (apply max measures) (apply min measures)))))) - -(define (geometric-mean lines) - (if (<= (length lines) 1) - 0 - (let ([lines-to-measure (drop-right lines 1)]) ; exclude last line from looseness calculation - (define measures (map (λ(line) (quad-attr-ref line world:line-looseness-key 0)) lines-to-measure)) - (expt (apply * measures) (/ 1 (length measures)))))) - -(define (looseness-stddev lines) - (if (<= (length lines) 1) - 0 - (let ([lines-to-measure (drop-right lines 1)]) ; exclude last line from looseness calculation - (define measures (map (λ(line) (quad-attr-ref line world:line-looseness-key 0)) lines-to-measure)) - (stddev measures)))) - -(define (looseness-var lines) - (if (<= (length lines) 1) - 0 - (let ([lines-to-measure (drop-right lines 1)]) ; exclude last line from looseness calculation - (define measures (map (λ(line) (quad-attr-ref line world:line-looseness-key 0)) lines-to-measure)) - (variance measures)))) - - - -(define (list->hash0 . xs) - (define mh (make-hash)) - (for ([(k v) (in-hash (apply hash xs))]) - (hash-set! mh k v)) - mh) - -(define (piece-length p) - (apply + (map quad-width (quad-list p)))) - -(define (trial wrap-proc ti measure) - (match-define-values (result time _ _) (time-apply wrap-proc (append (list ti) (list measure)))) - (match-define (list pieces bps lines) result) - (define line-count (length lines)) - (define piece-count (length pieces)) - (define avg-piece-length (/ (apply + (map piece-length pieces)) (length pieces))) - (define avg-looseness (average-looseness lines)) - (define looseness-sd (looseness-stddev lines)) - (define looseness-variance (looseness-var lines)) - (define spread (looseness-spread lines)) - (define looses (map (λ(line) (quad-attr-ref line world:line-looseness-key 0)) lines)) - (hash 'bps bps 'time time 'line-count line-count 'looses looses - 'piece-count piece-count 'avg-piece-length avg-piece-length - 'avg-looseness avg-looseness 'looseness-spread spread - 'looseness-sd looseness-sd - 'looseness-variance looseness-variance)) - - -(define (improved? h1 h2) - (define h1-bps (if (hash? h1) (hash-ref h1 'bps) h1)) - (define h2-bps (if (hash? h2) (hash-ref h2 'bps) h2)) - (define min-length (min (length h1-bps) (length h2-bps))) - (apply + (map abs (map - (take h1-bps min-length) (take h2-bps min-length))))) - - -(define (trial-set measure ti) - (define text (quad->string ti)) - - (define ti-unhyphenated (split-quad ti)) - (define fu (trial wrap-first-bps ti-unhyphenated measure)) - (define bu (trial wrap-best-bps ti-unhyphenated measure)) - (define ti-hyphenated (split-quad (hyphenate-quad ti))) - (define fh (trial wrap-first-bps ti-hyphenated measure)) - (define bh (trial wrap-best-bps ti-hyphenated measure)) - - (hash 'fu fu 'bu bu 'fh fh 'bh bh - 'text text - 'measure measure - 'fh-improved (improved? fu fh) - 'bu-improved (improved? fu bu) - 'bh-improved (improved? fh bh))) - -(define (make-blocks textfile) - (define strings (filter (λ(s) (> (string-length s) 10)) (map (λ(s) (regexp-replace* #rx"\n" s " ")) (map string-trim (string-split (file->string textfile) "\n\n"))))) - (map (λ(t) (block '(font "Equity Text B" leading 14 column-count 1 column-gutter 10 size 11.5 x-align justify x-align-last-line left) t)) strings)) - -(define (refresh [filename "jude0.txt"] [measures '(150 180 210 240 270 300 330 360 390)]) - (define paragraphs (make-blocks filename)) - ;; only use paragraphs > 2 lines because last line is disregarded for looseness spread calculation - (define results (filter - (λ(rec) (> (hash-ref (hash-ref rec 'fu) 'line-count) 2)) (append-map (compose1 (λ(m) (map (λ(p) (trial-set m p)) paragraphs)) (λ(m) (report m))) measures))) - (write-to-file (serialize results) "stats-data.txt" #:exists 'replace)) - -(define (load-data-records) - (deserialize (file->value "stats-data.txt"))) - -(define recs (load-data-records)) - -(define (plot-lists xs ys zs kx ky kz) - (parameterize ([plot-width 700] - [plot-height 700] - [plot-x-label kx] - [plot-y-label ky] - [plot-z-label kz]) - (plot3d - ;#:x-max 2 #:x-min -2 - #:y-min 140 #:y-max 400 - #:z-max 1.5 - #:angle 0 - #:altitude 32 - (points3d (map vector xs ys zs) - #:sym 'fullcircle7 - #:alpha 0.1 - #:color 42)))) - -(define (fu-formula rec) - (define pieces-per-line (/ (hash-ref (hash-ref rec 'fu) 'piece-count) - (hash-ref (hash-ref rec 'fu) 'line-count) 1.0)) - (+ 2.2 (log (abs (hash-ref (hash-ref rec 'fu) 'looseness-sd))) - (* 0.09 pieces-per-line))) - -(define (geo-mean rec) - (define looses (hash-ref (hash-ref rec 'fu) 'looses)) - (expt (abs (apply * looses)) (/ 1 (length looses)))) - -(define (magic2 rec) - (define looses (map abs (hash-ref (hash-ref rec 'fu) 'looses))) - (expt (log (+ 1 (/ (variance looses) (expt (mean looses) 2)))) 0.5)) - - -(define (plot-it) - (define-values (helped or-not) (partition (λ(rec) (< 0 (hash-ref rec 'bu-improved))) recs)) - (define-values (fu-pos fu-neg) (partition (λ(rec) (> (fu-formula rec) 0)) recs)) - (report* (length helped) (length or-not) (length fu-pos) (length fu-neg)) - (let ([recs recs]) - (plot-lists - (map fu-formula recs) - (map (λ(rec) (hash-ref rec 'measure)) recs) - (map (λ(rec) (if (= 0 (hash-ref rec 'bu-improved)) 0 1)) recs) "fu-formula" "measure" "improve?"))) - -(plot-it) - -(define (looseness-improvement rec) - (/ (abs (- (hash-ref (hash-ref rec 'bu) 'avg-looseness) (hash-ref (hash-ref rec 'fu) 'avg-looseness))) - (hash-ref (hash-ref rec 'bu) 'avg-looseness))) -(define zs (filter positive? (sort (map looseness-improvement recs) <))) \ No newline at end of file diff --git a/quad/quad/old-master/test-quadlang.rkt b/quad/quad/old-master/test-quadlang.rkt deleted file mode 100644 index 53a69f13..00000000 --- a/quad/quad/old-master/test-quadlang.rkt +++ /dev/null @@ -1,3 +0,0 @@ -#lang quad - -◊block['(measure 240.0 font "Times New Roman" leading 16.0 vmeasure 300.0 size 13.5 x-align justify x-align-last-line left)]{My Fellow Americans.} \ No newline at end of file diff --git a/quad/quad/old-master/test-quadlangmod.rkt b/quad/quad/old-master/test-quadlangmod.rkt deleted file mode 100644 index 60404f27..00000000 --- a/quad/quad/old-master/test-quadlangmod.rkt +++ /dev/null @@ -1,3 +0,0 @@ -#lang quad - -◊block[#f]{hi there everyone} \ No newline at end of file diff --git a/quad/quad/old-master/test-render.rkt b/quad/quad/old-master/test-render.rkt deleted file mode 100644 index f1056a76..00000000 --- a/quad/quad/old-master/test-render.rkt +++ /dev/null @@ -1,2 +0,0 @@ -#lang racket -(require "test-quadlangmod.rkt") \ No newline at end of file diff --git a/quad/quad/old-master/tests-ocm.rkt b/quad/quad/old-master/tests-ocm.rkt deleted file mode 100644 index 2807ff0d..00000000 --- a/quad/quad/old-master/tests-ocm.rkt +++ /dev/null @@ -1,79 +0,0 @@ -#lang racket/base -(require racket/list racket/function rackunit "ocm.rkt" sugar) - - -(define (vector-range n) - (build-vector n identity)) - -(define (random-ascending len start finish) - (if (= len 0) - null - (let ([r (+ start (random (- finish start)))]) - (cons r (random-ascending (sub1 len) r finish))))) - - -(define (concave-list len min [lowval 0][highval 100]) - (append (reverse (random-ascending min lowval highval)) (random-ascending (- len min) lowval highval))) - - -(define (make-matrix2 rows cols) - (define row-minima-indexes (random-ascending rows 0 cols)) - (reverse (for/list ([row-minima-index (in-list row-minima-indexes)]) - (concave-list cols row-minima-index 20 400)))) - - -(define (make-matrix rows cols) - (define seed (for/list ([i (in-range (max rows cols))]) - (random 100))) - (for/list ([i (in-range rows)]) - (for/list ([j (in-range cols)]) - (if (< i j) - (apply + (sublist seed i (add1 j))) - (apply + (sublist seed j (add1 i))))))) - - -(define (make-matrix-proc m [is (range (length m))] [js (range (length (car m)))]) - (let ([ipairs (apply hash (flatten (map cons is (range (length is)))))] - [jpairs (apply hash (flatten (map cons js (range (length js)))))]) - (λ(i j) - (define my-i (hash-ref ipairs i)) - (define my-j (hash-ref jpairs j)) - (with-handlers [(exn:fail? (λ(exn) (* -1 i)))] - (list-ref (list-ref m my-i) my-j))))) - - -(define (compare-reductions m) - (check-equal? - (reduce2 (vector-range (length m)) (vector-range (length (car m))) (make-matrix-proc m) identity) - (reduce (vector-range (length m)) (vector-range (length (car m))) (make-matrix-proc m) identity))) - - -(define (do-it x) - (repeat x - (define rows (+ 2 (random 40))) - (define cols (+ 2 (random rows))) - (define m (make-matrix rows cols)) - (check-true (smawky? m)) - (compare-reductions m))) - -(define me '((25 21 13 10 20 13 19 35 37 41 58 66 82 99 124 133 156 178) (42 35 26 20 29 21 25 37 36 39 56 64 76 91 116 125 146 164) (57 48 35 28 33 24 28 40 37 37 54 61 72 83 107 113 131 146) (78 65 51 42 44 35 38 48 42 42 55 61 70 80 100 106 120 135) (90 76 58 48 49 39 42 48 39 35 47 51 56 63 80 86 97 110) (103 85 67 56 55 44 44 49 39 33 41 44 49 56 71 75 84 96) (123 105 86 75 73 59 57 62 51 44 50 52 55 59 72 74 80 92) (142 123 100 86 82 65 61 62 50 43 47 45 46 46 58 59 65 73) (151 130 104 88 80 59 52 49 37 29 29 24 23 20 28 25 31 39))) - - - -(define (bug-test bugmatrix bugrows bugcols) - (define bugproc (make-matrix-proc bugmatrix bugrows bugcols)) - (check-equal? (reduce (list->vector bugrows) (list->vector bugcols) bugproc identity) - (reduce2 (list->vector bugrows) (list->vector bugcols) bugproc identity))) - - -(bug-test '((19496.0 14025.0 7134.0 5027.0) (108793.0 102427.0 93819.0 90268.0) (101409.0 93357.0 81509.0 75236.0) (106662.0 93357.0 71417.0 56665.0)) - '(0 1 2 3) - '(4 5 6 7)) - - -(bug-test '((25 42 57 78 90 103 123 142 151) (21 35 48 65 76 85 105 123 130) (13 26 35 51 58 67 86 100 104) (10 20 28 42 48 56 75 86 88) (20 29 33 44 49 55 73 82 80) (13 21 24 35 39 44 59 65 59) (19 25 28 38 42 44 57 61 52) (35 37 40 48 48 49 62 62 49) (37 36 37 42 39 39 51 50 37) (41 39 37 42 35 33 44 43 29) (58 56 54 55 47 41 50 47 29) (66 64 61 61 51 44 52 45 24) (82 76 72 70 56 49 55 46 23) (99 91 83 80 63 56 59 46 20) (124 116 107 100 80 71 72 58 28) (133 125 113 106 86 75 74 59 25) (156 146 131 120 97 84 80 65 31) (178 164 146 135 110 96 92 73 39)) - '(0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17) - '(0 1 2 3 4 5 6 7 8)) - - -(do-it 10) \ No newline at end of file diff --git a/quad/quad/old-master/tests.rkt b/quad/quad/old-master/tests.rkt deleted file mode 100644 index 16d291bc..00000000 --- a/quad/quad/old-master/tests.rkt +++ /dev/null @@ -1,95 +0,0 @@ -#lang racket/base -(require "utils.rkt" "wrap.rkt" "quads.rkt" "world.rkt" racket/list racket/format) -(require rackunit) - -(check-equal? (join-attrs (list (box '(width 10)) (box '() "foobar") (hash 'x 10) (list 'width 20))) - (list (cons 'width 10) (cons 'x 10) (cons 'width 20))) - -(check-equal? (flatten-attrs (hash 'foo 'bar) (hash 'x 10)) (apply hash '(foo bar x 10))) -(check-equal? (flatten-attrs (hash 'x -5) (hash 'x 10)) (apply hash '(x 5))) -(check-equal? (merge-attrs (hash 'x -5) (hash 'x 10)) (apply hash '(x 10))) - -(check-equal? (gather-common-attrs (list (box '(foo bar)) (box '(foo bar goo bar zam zino)) (box '(foo bar)))) '(foo bar)) -(check-equal? (gather-common-attrs (list (box) (box '(foo bar goo bar zam zino)) (box '(foo bar)))) '()) -(check-equal? (gather-common-attrs (list (box '(width bar)) (box '(width bar)) (box '(width bar)))) '()) - -(define b1 (box '(x 10) "1st" (box '(foo bar) "2nd") "3rd")) -(define b1-flattened (list (box '(x 10) "1st") (box '(x 10 foo bar) "2nd") (box '(x 10) "3rd"))) - - -(define b3 (box '() (word) (line) (page))) -(check-true (sequence? b3)) -;(check-equal? (for/list ([i (in-quad b3)]) i) (list (word) (line) (page))) - -(check-true (quad= (flatten-quad b1) b1-flattened)) - -(define b2 (box '(x 10) (spacer) (box '(x 15) (spacer) (spacer)) (spacer))) -(define b2-flattened (list (spacer '(x 10)) (spacer '(x 25)) (spacer '(x 25)) (spacer '(x 10)))) - -(check-true (quad= (flatten-quad b2) b2-flattened)) -(check-true (quad= (split-quad b2) b2-flattened)) - -(check-true (quad= (flatten-quad (box '(foo 10) (spacer) (box) (spacer))) (list (spacer '(foo 10)) (box '(foo 10)) (spacer '(foo 10))))) - - -(check-equal? (compute-absolute-positions (page '(x 100 y 100) (line '(x 10 y 10) (word '(x 1 y 1) "hello") - (word '(x 2 y 2) "world")))) - (page '(y 100.0 x 100.0) (line '(y 110.0 x 110.0) (word '(y 111.0 x 111.0) "hello")(word '(y 112.0 x 112.0) "world")))) - - -(define b2-exploded (list (word '(x 10) "1") (word '(x 10) "s") (word '(x 10) "t") (word '(x 10 foo bar) "2") (word '(x 10 foo bar) "n") (word '(x 10 foo bar) "d") (word '(x 10) "3") (word '(x 10) "r") (word '(x 10) "d"))) - -(check-true (quad= (split-quad b1) b2-exploded)) - - -(check-false (quad-has-attr? (box) 'foo)) -(check-true (quad-has-attr? (box '(foo bar)) 'foo)) - -(check-equal? (quad-attr-set (box '(foo bar)) 'foo 'zam) (box '(foo zam))) -(check-equal? (quad-attr-set (box '()) 'foo 'zam) (box '(foo zam))) -(check-equal? (quad-attr-set* (box '()) 'foo 'zam 'bar 'boo) (box '(foo zam bar boo))) -(check-equal? (quad-attr-set* (box '(foo bar)) 'foo 'zam 'bar 'boo) (box '(foo zam bar boo))) - -(check-equal? (quad-attr-remove (box '(foo bar zim zam)) 'foo) (box '(zim zam))) -(check-equal? (quad-attr-remove (box '()) 'zim) (box)) -(check-equal? (quad-attr-remove* (box '(foo bar zim zam ding dong)) 'foo 'ding) (box '(zim zam))) -(check-equal? (quad-attr-remove* (box '()) 'zim) (box)) - -(check-true (quad-ends-with? (box '() "foo") "foo")) -(check-false (quad-ends-with? (box '() "foo") "food")) -(check-false (quad-ends-with? (box '() (box '() "foo")) "food")) -(check-true (quad-ends-with? (box '() (box '() "foo")) "foo")) -(check-true (quad-ends-with? (box '() (box '() "foo")) "o")) -(check-true (quad-ends-with? (box '() (box '() (box '() (box '() (box '() "foo-"))))) "-")) - -(check-equal? (quad-append (box '() "foo") "bar") (box '() "foo" "bar")) -(check-equal? (quad-append (box '() "foo") (box '() "bar")) (box '() "foo" (box '() "bar"))) - -(check-equal? (quad-last-char (box '() (box '() "foo") "food")) "d") -(check-equal? (quad-last-char (box '() (box '() "foo"))) "o") -(check-equal? (quad-last-char (box '() "foo")) "o") -(check-false (quad-last-char (box))) - -(check-equal? (quad-first-char (box '() (box '() "foo") "bar")) "f") -(check-equal? (quad-first-char (box '() (box '() "foo") "bar")) "f") -(check-equal? (quad-first-char (box '() "foo")) "f") -(check-false (quad-first-char (box))) - -(check-equal? (quad->string (box '(width 100) "foo")) "foo") -(check-equal? (quad->string (box '(width 100) "foo" (box '(width 100) "bar"))) "foobar") -(check-equal? (quad->string (box '(width 100) "foo" (box '(width 100) "bar") "ino")) "foobarino") -(check-equal? (quad->string (box '(width 100))) "") - - -(check-false (whitespace? (~a #\u00A0))) -(check-true (whitespace/nbsp? (~a #\u00A0))) -(check-true (whitespace/nbsp? (word '() (~a #\u00A0)))) -(check-false (whitespace? (format " ~a " #\u00A0))) -(check-true (whitespace/nbsp? (format " ~a " #\u00A0))) -(define funny-unicode-spaces (map ~a (list #\u2000 #\u2007 #\u2009 #\u200a #\u202f))) -(check-true (andmap whitespace? funny-unicode-spaces)) -(check-true (andmap whitespace/nbsp? funny-unicode-spaces)) - - -(let ([world:minimum-last-line-chars 0]) - (check-equal? (map (compose1 quad-list last quad-list) (make-pieces (split-quad (block '() "Foo-dog and " (box) " mas\u00adsachu.")))) '(("o") ("g") ("d") () ("s") (".")))) diff --git a/quad/quad/old-master/texts/jude.txt b/quad/quad/old-master/texts/jude.txt deleted file mode 100644 index d5aa3b70..00000000 --- a/quad/quad/old-master/texts/jude.txt +++ /dev/null @@ -1,235 +0,0 @@ -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. \ No newline at end of file diff --git a/quad/quad/old-master/texts/jude0.txt b/quad/quad/old-master/texts/jude0.txt deleted file mode 100644 index 856a492d..00000000 --- a/quad/quad/old-master/texts/jude0.txt +++ /dev/null @@ -1,429 +0,0 @@ -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. diff --git a/quad/quad/old-master/texts/jude2.txt b/quad/quad/old-master/texts/jude2.txt deleted file mode 100644 index 79e77619..00000000 --- a/quad/quad/old-master/texts/jude2.txt +++ /dev/null @@ -1,4 +0,0 @@ -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” \ No newline at end of file diff --git a/quad/quad/old-master/texts/judebig.txt b/quad/quad/old-master/texts/judebig.txt deleted file mode 100644 index 12b82503..00000000 --- a/quad/quad/old-master/texts/judebig.txt +++ /dev/null @@ -1,12197 +0,0 @@ -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - diff --git a/quad/quad/old-master/texts/segfault.txt b/quad/quad/old-master/texts/segfault.txt deleted file mode 100644 index b29000ac..00000000 --- a/quad/quad/old-master/texts/segfault.txt +++ /dev/null @@ -1,30959 +0,0 @@ -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. - -The schoolmaster was leaving the village, and everybody seemed sorry. -The miller at Cresscombe lent him the small white tilted cart and -horse to carry his goods to the city of his destination, about twenty -miles off, such a vehicle proving of quite sufficient size for the -departing teacher’s effects. For the schoolhouse had been partly -furnished by the managers, and the only cumbersome article possessed -by the master, in addition to the packing-case of books, was a -cottage piano that he had bought at an auction during the year in -which he thought of learning instrumental music. But the enthusiasm -having waned he had never acquired any skill in playing, and the -purchased article had been a perpetual trouble to him ever since in -moving house. - -The rector had gone away for the day, being a man who disliked the -sight of changes. He did not mean to return till the evening, when -the new school-teacher would have arrived and settled in, and -everything would be smooth again. - -The blacksmith, the farm bailiff, and the schoolmaster himself were -standing in perplexed attitudes in the parlour before the instrument. -The master had remarked that even if he got it into the cart he -should not know what to do with it on his arrival at Christminster, -the city he was bound for, since he was only going into temporary -lodgings just at first. - -A little boy of eleven, who had been thoughtfully assisting in the -packing, joined the group of men, and as they rubbed their chins he -spoke up, blushing at the sound of his own voice: “Aunt have got a -great fuel-house, and it could be put there, perhaps, till you’ve -found a place to settle in, sir.” - -“A proper good notion,” said the blacksmith. - -It was decided that a deputation should wait on the boy’s aunt—an -old maiden resident—and ask her if she would house the piano till -Mr. Phillotson should send for it. The smith and the bailiff started -to see about the practicability of the suggested shelter, and the boy -and the schoolmaster were left standing alone. - -“Sorry I am going, Jude?” asked the latter kindly. - -Tears rose into the boy’s eyes, for he was not among the regular day -scholars, who came unromantically close to the schoolmaster’s life, -but one who had attended the night school only during the present -teacher’s term of office. The regular scholars, if the truth must -be told, stood at the present moment afar off, like certain historic -disciples, indisposed to any enthusiastic volunteering of aid. - -The boy awkwardly opened the book he held in his hand, which Mr. -Phillotson had bestowed on him as a parting gift, and admitted that -he was sorry. - -“So am I,” said Mr. Phillotson. - -“Why do you go, sir?” asked the boy. - -“Ah—that would be a long story. You wouldn’t understand my reasons, -Jude. You will, perhaps, when you are older.” - -“I think I should now, sir.” - -“Well—don’t speak of this everywhere. You know what a university -is, and a university degree? It is the necessary hallmark of a man -who wants to do anything in teaching. My scheme, or dream, is to be -a university graduate, and then to be ordained. By going to live at -Christminster, or near it, I shall be at headquarters, so to speak, -and if my scheme is practicable at all, I consider that being on the -spot will afford me a better chance of carrying it out than I should -have elsewhere.” - -The smith and his companion returned. Old Miss Fawley’s fuel-house -was dry, and eminently practicable; and she seemed willing to give -the instrument standing-room there. It was accordingly left in -the school till the evening, when more hands would be available for -removing it; and the schoolmaster gave a final glance round. - -The boy Jude assisted in loading some small articles, and at nine -o’clock Mr. Phillotson mounted beside his box of books and other -impedimenta, and bade his friends good-bye. - -“I shan’t forget you, Jude,” he said, smiling, as the cart moved off. -“Be a good boy, remember; and be kind to animals and birds, and read -all you can. And if ever you come to Christminster remember you hunt -me out for old acquaintance’ sake.” - -The cart creaked across the green, and disappeared round the corner -by the rectory-house. The boy returned to the draw-well at the edge -of the greensward, where he had left his buckets when he went to help -his patron and teacher in the loading. There was a quiver in his lip -now and after opening the well-cover to begin lowering the bucket he -paused and leant with his forehead and arms against the framework, -his face wearing the fixity of a thoughtful child’s who has felt the -pricks of life somewhat before his time. The well into which he was -looking was as ancient as the village itself, and from his present -position appeared as a long circular perspective ending in a shining -disk of quivering water at a distance of a hundred feet down. -There was a lining of green moss near the top, and nearer still the -hart’s-tongue fern. - -He said to himself, in the melodramatic tones of a whimsical boy, -that the schoolmaster had drawn at that well scores of times on a -morning like this, and would never draw there any more. “I’ve seen -him look down into it, when he was tired with his drawing, just as I -do now, and when he rested a bit before carrying the buckets home! -But he was too clever to bide here any longer—a small sleepy place -like this!” - -A tear rolled from his eye into the depths of the well. The morning -was a little foggy, and the boy’s breathing unfurled itself as -a thicker fog upon the still and heavy air. His thoughts were -interrupted by a sudden outcry: - -“Bring on that water, will ye, you idle young harlican!” - -It came from an old woman who had emerged from her door towards the -garden gate of a green-thatched cottage not far off. The boy quickly -waved a signal of assent, drew the water with what was a great effort -for one of his stature, landed and emptied the big bucket into his -own pair of smaller ones, and pausing a moment for breath, started -with them across the patch of clammy greensward whereon the well -stood—nearly in the centre of the little village, or rather hamlet -of Marygreen. - -It was as old-fashioned as it was small, and it rested in the lap of -an undulating upland adjoining the North Wessex downs. Old as it -was, however, the well-shaft was probably the only relic of the local -history that remained absolutely unchanged. Many of the thatched -and dormered dwelling-houses had been pulled down of late years, and -many trees felled on the green. Above all, the original church, -hump-backed, wood-turreted, and quaintly hipped, had been taken -down, and either cracked up into heaps of road-metal in the lane, or -utilized as pig-sty walls, garden seats, guard-stones to fences, and -rockeries in the flower-beds of the neighbourhood. In place of it -a tall new building of modern Gothic design, unfamiliar to English -eyes, had been erected on a new piece of ground by a certain -obliterator of historic records who had run down from London and back -in a day. The site whereon so long had stood the ancient temple to -the Christian divinities was not even recorded on the green and level -grass-plot that had immemorially been the churchyard, the obliterated -graves being commemorated by eighteen-penny cast-iron crosses -warranted to last five years. - - - -II - - -Slender as was Jude Fawley’s frame he bore the two brimming -house-buckets of water to the cottage without resting. Over the door -was a little rectangular piece of blue board, on which was painted -in yellow letters, “Drusilla Fawley, Baker.” Within the little lead -panes of the window—this being one of the few old houses left—were -five bottles of sweets, and three buns on a plate of the willow -pattern. - -While emptying the buckets at the back of the house he could hear an -animated conversation in progress within-doors between his great-aunt, -the Drusilla of the sign-board, and some other villagers. Having -seen the school-master depart, they were summing up particulars of -the event, and indulging in predictions of his future. - -“And who’s he?” asked one, comparatively a stranger, when the boy -entered. - -“Well ye med ask it, Mrs. Williams. He’s my great-nephew—come since -you was last this way.” The old inhabitant who answered was a tall, -gaunt woman, who spoke tragically on the most trivial subject, and -gave a phrase of her conversation to each auditor in turn. “He come -from Mellstock, down in South Wessex, about a year ago—worse luck -for ‘n, Belinda” (turning to the right) “where his father was living, -and was took wi’ the shakings for death, and died in two days, as you -know, Caroline” (turning to the left). “It would ha’ been a blessing -if Goddy-mighty had took thee too, wi’ thy mother and father, poor -useless boy! But I’ve got him here to stay with me till I can see -what’s to be done with un, though I am obliged to let him earn any -penny he can. Just now he’s a-scaring of birds for Farmer Troutham. -It keeps him out of mischty. Why do ye turn away, Jude?” she -continued, as the boy, feeling the impact of their glances like slaps -upon his face, moved aside. - -The local washerwoman replied that it was perhaps a very good plan of -Miss or Mrs. Fawley’s (as they called her indifferently) to have him -with her—”to kip ‘ee company in your loneliness, fetch water, shet -the winder-shetters o’ nights, and help in the bit o’ baking.” - -Miss Fawley doubted it.... “Why didn’t ye get the schoolmaster to -take ‘ee to Christminster wi’ un, and make a scholar of ‘ee,” she -continued, in frowning pleasantry. “I’m sure he couldn’t ha’ took a -better one. The boy is crazy for books, that he is. It runs in our -family rather. His cousin Sue is just the same—so I’ve heard; but -I have not seen the child for years, though she was born in this -place, within these four walls, as it happened. My niece and her -husband, after they were married, didn’ get a house of their own for -some year or more; and then they only had one till—Well, I won’t go -into that. Jude, my child, don’t you ever marry. ‘Tisn’t for the -Fawleys to take that step any more. She, their only one, was like -a child o’ my own, Belinda, till the split come! Ah, that a little -maid should know such changes!” - -Jude, finding the general attention again centering on himself, went -out to the bakehouse, where he ate the cake provided for his -breakfast. The end of his spare time had now arrived, and emerging -from the garden by getting over the hedge at the back he pursued a -path northward, till he came to a wide and lonely depression in the -general level of the upland, which was sown as a corn-field. This -vast concave was the scene of his labours for Mr Troutham the farmer, -and he descended into the midst of it. - -The brown surface of the field went right up towards the sky all -round, where it was lost by degrees in the mist that shut out the -actual verge and accentuated the solitude. The only marks on the -uniformity of the scene were a rick of last year’s produce standing -in the midst of the arable, the rooks that rose at his approach, and -the path athwart the fallow by which he had come, trodden now by he -hardly knew whom, though once by many of his own dead family. - -“How ugly it is here!” he murmured. - -The fresh harrow-lines seemed to stretch like the channellings in -a piece of new corduroy, lending a meanly utilitarian air to the -expanse, taking away its gradations, and depriving it of all history -beyond that of the few recent months, though to every clod and stone -there really attached associations enough and to spare—echoes of -songs from ancient harvest-days, of spoken words, and of sturdy -deeds. Every inch of ground had been the site, first or last, -of energy, gaiety, horse-play, bickerings, weariness. Groups of -gleaners had squatted in the sun on every square yard. Love-matches -that had populated the adjoining hamlet had been made up there -between reaping and carrying. Under the hedge which divided the -field from a distant plantation girls had given themselves to lovers -who would not turn their heads to look at them by the next harvest; -and in that ancient cornfield many a man had made love-promises to -a woman at whose voice he had trembled by the next seed-time after -fulfilling them in the church adjoining. But this neither Jude nor -the rooks around him considered. For them it was a lonely place, -possessing, in the one view, only the quality of a work-ground, and -in the other that of a granary good to feed in. - -The boy stood under the rick before mentioned, and every few seconds -used his clacker or rattle briskly. At each clack the rooks left off -pecking, and rose and went away on their leisurely wings, burnished -like tassets of mail, afterwards wheeling back and regarding him -warily, and descending to feed at a more respectful distance. - -He sounded the clacker till his arm ached, and at length his heart -grew sympathetic with the birds’ thwarted desires. They seemed, like -himself, to be living in a world which did not want them. Why should -he frighten them away? They took upon more and more the aspect of -gentle friends and pensioners—the only friends he could claim as -being in the least degree interested in him, for his aunt had often -told him that she was not. He ceased his rattling, and they alighted -anew. - -“Poor little dears!” said Jude, aloud. “You SHALL have some dinner— -you shall. There is enough for us all. Farmer Troutham can afford -to let you have some. Eat, then my dear little birdies, and make a -good meal!” - -They stayed and ate, inky spots on the nut-brown soil, and Jude -enjoyed their appetite. A magic thread of fellow-feeling united his -own life with theirs. Puny and sorry as those lives were, they much -resembled his own. - -His clacker he had by this time thrown away from him, as being a mean -and sordid instrument, offensive both to the birds and to himself -as their friend. All at once he became conscious of a smart blow -upon his buttocks, followed by a loud clack, which announced to his -surprised senses that the clacker had been the instrument of offence -used. The birds and Jude started up simultaneously, and the dazed -eyes of the latter beheld the farmer in person, the great Troutham -himself, his red face glaring down upon Jude’s cowering frame, the -clacker swinging in his hand. - -“So it’s ‘Eat my dear birdies,’ is it, young man? ‘Eat, dear -birdies,’ indeed! I’ll tickle your breeches, and see if you say, -‘Eat, dear birdies,’ again in a hurry! And you’ve been idling at the -schoolmaster’s too, instead of coming here, ha’n’t ye, hey? That’s -how you earn your sixpence a day for keeping the rooks off my corn!” - -Whilst saluting Jude’s ears with this impassioned rhetoric, Troutham -had seized his left hand with his own left, and swinging his slim -frame round him at arm’s-length, again struck Jude on the hind parts -with the flat side of Jude’s own rattle, till the field echoed with -the blows, which were delivered once or twice at each revolution. - -“Don’t ‘ee, sir—please don’t ‘ee!” cried the whirling child, as -helpless under the centrifugal tendency of his person as a hooked -fish swinging to land, and beholding the hill, the rick, the -plantation, the path, and the rooks going round and round him in an -amazing circular race. “I—I sir—only meant that—there was a good -crop in the ground—I saw ‘em sow it—and the rooks could have a -little bit for dinner—and you wouldn’t miss it, sir—and Mr. -Phillotson said I was to be kind to ‘em—oh, oh, oh!” - -This truthful explanation seemed to exasperate the farmer even more -than if Jude had stoutly denied saying anything at all, and he still -smacked the whirling urchin, the clacks of the instrument continuing -to resound all across the field and as far as the ears of distant -workers—who gathered thereupon that Jude was pursuing his business -of clacking with great assiduity—and echoing from the brand-new -church tower just behind the mist, towards the building of which -structure the farmer had largely subscribed, to testify his love for -God and man. - -Presently Troutham grew tired of his punitive task, and depositing -the quivering boy on his legs, took a sixpence from his pocket and -gave it him in payment for his day’s work, telling him to go home and -never let him see him in one of those fields again. - -Jude leaped out of arm’s reach, and walked along the trackway -weeping—not from the pain, though that was keen enough; not from the -perception of the flaw in the terrestrial scheme, by which what was -good for God’s birds was bad for God’s gardener; but with the awful -sense that he had wholly disgraced himself before he had been a year -in the parish, and hence might be a burden to his great-aunt for -life. - -With this shadow on his mind he did not care to show himself in the -village, and went homeward by a roundabout track behind a high hedge -and across a pasture. Here he beheld scores of coupled earthworms -lying half their length on the surface of the damp ground, as -they always did in such weather at that time of the year. It was -impossible to advance in regular steps without crushing some of them -at each tread. - -Though Farmer Troutham had just hurt him, he was a boy who could not -himself bear to hurt anything. He had never brought home a nest of -young birds without lying awake in misery half the night after, and -often reinstating them and the nest in their original place the next -morning. He could scarcely bear to see trees cut down or lopped, -from a fancy that it hurt them; and late pruning, when the sap was up -and the tree bled profusely, had been a positive grief to him in his -infancy. This weakness of character, as it may be called, suggested -that he was the sort of man who was born to ache a good deal before -the fall of the curtain upon his unnecessary life should signify that -all was well with him again. He carefully picked his way on tiptoe -among the earthworms, without killing a single one. - -On entering the cottage he found his aunt selling a penny loaf to a -little girl, and when the customer was gone she said, “Well, how do -you come to be back here in the middle of the morning like this?” - -“I’m turned away.” - -“What?” - -“Mr. Troutham have turned me away because I let the rooks have a few -peckings of corn. And there’s my wages—the last I shall ever hae!” - -He threw the sixpence tragically on the table. - -“Ah!” said his aunt, suspending her breath. And she opened upon him -a lecture on how she would now have him all the spring upon her hands -doing nothing. “If you can’t skeer birds, what can ye do? There! -don’t ye look so deedy! Farmer Troutham is not so much better than -myself, come to that. But ‘tis as Job said, ‘Now they that are -younger than I have me in derision, whose fathers I would have -disdained to have set with the dogs of my flock.’ His father was my -father’s journeyman, anyhow, and I must have been a fool to let ‘ee -go to work for ‘n, which I shouldn’t ha’ done but to keep ‘ee out of -mischty.” - -More angry with Jude for demeaning her by coming there than for -dereliction of duty, she rated him primarily from that point of view, -and only secondarily from a moral one. - -“Not that you should have let the birds eat what Farmer Troutham -planted. Of course you was wrong in that. Jude, Jude, why didstn’t -go off with that schoolmaster of thine to Christminster or somewhere? -But, oh no—poor or’nary child—there never was any sprawl on thy -side of the family, and never will be!” - -“Where is this beautiful city, Aunt—this place where Mr. Phillotson -is gone to?” asked the boy, after meditating in silence. - -“Lord! you ought to know where the city of Christminster is. Near a -score of miles from here. It is a place much too good for you ever -to have much to do with, poor boy, I’m a-thinking.” - -“And will Mr. Phillotson always be there?” - -“How can I tell?” - -“Could I go to see him?” - -“Lord, no! You didn’t grow up hereabout, or you wouldn’t ask such as -that. We’ve never had anything to do with folk in Christminster, nor -folk in Christminster with we.” - -Jude went out, and, feeling more than ever his existence to be an -undemanded one, he lay down upon his back on a heap of litter near -the pig-sty. The fog had by this time become more translucent, and -the position of the sun could be seen through it. He pulled his -straw hat over his face, and peered through the interstices of the -plaiting at the white brightness, vaguely reflecting. Growing up -brought responsibilities, he found. Events did not rhyme quite as -he had thought. Nature’s logic was too horrid for him to care for. -That mercy towards one set of creatures was cruelty towards another -sickened his sense of harmony. As you got older, and felt yourself -to be at the centre of your time, and not at a point in its -circumference, as you had felt when you were little, you were seized -with a sort of shuddering, he perceived. All around you there seemed -to be something glaring, garish, rattling, and the noises and glares -hit upon the little cell called your life, and shook it, and warped -it. - -If he could only prevent himself growing up! He did not want to be a -man. - -Then, like the natural boy, he forgot his despondency, and sprang up. -During the remainder of the morning he helped his aunt, and in the -afternoon, when there was nothing more to be done, he went into the -village. Here he asked a man whereabouts Christminster lay. - -“Christminster? Oh, well, out by there yonder; though I’ve never bin -there—not I. I’ve never had any business at such a place.” - -The man pointed north-eastward, in the very direction where lay that -field in which Jude had so disgraced himself. There was something -unpleasant about the coincidence for the moment, but the fearsomeness -of this fact rather increased his curiosity about the city. The -farmer had said he was never to be seen in that field again; yet -Christminster lay across it, and the path was a public one. So, -stealing out of the hamlet, he descended into the same hollow which -had witnessed his punishment in the morning, never swerving an inch -from the path, and climbing up the long and tedious ascent on the -other side till the track joined the highway by a little clump of -trees. Here the ploughed land ended, and all before him was bleak -open down. diff --git a/quad/quad/old-master/todo.rkt b/quad/quad/old-master/todo.rkt deleted file mode 100644 index e7ab285a..00000000 --- a/quad/quad/old-master/todo.rkt +++ /dev/null @@ -1,12 +0,0 @@ -#lang racket/base - -;; todo next -;; pagination: vertical measuring -;; adaptive linebreak using fu-formula -;; unified model of filling / positioning that works for every quad, recursively -;; how to handle constraint failure. At least a good error message. -;; imperative line break -;; why do certain MB fonts only appear in bold? -;; deal with separating / recombining footnote flow -;; deal with page number flags (for toc, index, etc) -;; disk cache of previously wrapped lines \ No newline at end of file diff --git a/quad/quad/old-master/typeset.rkt b/quad/quad/old-master/typeset.rkt deleted file mode 100644 index e57d410b..00000000 --- a/quad/quad/old-master/typeset.rkt +++ /dev/null @@ -1,213 +0,0 @@ -#lang racket/base -(require racket/list sugar racket/contract racket/function math/flonum) -(require "quads.rkt" "utils.rkt" "wrap.rkt" "measure.rkt" "world.rkt" "logger.rkt") -(provide typeset) -(require sugar/debug) -(define (input->nested-blocks i) - (define-syntax-rule (cons-reverse x y) (cons (reverse x) y)) - (define-values (mps mcs bs b) - (for/fold ([multipages empty][multicolumns empty][blocks empty][block-acc empty]) - ([q (in-list (split-quad i))]) - (cond - [(page-break? q) (values (cons-reverse (cons-reverse (cons-reverse block-acc blocks) multicolumns) multipages) empty empty empty)] - [(column-break? q) (values multipages (cons-reverse (cons-reverse block-acc blocks) multicolumns) empty empty)] - [(block-break? q) (values multipages multicolumns (cons-reverse block-acc blocks) empty)] - [else (values multipages multicolumns blocks (cons q block-acc))]))) - (reverse (cons-reverse (cons-reverse (cons-reverse b bs) mcs) mps))) - -(define (merge-adjacent-within q) - (quad (quad-name q) (quad-attrs q) (join-quads (quad-list q)))) - -(define (hyphenate-quad-except-last-word q) - (log-quad-debug "last word will not be hyphenated") - (define-values (first-quads last-quad) (split-last (quad-list q))) - (quad (quad-name q) (quad-attrs q) (snoc (map hyphenate-quad first-quads) last-quad))) - -(define+provide (average-looseness lines) - (if (<= (length lines) 1) - 0.0 - (let ([lines-to-measure (drop-right lines 1)]) ; exclude last line from looseness calculation - (round-float (fl/ (fold-fl+ (map (λ(line) (quad-attr-ref line world:line-looseness-key 0.0)) lines-to-measure)) (fl- (fl (length lines)) 1.0)))))) - - -(define (log-debug-lines lines) - (log-quad-debug "line report:") - (for/list ([(line idx) (in-indexed lines)]) - (format "~a/~a: ~v ~a" idx - (length lines) - (quad->string line) - (quad-attr-ref line world:line-looseness-key)))) - - -(require racket/trace) -(define (block->lines b) - (define quality (quad-attr-ref/parameter b world:quality-key)) - (define (wrap-quads qs) - (define wrap-proc (cond - [(>= quality world:max-quality) wrap-best] - [(<= quality world:draft-quality) wrap-first] - [else wrap-adaptive])) - (wrap-proc qs)) - (log-quad-debug "wrapping lines") - (log-quad-debug "quality = ~a" quality) - (log-quad-debug "looseness tolerance = ~a" world:line-looseness-tolerance) - (define wrapped-lines-without-hyphens (wrap-quads (quad-list b))) ; 100/150 - (log-quad-debug* (log-debug-lines wrapped-lines-without-hyphens)) - (define avg-looseness (average-looseness wrapped-lines-without-hyphens)) - (define gets-hyphenation? (and world:use-hyphenation? - (fl> avg-looseness world:line-looseness-tolerance))) - (log-quad-debug "average looseness = ~a" avg-looseness) - (log-quad-debug (if gets-hyphenation? "hyphenating" "no hyphenation needed")) - - (define wrapped-lines (if gets-hyphenation? - (wrap-quads (split-quad ((if world:allow-hyphenated-last-word-in-paragraph - hyphenate-quad - hyphenate-quad-except-last-word) (merge-adjacent-within b)))) - wrapped-lines-without-hyphens)) - - (when gets-hyphenation? (log-quad-debug* (log-debug-lines wrapped-lines))) - - - (log-quad-debug "final looseness = ~a" (average-looseness wrapped-lines)) - (map insert-spacers-in-line - (for/list ([line-idx (in-naturals)][line (in-list wrapped-lines)]) - (quad-attr-set* line 'line-idx line-idx 'lines (length wrapped-lines))))) - - -(define+provide (number-pages ps) - (pages? . -> . pages?) - (for/list ([i (in-naturals)][p (in-list ps)]) - (quad (quad-name p) (merge-attrs (quad-attrs p) `(page ,i)) (quad-list p)))) - -(define+provide (pages->doc ps) - (pages? . -> . doc?) - ;; todo: resolve xrefs and other last-minute tasks - ;; todo: generalize computation of widths and heights, recursively - (define (columns-mapper page) - (quad-map (compose1 add-vert-positions (curry quad-map (compose1 compute-line-height add-horiz-positions fill))) page)) - (define mapped-pages (map columns-mapper (number-pages ps))) - (define doc (quads->doc mapped-pages)) - doc) - -(require racket/class csp) -(define+provide (lines->columns lines) - (lines? . -> . columns?) - (define prob (new problem%)) - (define max-column-lines world:default-lines-per-column) - (define-values (columns ignored-return-value) - (for/fold ([columns null][lines-remaining lines])([col-idx (in-naturals)] #:break (empty? lines-remaining)) - (log-quad-info "making column ~a" (add1 col-idx)) - ;; domain constraint is best way to simplify csp, because it limits the search space. - ;; search from largest possible value to smallest. - ;; largest possible is the minimum of the max column lines, or - ;; the number of lines left (modulo minimum page lines) ... - (define viable-column-range - (range (min max-column-lines (max - (length lines-remaining) - (- (length lines-remaining) world:minimum-lines-per-column))) - ;; ... and the smallest possible is 1, or the current minimum lines. - ;; (sub1 insures that range is inclusive of last value.) - (sub1 (min 1 world:minimum-lines-per-column)) -1)) - - (log-quad-debug "viable number of lines for this column to start =\n~a" viable-column-range) - (send prob add-variable "column-lines" viable-column-range) - - - ;; greediness constraint: leave enough lines for next page, or take all - (define (greediness-constraint pl) - (define leftover (- (length lines-remaining) pl)) - (or (= leftover 0) (>= leftover world:minimum-lines-per-column))) - (send prob add-constraint greediness-constraint '("column-lines")) - - (log-quad-debug "viable number of lines after greediness constraint =\n~a" (map (curryr hash-ref "column-lines") (send prob get-solutions))) - - ;; last lines constraint: don't take page that will end with too few lines of last paragraph. - (define (last-lines-constraint pl) - (define last-line-of-page (list-ref lines-remaining (sub1 pl))) - (define lines-in-this-paragraph (quad-attr-ref last-line-of-page world:total-lines-key)) - (define line-index-of-last-line (quad-attr-ref last-line-of-page world:line-index-key)) - (define (paragraph-too-short-to-meet-constraint?) - (< lines-in-this-paragraph world:min-last-lines)) - (or (paragraph-too-short-to-meet-constraint?) - (>= (add1 line-index-of-last-line) world:min-last-lines))) - (send prob add-constraint last-lines-constraint '("column-lines")) - - (log-quad-debug "viable number of lines after last-lines constraint =\n~a" (map (curryr hash-ref "column-lines") (send prob get-solutions))) - - ;; first lines constraint: don't take page that will leave too few lines at top of next page - (define (first-lines-constraint pl lines-remaining) - (define last-line-of-page (list-ref lines-remaining (sub1 pl))) - (define lines-in-this-paragraph (quad-attr-ref last-line-of-page world:total-lines-key)) - (define line-index-of-last-line (quad-attr-ref last-line-of-page world:line-index-key)) - (define lines-that-will-remain (- lines-in-this-paragraph (add1 line-index-of-last-line))) - (define (paragraph-too-short-to-meet-constraint?) - (< lines-in-this-paragraph world:min-first-lines)) - (or (paragraph-too-short-to-meet-constraint?) - (= 0 lines-that-will-remain) ; ok to use all lines ... - (>= lines-that-will-remain world:min-first-lines))) ; but if any remain, must be minimum number. - (send prob add-constraint (curryr first-lines-constraint lines-remaining) '("column-lines")) - - (log-quad-debug "viable number of lines after first-lines constraint =\n~a" (map (curryr hash-ref "column-lines") (send prob get-solutions))) - - - (define s (send prob get-solution)) - (define how-many-lines-to-take (hash-ref s "column-lines")) - (define-values (lines-to-take lines-to-leave) (split-at lines-remaining how-many-lines-to-take)) - (log-quad-debug "taking ~a lines for column ~a:" how-many-lines-to-take (add1 col-idx)) - (map (λ(idx line) (log-quad-debug "~a:~a ~v" (add1 col-idx) (add1 idx) (quad->string line))) (range how-many-lines-to-take) lines-to-take) - (send prob reset) - (values (cons (quad-attr-set (quads->column lines-to-take) world:column-index-key col-idx) columns) lines-to-leave))) - (reverse columns)) - -(define (columns->pages cols) - (columns? . -> . pages?) - (define columns-per-page (quad-attr-ref/parameter (car cols) world:column-count-key)) - (define column-gutter (quad-attr-ref/parameter (car cols) world:column-gutter-key)) - ;; don't use default value here. If the col doesn't have a measure key, - ;; it deserves to be an error, because that means the line was composed incorrectly. - (when (not (quad-has-attr? (car cols) world:measure-key)) - (error 'columns->pages "column attrs contain no measure key: ~a ~a" (quad-attrs (car cols)) (quad-car (car cols)))) - (define column-width (quad-attr-ref (car cols) world:measure-key)) - (define width-of-printed-area (+ (* columns-per-page column-width) (* (sub1 columns-per-page) column-gutter))) - (define result-pages - (map (λ(cols) (quads->page cols)) - (for/list ([page-cols (in-list (slice-at cols columns-per-page))]) - (define-values (last-x cols) - (for/fold ([current-x (/ (- (world:paper-width-default) width-of-printed-area) 2)][cols empty]) ([col (in-list page-cols)][idx (in-naturals)]) - (values (+ current-x column-width column-gutter) (cons (quad-attr-set* col 'x current-x 'y world:top-page-margin world:column-index-key idx) cols)))) - (reverse cols)))) - result-pages) - -(define current-eof (make-parameter (gensym))) -(define (eof? x) (equal? x (current-eof))) - - - -(define (block-quads->lines qs) - (block->lines (quads->block qs))) - -(define (typeset x) - (coerce/input? . -> . doc?) - (load-text-cache-file) - (define pages (append* (for/list ([multipage (in-list (input->nested-blocks x))]) - (columns->pages (append* (for/list ([multicolumn (in-list multipage)]) - (lines->columns (append* (for/list ([block-quads (in-list multicolumn)]) - (block-quads->lines block-quads)))))))))) - (define doc (pages->doc pages)) - (update-text-cache-file) - doc) - - -(module+ main - (require "render.rkt" racket/class profile sugar/debug) - (require "samples.rkt") - (activate-logger quad-logger) - (parameterize ([world:quality-default world:draft-quality] - [world:paper-width-default 600] - [world:paper-height-default 700]) - #;(define sample (block '(measure 54.0 leading 18.0) "\n" "\n" "Meg is an ally.")) - (let ([toa (begin (time (typeset (dynamic-require "foo2.rkt" 'out))))] - [tob (typeset (block '(measure 54.0 leading 18.0) "Meg \nis an ally."))]) - (report* toa tob (equal? toa tob)) - (time (send (new pdf-renderer%) render-to-file toa "foo-a.pdf")) - (time (send (new pdf-renderer%) render-to-file tob "foo-b.pdf"))))) diff --git a/quad/quad/old-master/utils.rkt b/quad/quad/old-master/utils.rkt deleted file mode 100644 index b29d63b4..00000000 --- a/quad/quad/old-master/utils.rkt +++ /dev/null @@ -1,268 +0,0 @@ -#lang racket/base -(require sugar/list sugar/define) -(require (for-syntax racket/syntax racket/base) racket/string racket/contract racket/list sugar/debug racket/bool hyphenate racket/function math/flonum) -(require "quads.rkt" "world.rkt" "measure.rkt") - - -;; predicate for use below -(define (list-of-mergeable-attrs? xs) - (and (list? xs) (andmap (λ(x) (or (quad? x) (quad-attrs? x) (hashable-list? x))) xs))) - -;; faster than (listof pair?) -(define (pairs? x) (and (list? x) (andmap pair? x))) - -;; push together multiple attr sources into one list of pairs. -;; mostly a helper function for the two attr functions below. -(define+provide (join-attrs quads-or-attrs-or-lists) - (list-of-mergeable-attrs? . -> . pairs?) - (append-map hash->list (filter-not false? (map (λ(x) - (cond - [(quad? x) (quad-attrs x)] - [(quad-attrs? x) x] - [(hashable-list? x) (apply hash x)] - [else #f])) quads-or-attrs-or-lists)))) - - -;; merge concatenates attributes, with later ones overriding earlier. -;; most of the work is done by join-attrs. -(define+provide (merge-attrs . quads-or-attrs-or-lists) - (() #:rest list-of-mergeable-attrs? . ->* . quad-attrs?) - (define all-attrs (join-attrs quads-or-attrs-or-lists)) - (apply hash (flatten all-attrs))) - -;; functionally update a quad attr. Similar to hash-set -(define+provide (quad-attr-set q k v) - (quad? symbol? any/c . -> . quad?) - (quad (quad-name q) (merge-attrs (quad-attrs q) (list k v)) (quad-list q))) - - -;; functionally update multiple quad attrs. Similar to hash-set* -(define+provide (quad-attr-set* q . kvs) - ((quad?) #:rest hashable-list? . ->* . quad?) - (for/fold ([current-q q])([kv-list (in-list (slice-at kvs 2))]) - (apply quad-attr-set current-q kv-list))) - -;; functionally remove a quad attr. Similar to hash-remove -(define+provide (quad-attr-remove q k) - (quad? symbol? . -> . quad?) - (if (quad-attrs q) - (quad (quad-name q) (hash-remove (quad-attrs q) k) (quad-list q)) - q)) - -;; functionally remove multiple quad attrs. Similar to hash-remove -(define+provide (quad-attr-remove* q . ks) - ((quad?) #:rest (λ(ks) (and (list? ks) (andmap symbol? ks))) . ->* . quad?) - (for/fold ([current-q q])([k (in-list ks)]) - (quad-attr-remove current-q k))) - -(define+provide (quad-map proc q) - (procedure? quad? . -> . quad?) - (quad (quad-name q) (quad-attrs q) (map proc (quad-list q)))) - - -;; flatten merges attributes, but applies special logic suitable to flattening -;; for instance, resolving x and y coordinates. -(define+provide (flatten-attrs . quads-or-attrs-or-falses) - (() #:rest (listof (or/c quad? quad-attrs?)) . ->* . quad-attrs?) - (define all-attrs (join-attrs quads-or-attrs-or-falses)) - (define-values (x-attrs y-attrs other-attrs-reversed) - (for/fold ([xas null][yas null][oas null])([attr (in-list all-attrs)]) - (cond - [(equal? (car attr) world:x-position-key) (values (cons attr xas) yas oas)] - [(equal? (car attr) world:y-position-key) (values xas (cons attr yas) oas)] - [else (values xas yas (cons attr oas))]))) - (define (make-cartesian-attr key attrs) (if (empty? attrs) empty (cons key (apply + (map cdr attrs))))) - (define-values (x-attr y-attr) (apply values (map make-cartesian-attr (list world:x-position-key world:y-position-key) (list x-attrs y-attrs)))) - (apply hash (flatten (list* x-attr y-attr (reverse other-attrs-reversed))))) - -;; pushes attributes down from parent quads to children, -;; resulting in a flat list of quads. -(provide flatten-quad) -(define (flatten-quad q) - ; (quad? . -> . quads?) - (flatten - (let loop ([x q][parent #f]) - (cond - [(quad? x) - (let ([x-with-parent-attrs (quad (quad-name x) - (flatten-attrs parent x) ; child positioned last so it overrides parent attributes - (quad-list x))]) - (if (empty? (quad-list x)) - x-with-parent-attrs ; no subelements, so stop here - (map (λ(xi) (loop xi x-with-parent-attrs)) (quad-list x))))] ; replace quad with its elements - [(string? x) (quad (quad-name parent) (quad-attrs parent) (list x))])))) - -(require sugar/debug) -;; flatten quad as above, -;; then dissolve it into individual character quads while copying attributes - -(define+provide (split-quad q) - ;(quad? . -> . quads?) - (letrec ([do-explode (λ(x [parent #f]) - (cond - [(quad? x) - (if (empty? (quad-list x)) - x ; no subelements, so stop here - (map (λ(xi) (do-explode xi x)) (quad-list x)))] ; replace quad with its elements, exploded - ;; todo: figure out why newlines foul up the input stream. Does it suffice to ignore them? - [else (map (λ(xc) (quad 'word (quad-attrs parent) (list xc))) (regexp-match* #px"[^\r\n]" x))]))]) - (flatten (map do-explode (flatten-quad q))))) - - - -;; merge chars into words (and boxes), leave the rest -;; if two quads are mergeable types, and have the same attributes, -;; they get merged. -;; input is often large, so macro allows us to avoid allocation -(provide join-quads) -(define-syntax-rule (join-quads qs-in) - ;((quads?)(quads?) . ->* . quads?) - - (let ([make-matcher (λ (base-q) - (λ(q) - (and (member (quad-name q) world:mergeable-quad-types) - (not (whitespace/nbsp? q)) - ;; if key doesn't exist, it is compared against the default value. - ;; this way, a nonexistent value will test true against a default value. - (andmap (λ(key default) (equal? (quad-attr-ref base-q key default) (quad-attr-ref q key default))) - (list world:font-name-key - world:font-size-key - world:font-weight-key - world:font-style-key) - (list (world:font-name-default) - (world:font-size-default) - (world:font-weight-default) - (world:font-style-default))))))]) - (let loop ([qs qs-in][acc null]) - (if (null? qs) - (reverse acc) - (let* ([base-q (first qs)] - [mergeable-and-matches-base? (make-matcher base-q)]) ; make a new predicate function for this quad - (cond - [(mergeable-and-matches-base? base-q) - ;; take as many quads that match, using the predicate function - (define-values (matching-qs other-qs) (splitf-at (cdr qs) mergeable-and-matches-base?)) - (define new-word (word (quad-attrs base-q) (string-append* (append-map quad-list (cons base-q matching-qs))))) - (loop other-qs (cons new-word acc))] - ;; otherwise move on to the next in line - [else (loop (cdr qs) (cons base-q acc))])))))) - - - -;; the last char of a quad -(define+provide (quad-last-char q) - (quad? . -> . (or/c #f string?)) - (define split-qs (split-quad q)) ; split makes it simple, but is it too expensive? - (if (or (empty? split-qs) (empty? (quad-list (last split-qs)))) - #f - (car (quad-list (last split-qs))))) - -;; the first char of a quad -(define+provide (quad-first-char q) - (quad? . -> . (or/c #f string?)) - (define split-qs (split-quad q)) ; explosion makes it simple, but is it too expensive? - (if (or (empty? split-qs) (empty? (quad-list (first split-qs)))) - #f - (car (quad-list (first split-qs))))) - - -;; propagate x and y adjustments throughout the tree, -;; using parent x and y to adjust children, and so on. -(define+provide (compute-absolute-positions i [parent-x 0][parent-y 0]) - ((quad?) (integer? integer?) . ->* . quad?) - (cond - [(quad? i) - (define adjusted-x (round-float (+ (quad-attr-ref i world:x-position-key 0) parent-x))) - (define adjusted-y (round-float (+ (quad-attr-ref i world:y-position-key 0) parent-y))) - (quad (quad-name i) (merge-attrs i (list world:x-position-key adjusted-x world:y-position-key adjusted-y)) (map (λ(ii) (compute-absolute-positions ii adjusted-x adjusted-y)) (quad-list i)))] - [else i])) - -;; simple assert. should get moved to sugar/debug -(provide assert) -(define-syntax-rule (assert pred expr) - (let ([result expr]) - (if (pred result) - result - (error 'assert-failure (format "\n~a\nevaluates to:\n~a\nwhich is not:\n~a" 'expr result 'pred))))) - -;; peeks at arguments and times execution -(provide snoop) -(define-syntax (snoop stx) - (syntax-case stx () - [(_ proc arg ... . rest) - (with-syntax () - #'(begin - (displayln (format "Evaluating ~s" '(proc arg ... . rest))) - (let ([start (current-milliseconds)] - [result (proc arg ... . rest)] - [end (current-milliseconds)]) - (displayln (format "Evaluation of ~s took ~a ms\nResult ~a" '(proc arg ... . rest) (- end start) result)) - result)))])) - -;; find total pages in doc by searching on page count key. -(define+provide (pages-in-doc doc) - (doc? . -> . integer?) - (add1 (apply max (map (curryr quad-attr-ref world:page-key 0) (quad-list doc))))) - - -;; todo: how to guarantee line has leading key? -(define+provide (compute-line-height line) - (line? . -> . line?) - (quad-attr-set line world:height-key (quad-attr-ref/parameter line world:leading-key))) - -(define (fixed-height? q) (quad-has-attr? q world:height-key)) -(define+provide (quad-height q) - (quad? . -> . number?) - (quad-attr-ref q world:height-key 0)) - -;; use heights to compute vertical positions -(define+provide (add-vert-positions starting-quad) - (quad? . -> . quad?) - (define-values (new-quads final-height) - (for/fold ([new-quads empty][height-so-far 0])([q (in-list (quad-list starting-quad))]) - (values (cons (quad-attr-set q world:y-position-key height-so-far) new-quads) - (round-float (+ height-so-far (quad-height q)))))) - (quad (quad-name starting-quad) (quad-attrs starting-quad) (reverse new-quads))) - -;; recursively hyphenate strings in a quad -(define+provide (hyphenate-quad x) - (quad? . -> . quad?) - (cond - [(quad? x) (quad-map hyphenate-quad x)] - [(string? x) (hyphenate x - #:min-length 6 - #:min-left-length 3 - #:min-right-length 3)] - [else x])) - -;; just because it comes up a lot -(provide split-last) -(define-syntax-rule (split-last xs) - (let-values ([(first-list last-list) (split-at-right xs 1)]) - (values first-list (car last-list)))) - -;; like cons, but joins a list to an atom -(provide snoc) -(define-syntax-rule (snoc xs x) - (append xs (list x))) - - -;; folded flonum operators -;; (for use with multiple args, standard flonum ops have arity = 2) - -(define-syntax (define-folded-op stx) - (syntax-case stx () - [(_ op starting-val) - (with-syntax ([fold-op (format-id stx "fold-~a" #'op)] - [ops (format-id stx "~as" #'op)]) - #'(begin - (provide fold-op ops) - (define-syntax-rule (ops x (... ...)) - (fold-op (list x (... ...)))) - (define-syntax-rule (fold-op xs) - (foldl op starting-val xs))))])) - -(define-folded-op fl+ 0.0) -(define-folded-op fl- 0.0) -(define-folded-op fl* 1.0) -(define-folded-op fl/ 1.0) \ No newline at end of file diff --git a/quad/quad/old-master/world.rkt b/quad/quad/old-master/world.rkt deleted file mode 100644 index 9ac4ab5d..00000000 --- a/quad/quad/old-master/world.rkt +++ /dev/null @@ -1,99 +0,0 @@ -#lang racket/base -(require (for-syntax racket/base racket/syntax)) -(provide (prefix-out world: (all-defined-out))) - -(define-syntax-rule (define-parameter name val) - (define name (make-parameter val))) - -(define-syntax (define-key-and-parameter stx) - (syntax-case stx () - [(_ name keyname val) - (with-syntax ([name-key (format-id #'name "~a-key" #'name)] - [name-default (format-id #'name "~a-default" #'name)]) - #'(begin - (define name-key keyname) - (define-parameter name-default val)))])) - -(define-key-and-parameter measure 'measure 300) - - -(define-key-and-parameter font-size 'size 13) -(define-key-and-parameter font-name 'font "Triplicate T4") -(define-key-and-parameter font-weight 'weight 'normal) -(define-key-and-parameter font-style 'style 'normal) -(define-key-and-parameter font-color 'color "black") -(define-key-and-parameter font-background 'background "none") - -(define-key-and-parameter column-count 'column-count 2) -(define-key-and-parameter column-gutter 'column-gutter 30) - - -(define max-quality 100) -(define adaptive-quality 50) -(define draft-quality 20) -(define-key-and-parameter quality 'quality max-quality) - - -(define-key-and-parameter horiz-alignment 'x-align 'left) -(define-key-and-parameter leading 'leading (floor (* (font-size-default) 1.4))) - - -(define-key-and-parameter paper-width 'paper-width (* 8.5 72)) -(define-key-and-parameter paper-height 'paper-height (* 11 72)) - -(define line-looseness-key 'looseness) -(define width-key 'width) -(define horiz-alignment-last-line-key 'x-align-last-line) -(define word-break-key 'word-break) -(define no-break-key 'nb) -(define before-break-key 'bb) -(define ascent-key 'ascent) -(define height-key 'height) -(define unbreakable-key 'no-break) - - -(define line-index-key 'line-idx) -(define total-lines-key 'lines) -(define page-index-key 'page-idx) -(define column-index-key 'column-idx) - -(define x-position-key 'x) -(define y-position-key 'y) - -(define page-key 'page) - -(define soft-hyphen #\u00AD) -(define hyphens-and-dashes (list "-" "–" "—" (format "~a" soft-hyphen))) -(define spaces '(" ")) -(define empty-string '"") - -(define mergeable-quad-types '(char run word)) - - - -(define-parameter default-word-break-list '(nb "" bb "-")) - -(define-parameter optical-overhang 0.8) - -(define line-looseness-tolerance 0.05) ; 0.04 seems to be the magic point that avoids a lot of hyphenation -(define hyphen-limit 1) ; does not work with first-fit wrapping -(define minimum-last-line-chars 5) -(define allow-hyphenated-last-word-in-paragraph #t) -(define allowed-overfull-ratio 1.015) -(define last-line-can-be-short #t) -(define use-optical-kerns? #t) -(define use-hyphenation? #t) - -(define new-line-penalty 5000) -(define hyphen-penalty 5000) - -(define hanging-chars '("." "-" "," "‘" "’" "“" "”" "'" "\"" ")" "(" "[" "]" "{" "}" ":" ";")) - -(define minimum-lines-per-column 4) -(define min-first-lines 2) -(define min-last-lines 2) -(define default-lines-per-column 36) - -(define top-page-margin 100) - -(define-parameter logging-level 'debug) \ No newline at end of file diff --git a/quad/quad/old-master/wrap.rkt b/quad/quad/old-master/wrap.rkt deleted file mode 100644 index f5164ba2..00000000 --- a/quad/quad/old-master/wrap.rkt +++ /dev/null @@ -1,569 +0,0 @@ -#lang racket/base -(require (for-syntax racket/base racket/syntax)) -(require sugar/define sugar/list sugar/debug racket/list racket/function math/flonum racket/vector math/statistics) -(require "ocm.rkt" "quads.rkt" "utils.rkt" "measure.rkt" "world.rkt" "logger.rkt" ) - -;; predicate for the soft hyphen -(define+provide (soft-hyphen? x) - #;(string? . -> . boolean?) - (equal? (format "~a" world:soft-hyphen) x)) - -;; visible characters that also mark possible breakpoints -(define+provide (visible-breakable? x) - #;(string? . -> . boolean?) - (and (member x world:hyphens-and-dashes) #t)) - -;; invisible characters that denote possible breakpoints -(define+provide (invisible-breakable? x) - #;(string? . -> . boolean?) - (and (member x (cons world:empty-string world:spaces)) #t)) - -;; union of visible & invisible -(define+provide (breakable? x) - #;(any/c . -> . boolean?) - (cond - [(string? x) (or (visible-breakable? x) (invisible-breakable? x))] - [(word? x) (breakable? (word-string x))] - [else #f])) - -;; used by insert-spacers to determine which characters -;; can be surrounded by stretchy spacers -(define+provide (takes-justification-space? x) - #;(any/c . -> . boolean?) - (whitespace/nbsp? x)) - -;; test if a quad can be a word break: -;; either it's an explicit word break, -;; or it's breakable (and can be converted to a word break) -(define+provide (possible-word-break-quad? q) - #;(quad? . -> . boolean?) - (or (word-break? q) (breakable? q))) - -;; convert a possible word break into an actual one -(define+provide (convert-to-word-break q) - #;(possible-word-break-quad? . -> . word-break?) - (cond - [(word-break? q) q] - [(word? q) - (define str (word-string q)) ; str will be one character long, because we've exploded our input - (apply word-break - (merge-attrs q ; take q's attributes for formatting purposes - (cond - ;; a space is ordinarily visible, but disappears at the end of a line - [(equal? str " ") (list world:no-break-key " " world:before-break-key "")] - ;; soft hyphen is ordinarily invisible, but appears at the end of a line - [(soft-hyphen? str) (list world:no-break-key "" world:before-break-key "-")] - ;; a visible breakable character is always visible - [(visible-breakable? str) (list world:no-break-key str world:before-break-key str)] - [else (world:default-word-break-list)])) (quad-list q))])) - -(define (make-unbreakable q) - (quad-attr-set q world:unbreakable-key #t)) - -;; take list of atomic quads and gather them into pieces -;; a piece is an indivisible chunk of a line. -;; meaning, a line can wrap at a piece boundary, but not elsewhere. -;; hyphenation produces more, smaller pieces, which means more linebreak opportunities -;; but this also makes wrapping slower. -(define+provide (make-pieces qs) - #;(quads? . -> . pieces?) - (define-values (breakable-items items-to-make-unbreakable) (split-at-right qs (min world:minimum-last-line-chars (length qs)))) - (define unbreak-qs (append breakable-items (map make-unbreakable items-to-make-unbreakable))) - (define lists-of-quads (slicef-after unbreak-qs (λ(q) (and (possible-word-break-quad? q) (not (quad-attr-ref q world:unbreakable-key #f)))))) - (define-values (first-lists-of-quads last-list-of-quads) (split-last lists-of-quads)) - (define (make-first-pieces qs) - (let-values ([(first-qs last-q) (split-last qs)]) - (apply piece (list world:word-break-key (convert-to-word-break last-q)) first-qs))) - (append (map make-first-pieces first-lists-of-quads) - (list (apply piece #f last-list-of-quads)))) - -;; extract font attributes from quad, or get default values -(provide font-attributes-with-defaults) -(define-syntax-rule (font-attributes-with-defaults q) - (list - (let ([size (quad-attr-ref/parameter q world:font-size-key)]) - (if (exact-integer? size) (fl size) size)) - (quad-attr-ref/parameter q world:font-name-key) - (quad-attr-ref/parameter q world:font-weight-key) - (quad-attr-ref/parameter q world:font-style-key))) - -;; get the width of a quad. -;; Try the attr first, and if it's not available, compute the width. -;; comes in fast or slow versions. -;; not designed to update the source quad. -(define+provide (quad-width q) - #;(quad? . -> . flonum?) - (cond - [(quad-has-attr? q world:width-key) (fl (quad-attr-ref q world:width-key))] - [(ormap (λ(pred) (pred q)) (list char? run? word? word-break?)) - (apply measure-text (word-string q) - (font-attributes-with-defaults q))] - [(line? q) (fold-fl+ (map quad-width (quad-list q)))] - [else 0.0])) - - -;; get the ascent (distance from top of text to baseline) -;; used by renderer to align text runs baseline-to-baseline. -;; consult the attrs, and if not available, compute it. -;; not designed to update the source quad. -(define+provide (ascent q) - #;(quad? . -> . flonum?) - (or (quad-attr-ref q world:ascent-key #f) - (cond - [(ormap (λ(pred) (pred q)) (list char? run? word? word-break?)) - (apply measure-ascent (word-string q) (font-attributes-with-defaults q))] - [else 0.0]))) - -;; convert a piece into its final form, which depends on location. -;; if a piece appears at the end of a line, it is rendered in "before break" mode. -;; if a piece appears elsewhere in a line, it is rendered in "no break" mode. -;; this allows the appearance of a piece to change depending on whether it's at the end. -;; and thus give correct behavior to trailing word spaces, soft hyphens, etc. -(define+provide (render-piece p [before-break? #f]) - #;((piece?) (boolean?) . ->* . piece?) - ;; a piece doesn't necessarily have a word-break item in it. - ;; only needs it if the appearance of the piece changes based on location. - ;; so words are likely to have a word-break item; boxes not. - ;; the word break item contains the different characters needed to finish the piece. - (define the-word-break (quad-attr-ref p world:word-break-key #f)) - (let ([p (quad-attr-remove p world:word-break-key)]) ; so it doesn't propagate into subquads - (if the-word-break - (quad (quad-name p) (quad-attrs p) - (append (quad-list p) (let ([rendered-wb ((if before-break? - word-break->before-break - word-break->no-break) the-word-break)]) - (if (> (string-length (word-string rendered-wb)) 0) ; if rendered-wb is "", don't append it - (list rendered-wb) - empty)))) - p))) - -;; shorthand -(define+provide (render-piece-before-break p) - (render-piece p #t)) - -;; helper macro to convert quad into word-break. -;; look up the break character and convert the quad based on what is found. -(define-syntax-rule (render-word-break wb key) - (let ([break-char (quad-attr-ref wb key)]) - (quad (if (whitespace? break-char) 'word-break 'word) - (hash-remove (hash-remove (quad-attrs wb) world:no-break-key) world:before-break-key) (list (quad-attr-ref wb key))))) - -;; uses macro above in no-break mode. -(define (word-break->no-break wb) - (render-word-break wb world:no-break-key)) - -;; uses macro above in before-break mode. -(define (word-break->before-break wb) - (render-word-break wb world:before-break-key)) - -;; is this the last line? compare current line-idx to total lines -(define+provide (last-line? line) - #;(line? . -> . boolean?) - (define line-idx (quad-attr-ref line world:line-index-key #f)) - (define lines (quad-attr-ref line world:total-lines-key #f)) - (and line-idx lines (= (add1 line-idx) lines))) - - -;; optical kerns are automatically inserted at the beginning and end of a line -;; (by the pieces->line function) -;; but may also be found elsewhere, imperatively (e.g., before an indent) -;; they allow certain characters to hang over the line margin. -;; optical kerns aren't considered when the line is being composed, -;; rather they are an adjustment added to a composed line. -;; the optical kern doesn't have left- or right-handed versions. -;; it just looks at quads on both sides and kerns them if appropriate. -;; in practice, only one will likely be used. -(define+provide (render-optical-kerns exploded-line-quads) - #;(quads? . -> . quads?) - (define (overhang-width q) - (if (and (word? q) (member (word-string q) world:hanging-chars)) - (fl*s -1.0 (world:optical-overhang) (apply measure-text (word-string q) (font-attributes-with-defaults q))) - 0.0)) - (cond - [(not (empty? exploded-line-quads)) - ;; after exploding, each quad will have a string with one character. - (for/list ([(q-left q q-right) (apply in-parallel (shifts exploded-line-quads '(1 0 -1)))]) - (if (optical-kern? q) - (quad-attr-set q world:width-key (fl+ (overhang-width q-left) (overhang-width q-right))) - q))] - [else exploded-line-quads])) - - -(define-syntax (when/splice stx) - (syntax-case stx () - [(_ test body) - #'(if test (list body) '())])) - -;; ultimately every line is filled to fit the whole measure. -;; spacers are used to soak up extra space left over in a line. -;; depending on where the spacers are inserted, different formatting effects are achieved. -;; e.g., left / right / centered / justified. -(define+provide (insert-spacers-in-line line [alignment-override #f]) - #;((line?) ((or/c #f symbol?)) . ->* . line?) - ;; important principle: avoid peeking into quad-list to get attributes. - ;; because non-attributed quads may be added. - ;; here, we know that common attributes are hoisted into the line. - ;; so rely on line attributes to get horiz alignment. - (define key-to-use (if (and (last-line? line) (quad-has-attr? line world:horiz-alignment-last-line-key)) - world:horiz-alignment-last-line-key - world:horiz-alignment-key)) - (define horiz-alignment (or alignment-override (quad-attr-ref line key-to-use (world:horiz-alignment-default)))) - (define default-spacer (spacer)) - (define-values (before middle after) (case horiz-alignment - [(left) (values #f #f default-spacer)] - [(right) (values default-spacer #f #f)] - [(center) (values default-spacer #f default-spacer)] - [(justified justify) (values #f default-spacer #f)] - [else (values #f #f #f)])) - (define (copy-with-attrs q attr-source) - (define keys-to-ignore '(width)) ; width will be determined during fill routine - (define filtered-hash (and (quad-attrs attr-source) - (foldl (λ(k ht) (hash-remove ht k)) (quad-attrs attr-source) keys-to-ignore))) - (quad (quad-name q) (merge-attrs filtered-hash q) (quad-list q))) - (define result - (quad (quad-name line) (quad-attrs line) (flatten (let ([qs (quad-list line)]) - `(,@(when/splice before (copy-with-attrs before (first qs))) - - ,@(map (λ(q) (if (and middle (takes-justification-space? q)) - (let ([interleaver (copy-with-attrs middle q)]) - (list interleaver q interleaver)) - q)) qs) - ,@(when/splice after (copy-with-attrs after (last qs)))))))) - result) - - -;; installs the width in the quad. -;; this becomes the value reported by quad-width. -(define (embed-width q w) - (quad-attr-set q world:width-key w)) - -;; installs the ascent in the quad. -(define (record-ascent q) - (quad-attr-set q world:ascent-key (ascent q))) - -;; helper function: doesn't need contract because it's already covered by the callers -(define (render-pieces ps) - (define-values (initial-ps last-p) (split-last ps)) - (snoc (map render-piece initial-ps) (render-piece-before-break last-p))) - - -(define (calc-looseness total-width measure) - (round-float (fl/ (fl- measure total-width) measure))) - -;; compose pieces into a finished line. -;; take the contents of the rendered pieces and merge them. -;; compute looseness for line as a whole. -;; also add ascent to each component quad, which can be different depending on font & size. -(define+provide (pieces->line ps measure-quad-proc) - #;(pieces? procedure? . -> . line?) - - ;; handle optical kerns here to avoid resplitting and rejoining later. - (define rendered-pieces (render-pieces ps)) - (define split-pieces (map quad-list rendered-pieces)) - (define line-quads (append* split-pieces)) - (define line-quads-maybe-with-opticals - (if world:use-optical-kerns? - (render-optical-kerns - (let ([my-ok (list (optical-kern (quad-attrs (car line-quads))))]) ; take attrs from line, incl measure - (append my-ok line-quads my-ok))) - line-quads)) - (define merged-quads (join-quads line-quads-maybe-with-opticals)) - (define merged-quad-widths (map measure-quad-proc merged-quads)) ; 10% of function time - - (log-quad-debug "making pieces into line = ~v" (apply string-append (map quad->string merged-quads))) - - ;; if measure key isn't present, allow an error, because that's weird - (when (not (quad-has-attr? (first line-quads) world:measure-key)) - (error 'pieces->line "quad has no measure key: ~a" (first line-quads))) - - (define measure (fl (quad-attr-ref (first merged-quads) world:measure-key))) - (define looseness (calc-looseness (fold-fl+ merged-quad-widths) measure)) - - ;; quads->line function hoists common attributes into the line - (let* ([new-line-quads (map embed-width merged-quads merged-quad-widths)] ; 15% of time - [new-line-quads (map record-ascent new-line-quads)] ; 35% of time - [new-line (quads->line new-line-quads)] - [new-line (quad-attr-set new-line world:line-looseness-key looseness)]) - new-line)) - -;; a faster line-measuring function used by the wrapping function to test lines. -(define+provide (measure-potential-line ps) - ;(pieces? . -> . flonum?) - (for*/sum ([rendered-piece (in-list (render-pieces ps))] - [piece-quad (in-list (quad-list rendered-piece))]) - (quad-width piece-quad))) - - - - -(define (vector-break-at vec bps) - (define-values (vecs _) ;; loop backward - (for/fold ([vecs empty][end (vector-length vec)])([start (in-list (reverse (cons 0 bps)))]) - (if (= start end) - (values vecs start) - (values (cons (vector-copy vec start end) vecs) start)))) - vecs) - -(define-syntax-rule (report-time0 name expr) - (let ([op (open-output-string)]) - (parameterize ([current-output-port op]) - (define result (time expr)) - (report ((dynamic-require string-trim 'racket/string) (get-output-string op)) name) - (values result)))) - -(define-syntax-rule (report-time name expr) - expr) - -;; makes a wrap function by combining component functions. -(define+provide (make-wrap-proc - #:make-pieces-proc make-pieces-proc - #:measure-quad-proc measure-quad-proc - #:compose-line-proc compose-line-proc - #:find-breakpoints-proc find-breakpoints-proc) - (λ(qs [measure #f]) - (let* ([measure (fl+ (fl (or measure (quad-attr-ref/parameter (car qs) world:measure-key))) 0.0)] - [qs (if (quad-has-attr? (car qs) world:measure-key) - qs - (map (curryr quad-attr-set world:measure-key measure) qs))]) - (log-quad-debug "wrapping on measure = ~a" measure) - (define pieces (make-pieces-proc qs)) ; 5% - (define bps (report-time 'find-bps (find-breakpoints-proc (list->vector pieces) measure))) ; 50% - (define broken-pieces (break-at pieces bps)) ; 5% - ; (report (add1 (length bps)) 'lines-in-paragraph) - (report-time 'compose-lines (map (λ(bp) (compose-line-proc bp measure-quad-proc)) broken-pieces))))) ; 50% - -(define width? flonum?) -(define measure? flonum?) -(define (breakpoints? x) (and (list? x) (andmap integer? x))) - - -(define (install-measurement-keys p) - (define basic-width (round-float (apply + (map quad-width (quad-list p))))) - (define p-word-break (quad-attr-ref p world:word-break-key #f)) - (define before-break-width (fl+ basic-width (if p-word-break - (quad-width (word (quad-attrs p-word-break) (quad-attr-ref p-word-break world:before-break-key))) - 0.0))) - (define no-break-width (fl+ basic-width (if p-word-break - (quad-width (word (quad-attrs p-word-break) (quad-attr-ref p-word-break world:no-break-key))) - 0.0))) - (quad-attr-set* p 'bb-width before-break-width 'nb-width no-break-width)) - - -(define (make-piece-vectors pieces) - (define pieces-measured - (report-time 'make-wrap-vector (for/list ([p (in-vector pieces)]) - (define wb (quad-attr-ref p world:word-break-key #f)) - (vector - (fold-fl+ (for/list ([q (in-list (quad-list p))]) - (define str (quad->string q)) - (if (equal? str "") - (fl (quad-attr-ref q world:width-key 0.0)) - (apply measure-text (quad->string q) (font-attributes-with-defaults q))))) - (if wb (apply measure-text (quad-attr-ref wb world:no-break-key) (font-attributes-with-defaults wb)) 0.0) - (if wb (apply measure-text (quad-attr-ref wb world:before-break-key) (font-attributes-with-defaults wb)) 0.0))))) - (values - (for/flvector ([p (in-list pieces-measured)]) (fl+ (vector-ref p 0) (vector-ref p 1))) ; first = word length, second = nb length - (for/flvector ([p (in-list pieces-measured)]) (fl+ (vector-ref p 0) (vector-ref p 2))))) ; first = word length, third = bb length - - -(define-syntax-rule (make-trial-line pieces-rendered-widths pieces-rendered-before-break-widths i j) - (let ([flvec (flvector-copy pieces-rendered-widths i j)]) - (flvector-set! flvec (sub1 (flvector-length flvec)) (flvector-ref pieces-rendered-before-break-widths (sub1 j))) - flvec)) - - -(define-syntax-rule (get-line-width line) - (round-float (fold-fl+ (flvector->list line)))) - -;; top-level adaptive wrap proc. -;; first-fit and best-fit are variants. -(define+provide (adaptive-fit-proc pieces measure [use-first? #t] [use-best? #t]) - ;((pieces? . -> . width?) . -> . (pieces? measure? . -> . breakpoints?)) - - ;; this is the winning performance strategy: extract the numbers first, then just wrap on those. - ;; todo: how to avoid re-measuring pieces later? - ;; todo: how to retain information about words per line and hyphen at end? - (define-values (pieces-rendered-widths pieces-rendered-before-break-widths) - (make-piece-vectors pieces)) - (define pieces-with-word-space (vector-map (λ(piece) (and (quad-has-attr? piece world:word-break-key) (equal? (quad-attr-ref (quad-attr-ref piece world:word-break-key) 'nb) " "))) pieces)) - - (define (make-first-fit-bps-and-widths) - (define-values (folded-bps folded-widths) - (for/fold ([bps '(0)][line-widths empty])([j-1 (in-range (vector-length pieces))]) - (define line-width (get-line-width (make-trial-line pieces-rendered-widths - pieces-rendered-before-break-widths - (car bps) (add1 j-1)))) - (if (fl> line-width (fl* world:allowed-overfull-ratio measure)) - (values (cons j-1 bps) (cons line-width line-widths)) - (values bps line-widths)))) - (values (cdr (reverse folded-bps)) (reverse folded-widths))) - - (define (fu-formula) - (define line-count (length trial-line-widths)) - (cond - [(<= line-count 2) 1.0] ; signals that first-fit is always OK with 1 or 2 lines - [else ; only measure middle lines. we know bps has at least 2 bps - (define looseness-stddev (stddev (map (curryr calc-looseness measure) (drop-right (drop trial-line-widths 1) 1)))) - (define piece-count (flvector-length pieces-rendered-widths)) - (define pieces-per-line (fl/ (fl piece-count) (sub1 (fl line-count)))) ; todo: more accurate to count only pieces in middle - (fl+s 2.2 (fllog (flabs looseness-stddev)) (fl* 0.09 pieces-per-line))])) ; the FU FORMULA - - ;; only buy first-fit-bps if use-first? is true. - (define-values (first-fit-bps trial-line-widths) (if use-first? (make-first-fit-bps-and-widths) (values (void) (void)))) - - (cond - ;; possible outcomes at this branch: - ;; adaptive wrap: use-first and use-best are true, so first-fit-bps will exist, and fu-formula will be used. - ;; first-fit wrap: use-first is true but not use-best. So first-fit-bps will be returned regardless. - ;; best-fit wrap: use-first is false but use-best is true. So first-fit-bps will be skipped, and move on to best-fit. - [(and use-first? (if use-best? (fl> (fu-formula) 0.0) #t)) - (log-quad-debug "first-fit breakpoints = ~a" first-fit-bps) - first-fit-bps] - [else - - (define $penalty vector) ; don't use struct for penalty, because of read/write overhead - (define ($penalty-width x) (vector-ref x 1)) - (define ($penalty-hyphens x) (vector-ref x 0)) - (define ($penalty->value v) ($penalty-width v)) - (define initial-value ($penalty 0 0.0)) - - (log-quad-debug "~a pieces to wrap = ~v" (vector-length pieces) (vector-map quad->string pieces)) - (define (penalty i j) - (cond - [(or (>= i j) ; implies negative or zero length line - (> j (vector-length pieces))) ; exceeds available pieces - ($penalty 0 (fl* -1.0 (fl i)))] ; ocm out of bounds signal - [else - (define penalty-up-to-i (ocm-min-value ocm i)) - (define last-piece-to-test (vector-ref pieces (sub1 j))) - (define new-hyphen? - (and (quad-has-attr? last-piece-to-test world:word-break-key) - (equal? (quad-attr-ref (quad-attr-ref last-piece-to-test world:word-break-key) world:before-break-key) "-"))) - (define cumulative-hyphens (if (not new-hyphen?) - 0 - (add1 ($penalty-hyphens penalty-up-to-i)))) - - ($penalty - cumulative-hyphens - (round-float - (fl+s - (if (> cumulative-hyphens world:hyphen-limit) - (fl world:hyphen-penalty) - 0.0) - (fl world:new-line-penalty) - ($penalty->value penalty-up-to-i) - (let ([line-width (get-line-width (make-trial-line pieces-rendered-widths pieces-rendered-before-break-widths i j))]) - (cond - ;; overfull line: huge penalty prevents break; multiplier is essential for monotonicity. - ;; multiply by -1 because line-width is longer than measure, thus diff is negative - [(fl> line-width (fl* world:allowed-overfull-ratio measure)) - (fl* (fl- line-width measure) (flexpt 10.0 7.0))] - ;; standard penalty, optionally also applied to last line (by changing operator) - [((if world:last-line-can-be-short < <=) j (vector-length pieces)) - (define words (fl (vector-count identity (vector-copy pieces-with-word-space i (sub1 j))))) - (fl/ (flexpt (fl- measure line-width) 2.0) (flmax 1.0 words))] - ;; only option left is (= j (vector-length pieces)), meaning we're on the last line. - ;; 0 penalty means any length is ok. - ;[(< (length pieces-to-test) (world:minimum-last-line-pieces)) 50000] - [else 0.0])))))])) - - (define ocm (make-ocm penalty initial-value $penalty->value)) - - ;; starting from last position, ask ocm for position of row minimum (= new-pos) - ;; collect this value, and use it as the input next time - ;; until you reach first position. - (define first-position 0) - (define last-position (vector-length pieces)) - (define result (let loop ([pos last-position][acc null]) - (let ([next-pos (ocm-min-index ocm pos)]) ; first look ahead ... - (if (= next-pos first-position) ; therefore we're done - acc - (loop next-pos (cons next-pos acc)))))) - - (log-quad-debug "best-fit breakpoints = ~a" result) - result])) - - - - -;; wrap proc based on greedy proc -(define+provide wrap-first (make-wrap-proc - #:make-pieces-proc make-pieces - #:measure-quad-proc quad-width - #:compose-line-proc pieces->line - #:find-breakpoints-proc (curryr adaptive-fit-proc #t #f))) - -;; wrap proc based on penalty function -(define+provide wrap-best (make-wrap-proc - #:make-pieces-proc make-pieces - #:measure-quad-proc quad-width - #:compose-line-proc pieces->line - #:find-breakpoints-proc (curryr adaptive-fit-proc #f #t))) - -(define+provide wrap-adaptive (make-wrap-proc - #:make-pieces-proc make-pieces - #:measure-quad-proc quad-width - #:compose-line-proc pieces->line - #:find-breakpoints-proc adaptive-fit-proc)) - - -(define (fixed-width? q) (quad-has-attr? q world:width-key)) - - -;; build quad out to a given width by distributing excess into spacers -;; todo: adjust this to work recursively, so that fill operation cascades down -(define+provide (fill starting-quad [target-width? #f]) - #;((quad?) ((or/c #f flonum?)) . ->* . quad?) - (define target-width (fl (or target-width? (quad-attr-ref starting-quad world:measure-key)))) - (define subquads (quad-list starting-quad)) - (define-values (flexible-subquads fixed-subquads) (partition spacer? subquads)) ; only puts fill into spacers. - (define width-used (fold-fl+ (map quad-width fixed-subquads))) - (define width-remaining (round-float (fl- target-width width-used))) - (cond - ;; check for zero condition because we want to divide by this number - ;; if there's no spacers, put one in - ;; todo: go in two rounds, once for word spacers, and once for line spacers? - ;; or separate the line alignment & word-spacing properties? - [(fl= 0.0 (fl (length flexible-subquads))) (fill (insert-spacers-in-line starting-quad (world:horiz-alignment-default)) target-width)] - [else (define width-per-flexible-quad (round-float (fl/ width-remaining (fl (length flexible-subquads))))) - (define new-quad-list (map (λ(q) (if (spacer? q) - (quad-attr-set q world:width-key width-per-flexible-quad) - q)) subquads)) - - (quad (quad-name starting-quad) (quad-attrs (quad-attr-set starting-quad world:width-key target-width)) new-quad-list)])) - - -;; add x positions to a list of fixed-width quads -;; todo: adjust this to work recursively, so that positioning operation cascades down -(define+provide (add-horiz-positions starting-quad) - #;((and/c quad? fixed-width?) . -> . quad?) - (define-values (new-quads final-width) - (for/fold ([new-quads empty][width-so-far 0.0])([q (in-list (quad-list starting-quad))]) - (values (cons (quad-attr-set q world:x-position-key width-so-far) new-quads) (round-float (fl+ (quad-width q) width-so-far))))) - (quad (quad-name starting-quad) (quad-attrs starting-quad) (reverse new-quads))) - - - -(module+ main - (define eqs (split-quad (block '(x-align center font "Equity Text B" size 10) "Foo-d" (word '(size 13) "og ") "and " (box) " Zu" (word-break '(nb "c" bb "k-")) "kerman's. Instead of a circle, the result is a picture of the code that, if it were used as an expression, would produce a circle. In other words, code is not a function, but instead a new syntactic form for creating pictures; the bit between the opening parenthesis with code is not an expression, but instead manipulated by the code syntactic form. This helps explain what we meant in the previous section when we said that racket provides require and the function-calling syntax. Libraries are not restricted to exporting values, such as functions; they can also define new syntactic forms. In this sense, Racket isn’t exactly a language at all; it’s more of an idea for how to structure a language so that you can extend it or create entirely " (word '(font "Courier" size 5) "lang.")))) - - (define megs (split-quad (block '(size 10 font "Courier") "Meg is an ally."))) - (activate-logger quad-logger) - (define measure 40.0) - (map quad->string (wrap-first megs measure)) - (map quad->string (wrap-best megs measure)) - - (set! measure 200.0) -(time (map quad->string (wrap-first eqs measure))) -(time (map quad->string (wrap-best eqs measure))) - #| - (define trials 1) - (time-repeat trials (let () (wrap-first megs 36) (void))) - (time-repeat trials (let ([measure 36]) (wrap-best megs measure) (void))) - - (time-repeat trials (let () (wrap-first eqs 54) (void))) - (time-repeat trials (let ([measure 54]) (wrap-best eqs measure) (void))) - (time-repeat trials (let ([measure 54]) (wrap-adaptive eqs measure) (void))) -|# - ) - diff --git a/quad/quad/pred.rkt b/quad/quad/pred.rkt deleted file mode 100644 index 84e5aad1..00000000 --- a/quad/quad/pred.rkt +++ /dev/null @@ -1,5 +0,0 @@ -#lang racket/base -(provide (all-defined-out)) - -(define current-default-attrs (make-parameter (make-hasheq))) -(define current-line-width (make-parameter 1)) \ No newline at end of file diff --git a/quad/quad/quadlang-test.rkt b/quad/quad/quadlang-test.rkt deleted file mode 100644 index fa14d7cb..00000000 --- a/quad/quad/quadlang-test.rkt +++ /dev/null @@ -1,4 +0,0 @@ -#lang quad/text pdf 360 300 -@quad[(make-attrs #:font "Charter.ttf")]{Not that you need to be a programmer to start using Pollen. On the contrary, the Pollen language is markup-based, so you can write & edit text naturally. But when you want to automate repetitive tasks, add cross-references, or pull in data from other sources, you can access a full programming language from within the text. - -Not that you need to be a programmer to start using Pollen. On the contrary, the Pollen language is markup-based, so you can write & edit text naturally. But when you want to automate repetitive tasks, add cross-references, or pull in data from other sources, you can access a full programming language from within the text.} \ No newline at end of file diff --git a/quad/quad/quads.rkt b/quad/quad/quads.rkt deleted file mode 100644 index 3108f00b..00000000 --- a/quad/quad/quads.rkt +++ /dev/null @@ -1,127 +0,0 @@ -#lang racket/base -(provide (all-defined-out)) -(require racket/string racket/list (for-syntax racket/base racket/syntax)) - -(struct $quad (attrs dim val) #:transparent #:mutable) -(struct $black $quad () #:transparent) -(struct $space $quad () #:transparent) -(struct $hyphen $black () #:transparent) ; hyphen should be treated as black in measure & render ops -(struct $shy $quad () #:transparent) -(struct $shim $quad () #:transparent) -(struct $eof $quad () #:transparent) - -(define (quad-printable? x) (or ($black? x) ($space? x) ($hyphen? x))) - -(define quad? $quad?) - -(define quad-attrs $quad-attrs) -(define quad-val $quad-val) - -(define (quad-attrs? x) (list? x)) - - -#| -Attrs needed to specify rendered appearance: -(font) family -(font) style -(font) size -color -background -position -measure (line width) - -|# -(define default-attrs (hasheq 'size 10 'font "sc.otf")) ; Source Code Pro, 12 pt, chars are 6pt wide - -(define (munge-whitespace str) - ;; reduce multiple whitespace to single - ;; trim remaining (? maybe not) - (regexp-replace* #px"\\s+" str " ")) - -(define (merge-strings xs) - ;; merge consecutive strings - ;; todo: only trim remove space between string and a hard break. - ;; space between a string and a subquad is ok - (let loop ([xs xs]) - (cond - [(empty? xs) empty] - [else - (define-values (strs rest) (splitf-at xs string?)) - (define-values (nonstrs restrest) (splitf-at rest (λ(x) (not (string? x))))) - (append (if (empty? strs) - empty - (list (munge-whitespace (string-append* strs)))) nonstrs (loop restrest))]))) - - -(struct $attrs (size font) #:transparent) -(define (make-attrs #:size [size #f] - #:font [font #f]) - (hasheq 'size size 'font font)) - -(define (make-empty-attrs) (make-attrs)) - - - -(define (quad attr . xs) - ;; squeeze excess whitespace out of quad args - ;; todo: find way to do this with less allocation - ($quad (or attr (make-attrs)) 0 (merge-strings xs))) - - -(define (quad-dim q) - ($quad-dim q)) - -(define (quad-font q) - (hash-ref (quad-attrs q) 'font)) -(define (quad-font-size q) - (hash-ref (quad-attrs q) 'size)) - -(define (quad-dim-set! q val) - (set-$quad-dim! q val)) - -(define (override-with dest source) - ;; replace missing values in dest with values from source - (for/hasheq ([k (in-hash-keys source)]) - (values k (or (hash-ref dest k) (hash-ref source k))))) - -(require (for-syntax sugar/debug)) -(define-syntax-rule (define-break name) - (define (name) ($shim (make-attrs) 'name #f))) - -(define-break page-break) -(define-break column-break) -(define-break block-break) -(define-break line-break) - -(define-syntax (define-case-macro stx) - (syntax-case stx () - [(_ ID PRED) - #'(define-syntax (ID stx) - (syntax-case stx () - [(_ test-val - [(match-val0 . match-vals) . result] (... ...) - [else . else-result]) - #'(cond - [(PRED test-val '(match-val0 . match-vals)) . result] (... ...) - [else . else-result])] - [(_ test-val - match-clause (... ...)) - #'(ID test-val - match-clause (... ...) - [else (error 'ID "no match")])]))])) - -;; like case but strictly uses `eq?` comparison (as opposed to `equal?`) -(define-case-macro caseq memq) - -;; `eqv?` is OK for chars (same as `char=?`) -(define-case-macro casev memv) - - -(module+ test - (require rackunit) - (define q (quad #f "bar")) - (check-true (quad? q)) - (check-false (quad? 42)) - (check-equal? (quad-attrs q) (make-attrs)) - (check-equal? (quad-val q) '("bar")) - #;(check-equal? (merge-strings '(50 " foo " " bar " 42 " zam")) '(50 "foo bar" 42 "zam"))) \ No newline at end of file diff --git a/quad/quad/render-pdf.rkt b/quad/quad/render-pdf.rkt deleted file mode 100644 index 77198c5c..00000000 --- a/quad/quad/render-pdf.rkt +++ /dev/null @@ -1,101 +0,0 @@ -#lang quad/dev -(require racket/class racket/contract racket/string sugar/debug sugar/cache racket/list racket/file racket/draw data/gvector) -(provide (all-defined-out)) - -(define (world:paper-width-default) 612) -(define (world:paper-height-default) 792) - -(define renderable-quads '(word box)) - -(define (render-pdf [qs #f] [path-string "test.pdf"]) - (send* (current-ps-setup) (set-margin 0 0) (set-scaling 1.0 1.0)) - (define dc-output-port (open-output-bytes)) - (define dc (new pdf-dc% [interactive #f][use-paper-bbox #f][as-eps #f] - [output dc-output-port] - [width (world:paper-width-default)][height (world:paper-height-default)])) - (send dc start-doc "boing") - (send dc set-pen "black" 1 'solid) - (send dc set-brush "black" 'transparent) ; no fill by default - - - #;(for ([q (in-vector qs)] #:when (member (quad-name q) renderable-quads)) - (define p (quad-attr-ref q world:page-key)) - (gvector-set! page-quad-vector p (cons q (gvector-ref page-quad-vector p null)))) - - #;(for/list ([pq (in-gvector page-quad-vector)]) - (send dc start-page) - (map/send render-element (filter-not whitespace/nbsp? elements)) - (send dc end-page)) - - (define (print-status) - (send dc draw-text (format "quad pdf test @ ~a" (current-milliseconds)) 0 0)) - - (send dc set-font (make-font #:face "Source Code Pro" #:size 10)) - - (send dc start-page) - (print-status) - - (define default-x 40) - (define default-y 40) - - (when qs - (for/fold ([page-pos 0] - [x-pos default-x] - [y-pos default-y]) - ([q (in-vector qs)]) - (let ([font-attr (hash-ref (quad-attrs q) 'font #f)]) - (when font-attr - (send dc set-font (make-font #:face (string-trim font-attr ".ttf") #:size 10)))) - (cond - [(eq? (quad-dim q) 'page-break) - (send dc end-page) - (send dc start-page) - (print-status) - (values page-pos default-x default-y)] - [(eq? (quad-dim q) 'line-break) - (values page-pos default-x (+ y-pos 12))] - [(eq? (quad-dim q) 'column-break) - (values page-pos x-pos y-pos)] ; ignore for now - [(quad-printable? q) - (send dc draw-text (format "~a" (quad-val q)) x-pos y-pos) - (values page-pos (+ x-pos (quad-dim q)) y-pos)] - [else (values page-pos x-pos y-pos)]))) - - (send dc end-page) - (send dc end-doc) - - (define result-bytes (get-output-bytes dc-output-port)) - (display-to-file result-bytes path-string #:exists 'replace #:mode 'binary)) - - -#;(define (render-element q) - (cond - [(word? q) (render-word q)] - [else q])) - - -(define/caching (make-font/caching font size style weight) - (make-font #:face font #:size size #:style style #:weight weight)) - -#;(define (render-word w) - (define word-font (quad-attr-ref/parameter w world:font-name-key)) - (define word-size (quad-attr-ref/parameter w world:font-size-key)) - (define word-style (quad-attr-ref/parameter w world:font-style-key)) - (define word-weight (quad-attr-ref/parameter w world:font-weight-key)) - (define word-color (quad-attr-ref/parameter w world:font-color-key)) - (define word-background (quad-attr-ref/parameter w world:font-background-key)) - (send dc set-font (make-font/caching word-font word-size word-style word-weight)) - (send dc set-text-foreground (send the-color-database find-color word-color)) - (define background-color (send the-color-database find-color word-background)) - (if background-color ; all invalid color-string values will return #f - (send* dc (set-text-mode 'solid) (set-text-background background-color)) - (send dc set-text-mode 'transparent)) - - (define word-text (quad-car w)) - (send dc draw-text word-text (quad-attr-ref w world:x-position-key) - ;; we want to align by baseline rather than top of box - ;; thus, subtract ascent from y to put baseline at the y coordinate - (- (quad-attr-ref w world:y-position-key) (quad-attr-ref w world:ascent-key 0)) #t)) - -(module+ test - (render-pdf)) \ No newline at end of file diff --git a/quad/quad/render.rkt b/quad/quad/render.rkt deleted file mode 100644 index 2740744d..00000000 --- a/quad/quad/render.rkt +++ /dev/null @@ -1,30 +0,0 @@ -#lang quad/dev -(require racket/format) -(provide (all-defined-out)) - -(define (debug-render qs) - (define line-counter #f) - (define (line-counter-increment!) (set! line-counter (add1 line-counter))) - (define (line-counter-reset!) (set! line-counter 1)) - (line-counter-reset!) - (printf " ") - (for ([i (in-range 1 71)]) - (printf (cond - [(zero? (modulo i 10)) "|"] - [(zero? (modulo i 5)) "'"] - [else "·"]))) - (define (print-line-counter) - (printf "\n~a "(~r line-counter #:min-width 2 #:pad-string " " #:base 10))) - (print-line-counter) - (for ([q (in-vector qs)]) - (define qd (quad-dim q)) - (cond - [(symbol? qd) ; symbol indicates a break - (caseq qd - [(line-break) (line-counter-increment!)] - [(column-break) (line-counter-reset!) (printf "\n--col--")] - [(page-break) (printf "\n\n==page==\n")]) - (print-line-counter)] - [(quad-printable? q) (printf "~a" (quad-val q))] - [else (void)])) - (printf "\n\n")) \ No newline at end of file diff --git a/quad/quad/sc.otf b/quad/quad/sc.otf deleted file mode 100644 index 8f031da9..00000000 Binary files a/quad/quad/sc.otf and /dev/null differ diff --git a/quad/quad/text.rkt b/quad/quad/text.rkt deleted file mode 100644 index 28678b5b..00000000 --- a/quad/quad/text.rkt +++ /dev/null @@ -1,35 +0,0 @@ -#lang racket/base - -#| -Same semantics as `#lang quad`, -but substitutes a Scribble-style text-based reader -|# - -(module reader syntax/module-reader - quad/main - #:read quad-read - #:read-syntax quad-read-syntax - #:whole-body-readers? #t ;; need this to make at-reader work - (require scribble/reader racket/list) - (require sugar/debug) - - (define (quad-read p) - (syntax->datum (quad-read-syntax (object-name p) p))) - - (define quad-command-char #\@) - - (define (quad-read-syntax path-string p) - (define quad-at-reader (make-at-reader - #:command-char quad-command-char - #:syntax? #t - #:inside? #t)) - (define source-stx (quad-at-reader path-string p)) - (define source-stx-list (syntax->list source-stx)) - (define config-line (car source-stx-list)) - ;; we dump all whitespace lines in plain-text mode, as they have no semantic purpose - ;; the at-reader will kindly separate these all-whitespace lines into their own list elements - (define source-stx-no-interline-whitespace - (filter-not (λ(stx) - (define datum (syntax->datum stx)) - (and (string? datum) (regexp-match #px"^\\s+$" datum))) (cdr source-stx-list))) - (datum->syntax source-stx (cons config-line source-stx-no-interline-whitespace) source-stx))) \ No newline at end of file diff --git a/quad/quad/typeset.rkt b/quad/quad/typeset.rkt deleted file mode 100644 index c197d40d..00000000 --- a/quad/quad/typeset.rkt +++ /dev/null @@ -1,77 +0,0 @@ -#lang quad/dev -(provide (all-defined-out)) -(require "measure.rkt") - -;; track this k outside of for/fold loop to keep it independent. -;; otherwise, every time k is invoked, the loop k will also change. -;; (mutated data is not reset by a continuation, but loop vars are) -(define last-breakpoint-k raise-overflow-error) - -(define (set-breakpoint-k-here!) - (let/cc k (set! last-breakpoint-k k) #f)) - -(define (already-breakpoint-type? q type) - (eq? (quad-dim q) type)) - -(define char-width 6) -(define line-width (* 60 char-width)) ; 50 chars, each 6 pts wide -(define line-height 12) -(define col-height (* 6 line-height)) ; 3 rows, each 12 pts high -(define page-width (* 3 line-width)) ; meaning, two columns - -;; posn-page : horiz position of column within page -;; posn-col : vert position of line within column -;; posn-line : horiz position of char within line -(struct posn (page col line) #:transparent) -(define (make-posn [page 0] [col 0] [line 0]) (posn page col line)) - -(define page-start-position (make-posn)) - -(define (fit qs [line-width line-width] [col-height col-height]) - - (define (handle-break val [current-posn #f]) - (caseq val ; test in order of frequency - [(line-break) (make-posn (posn-page current-posn) (+ (posn-col current-posn) line-height))] - [(column-break) (make-posn (+ (posn-page current-posn) line-width))] - [(page-break) page-start-position] - [else current-posn])) - - (for/fold ([current-posn page-start-position]) - ([q (in-vector qs)]) - (unless (quad-dim q) (measure! q)) - (cond - ;; shim may contain an imperative break. - [($shim? q) (handle-break (quad-dim q) current-posn)] - - ;; test for overset (before a new bp-k gets set). - ;; send break type back through continuation - ;; we do a combined test to find out the "biggest" break that is needed - ;; order connotes precedence - [(or - ;; test page-horiz with >= because one column impliedly exists at the start - (and (>= (posn-page current-posn) page-width) 'page-break) - ;; test tp-vert with >= because one column impliedly exists at the start - (and (>= (posn-col current-posn) col-height) 'column-break) - ;; test tp-horiz with > because no characters exist in the line at the start - (and (> (posn-line current-posn) line-width) 'line-break)) => last-breakpoint-k] - - ;; set a new bp-k, or resume after invoking a bp-k - ;; bp-k has to be in conditional so it triggers side effect but also forces next branch - [(and ($space? q) (set-breakpoint-k-here!)) - => ; grabs the value of the condition: the arg passed to breakpoint-k - (λ (breakpoint-k-result) - (when (already-breakpoint-type? q breakpoint-k-result) - ;; it means we're caught in an overflow loop, so - (raise-overflow-error)) - ;; convert the white, thereby consuming it. todo: don't consume hyphens - (quad-dim-set! q breakpoint-k-result) - (handle-break breakpoint-k-result current-posn))] - - [else (posn (posn-page current-posn) (posn-col current-posn) (+ (posn-line current-posn) (quad-dim q)))])) - qs) - -(module+ test - (require "atomize.rkt" "render.rkt") - ;; todo: preserve space between black quads - (define q (quad #f "One morning " (quad #f "and himself"))) - (time (debug-render (fit (atomize q))))) \ No newline at end of file diff --git a/quad/quad/typewriter-test.rkt b/quad/quad/typewriter-test.rkt new file mode 100644 index 00000000..d1f0653a --- /dev/null +++ b/quad/quad/typewriter-test.rkt @@ -0,0 +1,3 @@ +#lang quad/typewriter + +line line line line \ No newline at end of file diff --git a/quad/quad/typewriter.rkt b/quad/quad/typewriter.rkt new file mode 100644 index 00000000..de46c2e7 --- /dev/null +++ b/quad/quad/typewriter.rkt @@ -0,0 +1,47 @@ +#lang debug br/quicklang +(require racket/promise "quad.rkt" "atomize.rkt" "break.rkt") +(provide (rename-out [mb #%module-begin])) + +(define optional-break? (λ (q) (and (quad? q) (memv (car (qe q)) '(#\space))))) +(struct $slug $quad () #:transparent) +(define (slug . xs) ($slug #f xs)) +(define (lbs xs size [debug #f]) + (insert-breaks xs size debug + #:break-val 'lb + #:optional-break-proc optional-break? + #:size-proc (λ (q) (let ([val (hash-ref (qa q) 'size (λ () + (if (memv (car (qe q)) '(#\space)) + (delay (values 0 1 0)) + (delay (values 1 1 1)))))]) + (if (promise? val) (force val) (val)))) + #:finish-segment-proc (λ (pcs) (list ($slug #f pcs))))) + +(define (pbs xs size [debug #f]) + (insert-breaks xs size debug + #:break-val 'pb + #:optional-break-proc (λ (x) (eq? x 'lb)) + #:size-proc (λ (q) (case q + [(lb) (values 0 0 0)] + [else (values 1 1 1)])))) + +(define (typeset args) + (pbs (lbs (atomize (apply quad #f args)) 5) 2)) + +(define-syntax-rule (mb lang-line-config-arg . args) + (#%module-begin + (typeset (list . args)))) + +(module reader syntax/module-reader + quad/typewriter + #:read quad-read + #:read-syntax quad-read-syntax + #:whole-body-readers? #t ;; need this to make at-reader work + (require scribble/reader) + + (define (quad-read p) (syntax->datum (quad-read-syntax (object-name p) p))) + + (define (quad-read-syntax path-string p) + (define quad-at-reader (make-at-reader + #:syntax? #t + #:inside? #t)) + (quad-at-reader path-string p))) \ No newline at end of file