Changeset 82903 in webkit


Ignore:
Timestamp:
Apr 4, 2011 10:21:16 PM (13 years ago)
Author:
mitz@apple.com
Message:

<rdar://problem/7709452> Implement Default Ruby Overhang Behavior
https://bugs.webkit.org/show_bug.cgi?id=49334

Reviewed by Simon Fraser.

Source/WebCore:

Tests: fast/ruby/overhang-horizontal.html

fast/ruby/overhang-vertical.html

This is a first cut at ruby overhang. It allows ruby text to hang over other
text of equal or smaller size. Two notable omissions are that max preferred
width computation was not patched, so it will overshoot, and that overhang
ignores the width of the adjoining text runs.

  • rendering/RenderBlock.h:
  • rendering/RenderBlockLineLayout.cpp:

(WebCore::RenderBlock::computeInlineDirectionPositionsForLine): Adjust margins
of ruby runs for overhang.
(WebCore::RenderBlock::fitBelowFloats): Maintain the increase in line width to
compensate for overhang.
(WebCore::RenderBlock::findNextLineBreak): When encountering
a ruby run, increase the line width to account for the fact that overhang will be
collapsed.

  • rendering/RenderRubyRun.cpp:

(WebCore::RenderRubyRun::getOverhang): Added. Allows ruby to overhang if
the adjoining renderer is text with equal or smaller font size.

  • rendering/RenderRubyRun.h:

(WebCore::toRenderRubyRun):

LayoutTests:

  • fast/ruby/overhang-horizontal-expected.checksum: Added.
  • fast/ruby/overhang-horizontal-expected.png: Added.
  • fast/ruby/overhang-horizontal-expected.txt: Added.
  • fast/ruby/overhang-horizontal.html: Added.
  • fast/ruby/overhang-vertical-expected.checksum: Added.
  • fast/ruby/overhang-vertical-expected.png: Added.
  • fast/ruby/overhang-vertical-expected.txt: Added.
  • fast/ruby/overhang-vertical.html: Added.
  • platform/mac/fast/blockflow/Kusa-Makura-background-canvas-expected.checksum:
  • platform/mac/fast/blockflow/Kusa-Makura-background-canvas-expected.png:
  • platform/mac/fast/blockflow/Kusa-Makura-background-canvas-expected.txt:
  • platform/mac/fast/blockflow/english-lr-text-expected.checksum:
  • platform/mac/fast/blockflow/english-lr-text-expected.png:
  • platform/mac/fast/ruby/ruby-beforeafter-expected.checksum:
  • platform/mac/fast/ruby/ruby-beforeafter-expected.png:
  • platform/mac/fast/ruby/ruby-beforeafter-expected.txt:
  • platform/mac/fast/ruby/ruby-length-expected.checksum:
  • platform/mac/fast/ruby/ruby-length-expected.png:
  • platform/mac/fast/ruby/ruby-length-expected.txt:
  • platform/mac/fast/ruby/ruby-run-break-expected.checksum:
  • platform/mac/fast/ruby/ruby-run-break-expected.png:
  • platform/mac/fast/ruby/ruby-run-break-expected.txt:
  • platform/mac/fast/ruby/ruby-runs-expected.checksum:
  • platform/mac/fast/ruby/ruby-runs-expected.png:
  • platform/mac/fast/ruby/ruby-runs-expected.txt:
  • platform/mac/fast/ruby/ruby-runs-spans-expected.checksum:
  • platform/mac/fast/ruby/ruby-runs-spans-expected.png:
  • platform/mac/fast/ruby/ruby-runs-spans-expected.txt:
  • platform/mac/fast/ruby/ruby-trailing-expected.checksum:
  • platform/mac/fast/ruby/ruby-trailing-expected.png:
  • platform/mac/fast/ruby/ruby-trailing-expected.txt:
  • platform/mac/fast/ruby/rubyDOM-insert-rt-expected.checksum:
  • platform/mac/fast/ruby/rubyDOM-insert-rt-expected.png:
  • platform/mac/fast/ruby/rubyDOM-insert-rt-expected.txt:
  • platform/mac/fast/ruby/rubyDOM-insert-text1-expected.checksum:
  • platform/mac/fast/ruby/rubyDOM-insert-text1-expected.png:
  • platform/mac/fast/ruby/rubyDOM-insert-text1-expected.txt:
  • platform/mac/fast/ruby/rubyDOM-insert-text2-expected.checksum:
  • platform/mac/fast/ruby/rubyDOM-insert-text2-expected.png:
  • platform/mac/fast/ruby/rubyDOM-insert-text2-expected.txt:
  • platform/mac/fast/ruby/rubyDOM-insert-text3-expected.checksum:
  • platform/mac/fast/ruby/rubyDOM-insert-text3-expected.png:
  • platform/mac/fast/ruby/rubyDOM-insert-text3-expected.txt:
  • platform/mac/fast/ruby/rubyDOM-remove-rt1-expected.checksum:
  • platform/mac/fast/ruby/rubyDOM-remove-rt1-expected.png:
  • platform/mac/fast/ruby/rubyDOM-remove-rt1-expected.txt:
  • platform/mac/fast/ruby/rubyDOM-remove-rt2-expected.checksum:
  • platform/mac/fast/ruby/rubyDOM-remove-rt2-expected.png:
  • platform/mac/fast/ruby/rubyDOM-remove-rt2-expected.txt:
  • platform/mac/fast/ruby/rubyDOM-remove-text1-expected.checksum:
  • platform/mac/fast/ruby/rubyDOM-remove-text1-expected.png:
  • platform/mac/fast/ruby/rubyDOM-remove-text1-expected.txt:
Location:
trunk
Files:
8 added
50 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r82902 r82903  
     12011-04-04  Dan Bernstein  <mitz@apple.com>
     2
     3        Reviewed by Simon Fraser.
     4
     5        <rdar://problem/7709452> Implement Default Ruby Overhang Behavior
     6        https://bugs.webkit.org/show_bug.cgi?id=49334
     7
     8        * fast/ruby/overhang-horizontal-expected.checksum: Added.
     9        * fast/ruby/overhang-horizontal-expected.png: Added.
     10        * fast/ruby/overhang-horizontal-expected.txt: Added.
     11        * fast/ruby/overhang-horizontal.html: Added.
     12        * fast/ruby/overhang-vertical-expected.checksum: Added.
     13        * fast/ruby/overhang-vertical-expected.png: Added.
     14        * fast/ruby/overhang-vertical-expected.txt: Added.
     15        * fast/ruby/overhang-vertical.html: Added.
     16        * platform/mac/fast/blockflow/Kusa-Makura-background-canvas-expected.checksum:
     17        * platform/mac/fast/blockflow/Kusa-Makura-background-canvas-expected.png:
     18        * platform/mac/fast/blockflow/Kusa-Makura-background-canvas-expected.txt:
     19        * platform/mac/fast/blockflow/english-lr-text-expected.checksum:
     20        * platform/mac/fast/blockflow/english-lr-text-expected.png:
     21        * platform/mac/fast/ruby/ruby-beforeafter-expected.checksum:
     22        * platform/mac/fast/ruby/ruby-beforeafter-expected.png:
     23        * platform/mac/fast/ruby/ruby-beforeafter-expected.txt:
     24        * platform/mac/fast/ruby/ruby-length-expected.checksum:
     25        * platform/mac/fast/ruby/ruby-length-expected.png:
     26        * platform/mac/fast/ruby/ruby-length-expected.txt:
     27        * platform/mac/fast/ruby/ruby-run-break-expected.checksum:
     28        * platform/mac/fast/ruby/ruby-run-break-expected.png:
     29        * platform/mac/fast/ruby/ruby-run-break-expected.txt:
     30        * platform/mac/fast/ruby/ruby-runs-expected.checksum:
     31        * platform/mac/fast/ruby/ruby-runs-expected.png:
     32        * platform/mac/fast/ruby/ruby-runs-expected.txt:
     33        * platform/mac/fast/ruby/ruby-runs-spans-expected.checksum:
     34        * platform/mac/fast/ruby/ruby-runs-spans-expected.png:
     35        * platform/mac/fast/ruby/ruby-runs-spans-expected.txt:
     36        * platform/mac/fast/ruby/ruby-trailing-expected.checksum:
     37        * platform/mac/fast/ruby/ruby-trailing-expected.png:
     38        * platform/mac/fast/ruby/ruby-trailing-expected.txt:
     39        * platform/mac/fast/ruby/rubyDOM-insert-rt-expected.checksum:
     40        * platform/mac/fast/ruby/rubyDOM-insert-rt-expected.png:
     41        * platform/mac/fast/ruby/rubyDOM-insert-rt-expected.txt:
     42        * platform/mac/fast/ruby/rubyDOM-insert-text1-expected.checksum:
     43        * platform/mac/fast/ruby/rubyDOM-insert-text1-expected.png:
     44        * platform/mac/fast/ruby/rubyDOM-insert-text1-expected.txt:
     45        * platform/mac/fast/ruby/rubyDOM-insert-text2-expected.checksum:
     46        * platform/mac/fast/ruby/rubyDOM-insert-text2-expected.png:
     47        * platform/mac/fast/ruby/rubyDOM-insert-text2-expected.txt:
     48        * platform/mac/fast/ruby/rubyDOM-insert-text3-expected.checksum:
     49        * platform/mac/fast/ruby/rubyDOM-insert-text3-expected.png:
     50        * platform/mac/fast/ruby/rubyDOM-insert-text3-expected.txt:
     51        * platform/mac/fast/ruby/rubyDOM-remove-rt1-expected.checksum:
     52        * platform/mac/fast/ruby/rubyDOM-remove-rt1-expected.png:
     53        * platform/mac/fast/ruby/rubyDOM-remove-rt1-expected.txt:
     54        * platform/mac/fast/ruby/rubyDOM-remove-rt2-expected.checksum:
     55        * platform/mac/fast/ruby/rubyDOM-remove-rt2-expected.png:
     56        * platform/mac/fast/ruby/rubyDOM-remove-rt2-expected.txt:
     57        * platform/mac/fast/ruby/rubyDOM-remove-text1-expected.checksum:
     58        * platform/mac/fast/ruby/rubyDOM-remove-text1-expected.png:
     59        * platform/mac/fast/ruby/rubyDOM-remove-text1-expected.txt:
     60
    1612011-04-04  Adrienne Walker  <enne@google.com>
    262
  • trunk/LayoutTests/platform/mac/fast/blockflow/Kusa-Makura-background-canvas-expected.checksum

    r81921 r82903  
    1 1346e31f5fce203a66abad7bd79ff90b
     1de4c376a14a641f6f9787c7042e0d960
  • trunk/LayoutTests/platform/mac/fast/blockflow/Kusa-Makura-background-canvas-expected.txt

    r80015 r82903  
    1 layer at (0,0) size 4596x585
     1layer at (0,0) size 4592x585
    22  RenderView at (0,0) size 800x585
    3 layer at (-3796,0) size 4596x585 backgroundClip at (0,0) size 4596x585 clip at (0,0) size 4596x585 outlineClip at (0,0) size 4596x585
    4   RenderBlock {HTML} at (0,0) size 4596x585
    5     RenderBody {BODY} at (58,46) size 4480x493
     3layer at (-3792,0) size 4592x585 backgroundClip at (0,0) size 4592x585 clip at (0,0) size 4592x585 outlineClip at (0,0) size 4592x585
     4  RenderBlock {HTML} at (0,0) size 4592x585
     5    RenderBody {BODY} at (58,46) size 4476x493
    66      RenderBlock {H1} at (0,0) size 48x493
    77        RenderText {#text} at (5,0) size 37x65
     
    1010        RenderText {#text} at (4,0) size 28x97
    1111          text run at (4,0) width 97: "\x{590F}\x{76EE}\x{6F31}\x{77F3}"
    12       RenderBlock {DIV} at (124,0) size 4356x493
    13         RenderBlock (anonymous) at (0,0) size 2435x493
     12      RenderBlock {DIV} at (124,0) size 4352x493
     13        RenderBlock (anonymous) at (0,0) size 2431x493
    1414          RenderBR {BR} at (0,0) size 18x0
    1515          RenderBR {BR} at (18,0) size 18x0
     
    2121          RenderText {#text} at (106,0) size 18x17
    2222            text run at (106,0) width 17: "\x{3000}"
    23           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    24             RenderRubyRun (anonymous) at (103,16) size 24x37
     23          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     24            RenderRubyRun (anonymous) at (103,15) size 24x37
    2525              RenderRubyText {RT} at (-9,0) size 14x37
    2626                RenderText {#text} at (2,0) size 10x37
     
    3030                  RenderText {#text} at (3,1) size 18x35
    3131                    text run at (3,1) width 35: "\x{5C71}\x{8DEF}"
    32           RenderText {#text} at (106,53) size 18x210
    33             text run at (106,53) width 210: "\x{3092}\x{767B}\x{308A}\x{306A}\x{304C}\x{3089}\x{3001}\x{3053}\x{3046}\x{8003}\x{3048}\x{305F}\x{3002}"
    34           RenderBR {BR} at (106,262) size 18x1
     32          RenderText {#text} at (106,51) size 18x210
     33            text run at (106,51) width 210: "\x{3092}\x{767B}\x{308A}\x{306A}\x{304C}\x{3089}\x{3001}\x{3053}\x{3046}\x{8003}\x{3048}\x{305F}\x{3002}"
     34          RenderBR {BR} at (106,260) size 18x1
    3535          RenderText {#text} at (134,0) size 18x17
    3636            text run at (134,0) width 17: "\x{3000}"
     
    4646          RenderText {#text} at (134,33) size 18x65
    4747            text run at (134,33) width 65: "\x{306B}\x{50CD}\x{3051}\x{3070}"
    48           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    49             RenderRubyRun (anonymous) at (131,98) size 24x19
     48          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     49            RenderRubyRun (anonymous) at (131,97) size 24x19
    5050              RenderRubyText {RT} at (-9,0) size 14x19
    5151                RenderText {#text} at (2,0) size 10x19
     
    5555                  RenderText {#text} at (3,1) size 18x17
    5656                    text run at (3,1) width 17: "\x{89D2}"
    57           RenderText {#text} at (134,116) size 18x66
    58             text run at (134,116) width 65: "\x{304C}\x{7ACB}\x{3064}\x{3002}"
    59           RenderRuby (inline) {RUBY} at (0,0) size 18x29
    60             RenderRubyRun (anonymous) at (131,181) size 24x28
     57          RenderText {#text} at (134,114) size 18x66
     58            text run at (134,114) width 65: "\x{304C}\x{7ACB}\x{3064}\x{3002}"
     59          RenderRuby (inline) {RUBY} at (0,0) size 18x21
     60            RenderRubyRun (anonymous) at (131,175) size 24x28
    6161              RenderRubyText {RT} at (-9,0) size 14x28
    6262                RenderText {#text} at (2,0) size 10x28
     
    6666                  RenderText {#text} at (3,5) size 18x17
    6767                    text run at (3,5) width 17: "\x{60C5}"
    68           RenderText {#text} at (134,209) size 18x17
    69             text run at (134,209) width 17: "\x{306B}"
    70           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    71             RenderRubyRun (anonymous) at (131,225) size 24x19
     68          RenderText {#text} at (134,199) size 18x17
     69            text run at (134,199) width 17: "\x{306B}"
     70          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     71            RenderRubyRun (anonymous) at (131,214) size 24x19
    7272              RenderRubyText {RT} at (-9,0) size 14x19
    7373                RenderText {#text} at (2,0) size 10x19
     
    7777                  RenderText {#text} at (3,1) size 18x17
    7878                    text run at (3,1) width 17: "\x{68F9}"
    79           RenderText {#text} at (134,244) size 18x178
    80             text run at (134,244) width 178: "\x{3055}\x{305B}\x{3070}\x{6D41}\x{3055}\x{308C}\x{308B}\x{3002}\x{610F}\x{5730}\x{3092}"
    81           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    82             RenderRubyRun (anonymous) at (131,421) size 24x19
     79          RenderText {#text} at (134,232) size 18x178
     80            text run at (134,232) width 178: "\x{3055}\x{305B}\x{3070}\x{6D41}\x{3055}\x{308C}\x{308B}\x{3002}\x{610F}\x{5730}\x{3092}"
     81          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     82            RenderRubyRun (anonymous) at (131,408) size 24x19
    8383              RenderRubyText {RT} at (-9,0) size 14x19
    8484                RenderText {#text} at (2,0) size 10x19
     
    8888                  RenderText {#text} at (3,1) size 18x17
    8989                    text run at (3,1) width 17: "\x{901A}"
    90           RenderText {#text} at (134,440) size 18x33
    91             text run at (134,440) width 33: "\x{305B}\x{3070}"
    92           RenderRuby (inline) {RUBY} at (0,0) size 18x46
     90          RenderText {#text} at (134,426) size 18x33
     91            text run at (134,426) width 33: "\x{305B}\x{3070}"
     92          RenderRuby (inline) {RUBY} at (0,0) size 18x43
    9393            RenderRubyRun (anonymous) at (159,0) size 24x46
    9494              RenderRubyText {RT} at (-9,0) size 14x46
     
    9999                  RenderText {#text} at (3,3) size 18x40
    100100                    text run at (3,3) width 40: "\x{7AAE}\x{5C48}"
    101           RenderText {#text} at (162,46) size 18x258
    102             text run at (162,46) width 258: "\x{3060}\x{3002}\x{3068}\x{304B}\x{304F}\x{306B}\x{4EBA}\x{306E}\x{4E16}\x{306F}\x{4F4F}\x{307F}\x{306B}\x{304F}\x{3044}\x{3002}"
    103           RenderBR {BR} at (162,303) size 18x1
     101          RenderText {#text} at (162,43) size 18x258
     102            text run at (162,43) width 258: "\x{3060}\x{3002}\x{3068}\x{304B}\x{304F}\x{306B}\x{4EBA}\x{306E}\x{4E16}\x{306F}\x{4F4F}\x{307F}\x{306B}\x{304F}\x{3044}\x{3002}"
     103          RenderBR {BR} at (162,300) size 18x1
    104104          RenderText {#text} at (190,0) size 18x113
    105105            text run at (190,0) width 113: "\x{3000}\x{4F4F}\x{307F}\x{306B}\x{304F}\x{3055}\x{304C}"
    106           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    107             RenderRubyRun (anonymous) at (187,113) size 24x19
     106          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     107            RenderRubyRun (anonymous) at (187,112) size 24x19
    108108              RenderRubyText {RT} at (-9,0) size 14x19
    109109                RenderText {#text} at (2,0) size 10x19
     
    113113                  RenderText {#text} at (3,1) size 18x17
    114114                    text run at (3,1) width 17: "\x{9AD8}"
    115           RenderText {#text} at (190,131) size 46x487
    116             text run at (190,131) width 355: "\x{3058}\x{308B}\x{3068}\x{3001}\x{5B89}\x{3044}\x{6240}\x{3078}\x{5F15}\x{304D}\x{8D8A}\x{3057}\x{305F}\x{304F}\x{306A}\x{308B}\x{3002}\x{3069}\x{3053}\x{3078}\x{8D8A}\x{3057}"
     115          RenderText {#text} at (190,129) size 46x485
     116            text run at (190,129) width 355: "\x{3058}\x{308B}\x{3068}\x{3001}\x{5B89}\x{3044}\x{6240}\x{3078}\x{5F15}\x{304D}\x{8D8A}\x{3057}\x{305F}\x{304F}\x{306A}\x{308B}\x{3002}\x{3069}\x{3053}\x{3078}\x{8D8A}\x{3057}"
    117117            text run at (218,0) width 129: "\x{3066}\x{3082}\x{4F4F}\x{307F}\x{306B}\x{304F}\x{3044}\x{3068}"
    118           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    119             RenderRubyRun (anonymous) at (215,129) size 24x19
     118          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     119            RenderRubyRun (anonymous) at (215,128) size 24x19
    120120              RenderRubyText {RT} at (-9,0) size 14x19
    121121                RenderText {#text} at (2,0) size 10x19
     
    125125                  RenderText {#text} at (3,1) size 18x17
    126126                    text run at (3,1) width 17: "\x{609F}"
    127           RenderText {#text} at (218,147) size 18x163
    128             text run at (218,147) width 162: "\x{3063}\x{305F}\x{6642}\x{3001}\x{8A69}\x{304C}\x{751F}\x{308C}\x{3066}\x{3001}"
    129           RenderRuby (inline) {RUBY} at (0,0) size 18x18
    130             RenderRubyRun (anonymous) at (215,309) size 24x17
     127          RenderText {#text} at (218,145) size 18x163
     128            text run at (218,145) width 162: "\x{3063}\x{305F}\x{6642}\x{3001}\x{8A69}\x{304C}\x{751F}\x{308C}\x{3066}\x{3001}"
     129          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     130            RenderRubyRun (anonymous) at (215,307) size 24x17
    131131              RenderRubyText {RT} at (-9,0) size 14x17
    132132                RenderText {#text} at (2,3) size 10x10
     
    136136                  RenderText {#text} at (3,0) size 18x17
    137137                    text run at (3,0) width 17: "\x{753B}"
    138           RenderText {#text} at (218,326) size 18x81
    139             text run at (218,326) width 81: "\x{304C}\x{51FA}\x{6765}\x{308B}\x{3002}"
    140           RenderBR {BR} at (218,406) size 18x1
     138          RenderText {#text} at (218,324) size 18x81
     139            text run at (218,324) width 81: "\x{304C}\x{51FA}\x{6765}\x{308B}\x{3002}"
     140          RenderBR {BR} at (218,404) size 18x1
    141141          RenderText {#text} at (242,0) size 18x17
    142142            text run at (242,0) width 17: "\x{3000}"
     
    147147            text run at (242,64) width 419: "\x{3092}\x{4F5C}\x{3063}\x{305F}\x{3082}\x{306E}\x{306F}\x{795E}\x{3067}\x{3082}\x{306A}\x{3051}\x{308C}\x{3070}\x{9B3C}\x{3067}\x{3082}\x{306A}\x{3044}\x{3002}\x{3084}\x{306F}\x{308A}\x{5411}\x{3046}\x{4E09}"
    148148            text run at (270,0) width 17: "\x{8ED2}"
    149           RenderRuby (inline) {RUBY} at (0,0) size 18x47
    150             RenderRubyRun (anonymous) at (267,16) size 24x46
     149          RenderRuby (inline) {RUBY} at (0,0) size 18x41
     150            RenderRubyRun (anonymous) at (267,13) size 24x46
    151151              RenderRubyText {RT} at (-9,0) size 14x46
    152152                RenderText {#text} at (2,0) size 10x46
     
    156156                  RenderText {#text} at (3,3) size 18x40
    157157                    text run at (3,3) width 40: "\x{4E21}\x{96A3}"
    158           RenderText {#text} at (270,62) size 18x387
    159             text run at (270,62) width 387: "\x{308A}\x{306B}\x{3061}\x{3089}\x{3061}\x{3089}\x{3059}\x{308B}\x{305F}\x{3060}\x{306E}\x{4EBA}\x{3067}\x{3042}\x{308B}\x{3002}\x{305F}\x{3060}\x{306E}\x{4EBA}\x{304C}\x{4F5C}\x{3063}\x{305F}"
    160           RenderInline {STRONG} at (0,0) size 42x482
    161             RenderText {#text} at (270,448) size 42x482
    162               text run at (270,448) width 33: "\x{4EBA}\x{306E}"
     158          RenderText {#text} at (270,56) size 18x387
     159            text run at (270,56) width 387: "\x{308A}\x{306B}\x{3061}\x{3089}\x{3061}\x{3089}\x{3059}\x{308B}\x{305F}\x{3060}\x{306E}\x{4EBA}\x{3067}\x{3042}\x{308B}\x{3002}\x{305F}\x{3060}\x{306E}\x{4EBA}\x{304C}\x{4F5C}\x{3063}\x{305F}"
     160          RenderInline {STRONG} at (0,0) size 42x476
     161            RenderText {#text} at (270,442) size 42x476
     162              text run at (270,442) width 33: "\x{4EBA}\x{306E}"
    163163              text run at (294,0) width 17: "\x{4E16}"
    164164          RenderText {#text} at (294,16) size 18x371
     
    185185            text run at (366,0) width 468: "\x{3000}\x{8D8A}\x{3059}\x{4E8B}\x{306E}\x{306A}\x{3089}\x{306C}\x{4E16}\x{304C}\x{4F4F}\x{307F}\x{306B}\x{304F}\x{3051}\x{308C}\x{3070}\x{3001}\x{4F4F}\x{307F}\x{306B}\x{304F}\x{3044}\x{6240}\x{3092}\x{3069}\x{308C}\x{307B}\x{3069}"
    186186            text run at (394,0) width 33: "\x{304B}\x{3001}"
    187           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    188             RenderRubyRun (anonymous) at (391,32) size 24x37
     187          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     188            RenderRubyRun (anonymous) at (391,31) size 24x37
    189189              RenderRubyText {RT} at (-9,0) size 14x37
    190190                RenderText {#text} at (2,0) size 10x37
     
    194194                  RenderText {#text} at (3,1) size 18x35
    195195                    text run at (3,1) width 35: "\x{5BDB}\x{5BB9}"
    196           RenderText {#text} at (394,69) size 18x33
    197             text run at (394,69) width 33: "\x{3066}\x{3001}"
    198           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    199             RenderRubyRun (anonymous) at (391,101) size 24x19
     196          RenderText {#text} at (394,67) size 18x33
     197            text run at (394,67) width 33: "\x{3066}\x{3001}"
     198          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     199            RenderRubyRun (anonymous) at (391,98) size 24x19
    200200              RenderRubyText {RT} at (-9,0) size 14x19
    201201                RenderText {#text} at (2,0) size 10x19
     
    205205                  RenderText {#text} at (3,1) size 18x17
    206206                    text run at (3,1) width 17: "\x{675F}"
    207           RenderText {#text} at (394,120) size 18x17
    208             text run at (394,120) width 17: "\x{306E}"
    209           RenderRuby (inline) {RUBY} at (0,0) size 18x18
    210             RenderRubyRun (anonymous) at (391,137) size 24x17
     207          RenderText {#text} at (394,116) size 18x17
     208            text run at (394,116) width 17: "\x{306E}"
     209          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     210            RenderRubyRun (anonymous) at (391,133) size 24x17
    211211              RenderRubyText {RT} at (-9,0) size 14x17
    212212                RenderText {#text} at (2,3) size 10x10
     
    216216                  RenderText {#text} at (3,0) size 18x17
    217217                    text run at (3,0) width 17: "\x{9593}"
    218           RenderText {#text} at (394,153) size 46x492
    219             text run at (394,153) width 339: "\x{306E}\x{547D}\x{3092}\x{3001}\x{675F}\x{306E}\x{9593}\x{3067}\x{3082}\x{4F4F}\x{307F}\x{3088}\x{304F}\x{305B}\x{306D}\x{3070}\x{306A}\x{3089}\x{306C}\x{3002}\x{3053}"
     218          RenderText {#text} at (394,149) size 46x488
     219            text run at (394,149) width 339: "\x{306E}\x{547D}\x{3092}\x{3001}\x{675F}\x{306E}\x{9593}\x{3067}\x{3082}\x{4F4F}\x{307F}\x{3088}\x{304F}\x{305B}\x{306D}\x{3070}\x{306A}\x{3089}\x{306C}\x{3002}\x{3053}"
    220220            text run at (422,0) width 403: "\x{3053}\x{306B}\x{8A69}\x{4EBA}\x{3068}\x{3044}\x{3046}\x{5929}\x{8077}\x{304C}\x{51FA}\x{6765}\x{3066}\x{3001}\x{3053}\x{3053}\x{306B}\x{753B}\x{5BB6}\x{3068}\x{3044}\x{3046}\x{4F7F}\x{547D}\x{304C}"
    221           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    222             RenderRubyRun (anonymous) at (419,403) size 24x19
     221          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     222            RenderRubyRun (anonymous) at (419,402) size 24x19
    223223              RenderRubyText {RT} at (-9,0) size 14x19
    224224                RenderText {#text} at (2,0) size 10x19
     
    228228                  RenderText {#text} at (3,1) size 18x17
    229229                    text run at (3,1) width 17: "\x{964D}"
    230           RenderText {#text} at (422,421) size 46x487
    231             text run at (422,421) width 65: "\x{308B}\x{3002}\x{3042}\x{3089}"
     230          RenderText {#text} at (422,419) size 46x485
     231            text run at (422,419) width 65: "\x{308B}\x{3002}\x{3042}\x{3089}"
    232232            text run at (450,0) width 178: "\x{3086}\x{308B}\x{82B8}\x{8853}\x{306E}\x{58EB}\x{306F}\x{4EBA}\x{306E}\x{4E16}\x{3092}"
    233233          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     
    242242          RenderText {#text} at (450,210) size 18x210
    243243            text run at (450,210) width 210: "\x{306B}\x{3057}\x{3001}\x{4EBA}\x{306E}\x{5FC3}\x{3092}\x{8C4A}\x{304B}\x{306B}\x{3059}\x{308B}\x{304C}"
    244           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    245             RenderRubyRun (anonymous) at (447,420) size 24x19
     244          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     245            RenderRubyRun (anonymous) at (447,419) size 24x19
    246246              RenderRubyText {RT} at (-9,0) size 14x19
    247247                RenderText {#text} at (2,0) size 10x19
     
    251251                  RenderText {#text} at (3,1) size 18x17
    252252                    text run at (3,1) width 17: "\x{6545}"
    253           RenderText {#text} at (450,438) size 18x17
    254             text run at (450,438) width 17: "\x{306B}"
    255           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    256             RenderRubyRun (anonymous) at (447,455) size 24x19
     253          RenderText {#text} at (450,436) size 18x17
     254            text run at (450,436) width 17: "\x{306B}"
     255          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     256            RenderRubyRun (anonymous) at (447,452) size 24x19
    257257              RenderRubyText {RT} at (-9,0) size 14x19
    258258                RenderText {#text} at (2,0) size 10x19
     
    262262                  RenderText {#text} at (3,1) size 18x17
    263263                    text run at (3,1) width 17: "\x{5C0A}"
    264           RenderText {#text} at (450,473) size 42x490
    265             text run at (450,473) width 17: "\x{3068}"
     264          RenderText {#text} at (450,469) size 42x486
     265            text run at (450,469) width 17: "\x{3068}"
    266266            text run at (474,0) width 33: "\x{3044}\x{3002}"
    267267          RenderBR {BR} at (474,32) size 18x1
    268268          RenderText {#text} at (502,0) size 18x242
    269269            text run at (502,0) width 242: "\x{3000}\x{4F4F}\x{307F}\x{306B}\x{304F}\x{304D}\x{4E16}\x{304B}\x{3089}\x{3001}\x{4F4F}\x{307F}\x{306B}\x{304F}\x{304D}"
    270           RenderRuby (inline) {RUBY} at (0,0) size 18x29
    271             RenderRubyRun (anonymous) at (499,242) size 24x28
     270          RenderRuby (inline) {RUBY} at (0,0) size 18x21
     271            RenderRubyRun (anonymous) at (499,238) size 24x28
    272272              RenderRubyText {RT} at (-9,0) size 14x28
    273273                RenderText {#text} at (2,0) size 10x28
     
    277277                  RenderText {#text} at (3,5) size 18x17
    278278                    text run at (3,5) width 17: "\x{7169}"
    279           RenderText {#text} at (502,269) size 46x480
    280             text run at (502,269) width 210: "\x{3044}\x{3092}\x{5F15}\x{304D}\x{629C}\x{3044}\x{3066}\x{3001}\x{3042}\x{308A}\x{304C}\x{305F}\x{3044}"
    281             text run at (530,0) width 291: "\x{4E16}\x{754C}\x{3092}\x{307E}\x{306E}\x{3042}\x{305F}\x{308A}\x{306B}\x{5199}\x{3059}\x{306E}\x{304C}\x{8A69}\x{3067}\x{3042}\x{308B}\x{3001}"
    282           RenderRuby (inline) {RUBY} at (0,0) size 18x18
    283             RenderRubyRun (anonymous) at (527,290) size 24x17
     279          RenderText {#text} at (502,261) size 46x488
     280            text run at (502,261) width 226: "\x{3044}\x{3092}\x{5F15}\x{304D}\x{629C}\x{3044}\x{3066}\x{3001}\x{3042}\x{308A}\x{304C}\x{305F}\x{3044}\x{4E16}"
     281            text run at (530,0) width 274: "\x{754C}\x{3092}\x{307E}\x{306E}\x{3042}\x{305F}\x{308A}\x{306B}\x{5199}\x{3059}\x{306E}\x{304C}\x{8A69}\x{3067}\x{3042}\x{308B}\x{3001}"
     282          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     283            RenderRubyRun (anonymous) at (527,274) size 24x17
    284284              RenderRubyText {RT} at (-9,0) size 14x17
    285285                RenderText {#text} at (2,3) size 10x10
     
    289289                  RenderText {#text} at (3,0) size 18x17
    290290                    text run at (3,0) width 17: "\x{753B}"
    291           RenderText {#text} at (530,307) size 46x485
    292             text run at (530,307) width 178: "\x{3067}\x{3042}\x{308B}\x{3002}\x{3042}\x{308B}\x{306F}\x{97F3}\x{697D}\x{3068}\x{5F6B}"
    293             text run at (558,0) width 146: "\x{523B}\x{3067}\x{3042}\x{308B}\x{3002}\x{3053}\x{307E}\x{304B}\x{306B}"
    294           RenderRuby (inline) {RUBY} at (0,0) size 18x18
    295             RenderRubyRun (anonymous) at (555,145) size 24x17
     291          RenderText {#text} at (530,290) size 46x485
     292            text run at (530,290) width 194: "\x{3067}\x{3042}\x{308B}\x{3002}\x{3042}\x{308B}\x{306F}\x{97F3}\x{697D}\x{3068}\x{5F6B}\x{523B}"
     293            text run at (558,0) width 129: "\x{3067}\x{3042}\x{308B}\x{3002}\x{3053}\x{307E}\x{304B}\x{306B}"
     294          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     295            RenderRubyRun (anonymous) at (555,129) size 24x17
    296296              RenderRubyText {RT} at (-9,0) size 14x17
    297297                RenderText {#text} at (2,3) size 10x10
     
    301301                  RenderText {#text} at (3,0) size 18x17
    302302                    text run at (3,0) width 17: "\x{4E91}"
    303           RenderText {#text} at (558,162) size 46x485
    304             text run at (558,162) width 323: "\x{3048}\x{3070}\x{5199}\x{3055}\x{306A}\x{3044}\x{3067}\x{3082}\x{3088}\x{3044}\x{3002}\x{305F}\x{3060}\x{307E}\x{306E}\x{3042}\x{305F}\x{308A}\x{306B}\x{898B}"
    305             text run at (586,0) width 210: "\x{308C}\x{3070}\x{3001}\x{305D}\x{3053}\x{306B}\x{8A69}\x{3082}\x{751F}\x{304D}\x{3001}\x{6B4C}\x{3082}"
    306           RenderRuby (inline) {RUBY} at (0,0) size 18x18
    307             RenderRubyRun (anonymous) at (583,209) size 24x17
     303          RenderText {#text} at (558,145) size 46x485
     304            text run at (558,145) width 339: "\x{3048}\x{3070}\x{5199}\x{3055}\x{306A}\x{3044}\x{3067}\x{3082}\x{3088}\x{3044}\x{3002}\x{305F}\x{3060}\x{307E}\x{306E}\x{3042}\x{305F}\x{308A}\x{306B}\x{898B}\x{308C}"
     305            text run at (586,0) width 194: "\x{3070}\x{3001}\x{305D}\x{3053}\x{306B}\x{8A69}\x{3082}\x{751F}\x{304D}\x{3001}\x{6B4C}\x{3082}"
     306          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     307            RenderRubyRun (anonymous) at (583,193) size 24x17
    308308              RenderRubyText {RT} at (-9,0) size 14x17
    309309                RenderText {#text} at (2,3) size 10x10
     
    313313                  RenderText {#text} at (3,0) size 18x17
    314314                    text run at (3,0) width 17: "\x{6E67}"
    315           RenderText {#text} at (586,226) size 18x194
    316             text run at (586,226) width 194: "\x{304F}\x{3002}\x{7740}\x{60F3}\x{3092}\x{7D19}\x{306B}\x{843D}\x{3055}\x{306C}\x{3068}\x{3082}"
    317           RenderRuby (inline) {RUBY} at (0,0) size 18x47
    318             RenderRubyRun (anonymous) at (583,420) size 24x46
     315          RenderText {#text} at (586,210) size 18x194
     316            text run at (586,210) width 194: "\x{304F}\x{3002}\x{7740}\x{60F3}\x{3092}\x{7D19}\x{306B}\x{843D}\x{3055}\x{306C}\x{3068}\x{3082}"
     317          RenderRuby (inline) {RUBY} at (0,0) size 18x41
     318            RenderRubyRun (anonymous) at (583,401) size 24x46
    319319              RenderRubyText {RT} at (-9,0) size 14x46
    320320                RenderText {#text} at (2,0) size 10x46
     
    326326                  RenderText {#text} at (3,26) size 18x17
    327327                    text run at (3,26) width 17: "\x{93D8}"
    328           RenderText {#text} at (586,465) size 18x17
    329             text run at (586,465) width 17: "\x{306E}"
    330           RenderRuby (inline) {RUBY} at (0,0) size 18x19
    331             RenderRubyRun (anonymous) at (611,0) size 24x19
     328          RenderText {#text} at (586,443) size 18x17
     329            text run at (586,443) width 17: "\x{306E}"
     330          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     331            RenderRubyRun (anonymous) at (583,459) size 24x19
    332332              RenderRubyText {RT} at (-9,0) size 14x19
    333333                RenderText {#text} at (2,0) size 10x19
     
    337337                  RenderText {#text} at (3,1) size 18x17
    338338                    text run at (3,1) width 17: "\x{97F3}"
    339           RenderText {#text} at (614,19) size 18x17
    340             text run at (614,19) width 17: "\x{306F}"
    341           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    342             RenderRubyRun (anonymous) at (611,35) size 24x37
     339          RenderText {#text} at (586,476) size 18x17
     340            text run at (586,476) width 17: "\x{306F}"
     341          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     342            RenderRubyRun (anonymous) at (611,0) size 24x37
    343343              RenderRubyText {RT} at (-9,0) size 14x37
    344344                RenderText {#text} at (2,0) size 10x37
     
    348348                  RenderText {#text} at (3,1) size 18x35
    349349                    text run at (3,1) width 35: "\x{80F8}\x{88CF}"
    350           RenderText {#text} at (614,72) size 18x17
    351             text run at (614,72) width 17: "\x{306B}"
    352           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    353             RenderRubyRun (anonymous) at (611,88) size 24x19
     350          RenderText {#text} at (614,36) size 18x17
     351            text run at (614,36) width 17: "\x{306B}"
     352          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     353            RenderRubyRun (anonymous) at (611,51) size 24x19
    354354              RenderRubyText {RT} at (-9,0) size 14x19
    355355                RenderText {#text} at (2,0) size 10x19
     
    359359                  RenderText {#text} at (3,1) size 18x17
    360360                    text run at (3,1) width 17: "\x{8D77}"
    361           RenderText {#text} at (614,107) size 18x33
    362             text run at (614,107) width 33: "\x{308B}\x{3002}"
    363           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    364             RenderRubyRun (anonymous) at (611,139) size 24x37
     361          RenderText {#text} at (614,69) size 18x33
     362            text run at (614,69) width 33: "\x{308B}\x{3002}"
     363          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     364            RenderRubyRun (anonymous) at (611,100) size 24x37
    365365              RenderRubyText {RT} at (-9,0) size 14x37
    366366                RenderText {#text} at (2,0) size 10x37
     
    370370                  RenderText {#text} at (3,1) size 18x35
    371371                    text run at (3,1) width 35: "\x{4E39}\x{9752}"
    372           RenderText {#text} at (614,176) size 18x17
    373             text run at (614,176) width 17: "\x{306F}"
    374           RenderRuby (inline) {RUBY} at (0,0) size 18x34
    375             RenderRubyRun (anonymous) at (611,193) size 24x33
     372          RenderText {#text} at (614,136) size 18x17
     373            text run at (614,136) width 17: "\x{306F}"
     374          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     375            RenderRubyRun (anonymous) at (611,152) size 24x33
    376376              RenderRubyText {RT} at (-9,0) size 14x33
    377377                RenderText {#text} at (2,3) size 10x26
     
    381381                  RenderText {#text} at (3,0) size 18x33
    382382                    text run at (3,0) width 33: "\x{753B}\x{67B6}"
    383           RenderText {#text} at (614,225) size 18x66
    384             text run at (614,225) width 65: "\x{306B}\x{5411}\x{3063}\x{3066}"
    385           RenderRuby (inline) {RUBY} at (0,0) size 18x34
    386             RenderRubyRun (anonymous) at (611,290) size 24x33
     383          RenderText {#text} at (614,185) size 18x65
     384            text run at (614,185) width 65: "\x{306B}\x{5411}\x{3063}\x{3066}"
     385          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     386            RenderRubyRun (anonymous) at (611,250) size 24x33
    387387              RenderRubyText {RT} at (-9,0) size 14x33
    388388                RenderText {#text} at (2,0) size 10x33
     
    392392                  RenderText {#text} at (3,0) size 18x33
    393393                    text run at (3,0) width 33: "\x{5857}\x{62B9}"
    394           RenderText {#text} at (614,323) size 18x65
    395             text run at (614,323) width 65: "\x{305B}\x{3093}\x{3067}\x{3082}"
    396           RenderRuby (inline) {RUBY} at (0,0) size 18x34
    397             RenderRubyRun (anonymous) at (611,387) size 24x33
     394          RenderText {#text} at (614,282) size 18x66
     395            text run at (614,282) width 65: "\x{305B}\x{3093}\x{3067}\x{3082}"
     396          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     397            RenderRubyRun (anonymous) at (611,347) size 24x33
    398398              RenderRubyText {RT} at (-9,0) size 14x33
    399399                RenderText {#text} at (2,0) size 10x33
     
    403403                  RenderText {#text} at (3,0) size 18x33
    404404                    text run at (3,0) width 33: "\x{4E94}\x{5F69}"
    405           RenderText {#text} at (614,420) size 18x17
    406             text run at (614,420) width 17: "\x{306E}"
    407           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    408             RenderRubyRun (anonymous) at (611,437) size 24x37
     405          RenderText {#text} at (614,380) size 18x17
     406            text run at (614,380) width 17: "\x{306E}"
     407          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     408            RenderRubyRun (anonymous) at (611,395) size 24x37
    409409              RenderRubyText {RT} at (-9,0) size 14x37
    410410                RenderText {#text} at (2,0) size 10x37
     
    414414                  RenderText {#text} at (3,1) size 18x35
    415415                    text run at (3,1) width 35: "\x{7D62}\x{721B}"
    416           RenderText {#text} at (614,473) size 18x17
    417             text run at (614,473) width 17: "\x{306F}"
    418           RenderRuby (inline) {RUBY} at (0,0) size 18x28
    419             RenderRubyRun (anonymous) at (639,0) size 24x28
     416          RenderText {#text} at (614,431) size 18x17
     417            text run at (614,431) width 17: "\x{306F}"
     418          RenderRuby (inline) {RUBY} at (0,0) size 18x21
     419            RenderRubyRun (anonymous) at (611,444) size 24x28
    420420              RenderRubyText {RT} at (-9,0) size 14x28
    421421                RenderText {#text} at (2,0) size 10x28
     
    425425                  RenderText {#text} at (3,5) size 18x17
    426426                    text run at (3,5) width 17: "\x{81EA}"
    427           RenderText {#text} at (642,28) size 18x33
    428             text run at (642,28) width 33: "\x{304B}\x{3089}"
    429           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    430             RenderRubyRun (anonymous) at (639,60) size 24x37
     427          RenderText {#text} at (614,467) size 46x484
     428            text run at (614,467) width 17: "\x{304B}"
     429            text run at (642,0) width 17: "\x{3089}"
     430          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     431            RenderRubyRun (anonymous) at (639,15) size 24x37
    431432              RenderRubyText {RT} at (-9,0) size 14x37
    432433                RenderText {#text} at (2,0) size 10x37
     
    436437                  RenderText {#text} at (3,1) size 18x35
    437438                    text run at (3,1) width 35: "\x{5FC3}\x{773C}"
    438           RenderText {#text} at (642,97) size 18x259
    439             text run at (642,97) width 258: "\x{306B}\x{6620}\x{308B}\x{3002}\x{305F}\x{3060}\x{304A}\x{306E}\x{304C}\x{4F4F}\x{3080}\x{4E16}\x{3092}\x{3001}\x{304B}\x{304F}"
    440           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    441             RenderRubyRun (anonymous) at (639,355) size 24x19
     439          RenderText {#text} at (642,51) size 18x258
     440            text run at (642,51) width 258: "\x{306B}\x{6620}\x{308B}\x{3002}\x{305F}\x{3060}\x{304A}\x{306E}\x{304C}\x{4F4F}\x{3080}\x{4E16}\x{3092}\x{3001}\x{304B}\x{304F}"
     441          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     442            RenderRubyRun (anonymous) at (639,308) size 24x19
    442443              RenderRubyText {RT} at (-9,0) size 14x19
    443444                RenderText {#text} at (2,0) size 10x19
     
    447448                  RenderText {#text} at (3,1) size 18x17
    448449                    text run at (3,1) width 17: "\x{89B3}"
    449           RenderText {#text} at (642,374) size 18x65
    450             text run at (642,374) width 65: "\x{3058}\x{5F97}\x{3066}\x{3001}"
    451           RenderRuby (inline) {RUBY} at (0,0) size 18x73
    452             RenderRubyRun (anonymous) at (667,0) size 24x73
     450          RenderText {#text} at (642,325) size 18x66
     451            text run at (642,325) width 65: "\x{3058}\x{5F97}\x{3066}\x{3001}"
     452          RenderRuby (inline) {RUBY} at (0,0) size 18x72
     453            RenderRubyRun (anonymous) at (639,389) size 24x73
    453454              RenderRubyText {RT} at (-9,0) size 14x73
    454455                RenderText {#text} at (2,0) size 10x73
     
    458459                  RenderText {#text} at (3,1) size 18x71
    459460                    text run at (3,1) width 71: "\x{970A}\x{53F0}\x{65B9}\x{5BF8}"
    460           RenderText {#text} at (670,73) size 18x81
    461             text run at (670,73) width 81: "\x{306E}\x{30AB}\x{30E1}\x{30E9}\x{306B}"
    462           RenderRuby (inline) {RUBY} at (0,0) size 18x74
    463             RenderRubyRun (anonymous) at (667,154) size 24x73
     461          RenderText {#text} at (642,461) size 46x478
     462            text run at (642,461) width 17: "\x{306E}"
     463            text run at (670,0) width 65: "\x{30AB}\x{30E1}\x{30E9}\x{306B}"
     464          RenderRuby (inline) {RUBY} at (0,0) size 18x72
     465            RenderRubyRun (anonymous) at (667,63) size 24x73
    464466              RenderRubyText {RT} at (-9,0) size 14x73
    465467                RenderText {#text} at (2,0) size 10x73
     
    469471                  RenderText {#text} at (3,1) size 18x71
    470472                    text run at (3,1) width 71: "\x{6F86}\x{5B63}\x{6EB7}\x{6FC1}"
    471           RenderText {#text} at (670,226) size 18x211
    472             text run at (670,226) width 210: "\x{306E}\x{4FD7}\x{754C}\x{3092}\x{6E05}\x{304F}\x{3046}\x{3089}\x{3089}\x{304B}\x{306B}\x{53CE}\x{3081}"
    473           RenderRuby (inline) {RUBY} at (0,0) size 18x18
    474             RenderRubyRun (anonymous) at (667,436) size 24x17
     473          RenderText {#text} at (670,135) size 18x210
     474            text run at (670,135) width 210: "\x{306E}\x{4FD7}\x{754C}\x{3092}\x{6E05}\x{304F}\x{3046}\x{3089}\x{3089}\x{304B}\x{306B}\x{53CE}\x{3081}"
     475          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     476            RenderRubyRun (anonymous) at (667,345) size 24x17
    475477              RenderRubyText {RT} at (-9,0) size 14x17
    476478                RenderText {#text} at (2,3) size 10x10
     
    480482                  RenderText {#text} at (3,0) size 18x17
    481483                    text run at (3,0) width 17: "\x{5F97}"
    482           RenderText {#text} at (670,453) size 18x33
    483             text run at (670,453) width 33: "\x{308C}\x{3070}"
    484           RenderRuby (inline) {RUBY} at (0,0) size 18x17
    485             RenderRubyRun (anonymous) at (695,0) size 24x17
     484          RenderText {#text} at (670,361) size 18x34
     485            text run at (670,361) width 33: "\x{308C}\x{3070}"
     486          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     487            RenderRubyRun (anonymous) at (667,394) size 24x17
    486488              RenderRubyText {RT} at (-9,0) size 14x17
    487489                RenderText {#text} at (2,3) size 10x10
     
    491493                  RenderText {#text} at (3,0) size 18x17
    492494                    text run at (3,0) width 17: "\x{8DB3}"
    493           RenderText {#text} at (698,17) size 18x97
    494             text run at (698,17) width 97: "\x{308B}\x{3002}\x{3053}\x{306E}\x{6545}\x{306B}"
    495           RenderRuby (inline) {RUBY} at (0,0) size 18x34
    496             RenderRubyRun (anonymous) at (695,114) size 24x33
     495          RenderText {#text} at (670,411) size 46x492
     496            text run at (670,411) width 81: "\x{308B}\x{3002}\x{3053}\x{306E}\x{6545}"
     497            text run at (698,0) width 17: "\x{306B}"
     498          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     499            RenderRubyRun (anonymous) at (695,16) size 24x33
    497500              RenderRubyText {RT} at (-9,0) size 14x33
    498501                RenderText {#text} at (2,0) size 10x33
     
    502505                  RenderText {#text} at (3,0) size 18x33
    503506                    text run at (3,0) width 33: "\x{7121}\x{58F0}"
    504           RenderText {#text} at (698,146) size 18x162
    505             text run at (698,146) width 162: "\x{306E}\x{8A69}\x{4EBA}\x{306B}\x{306F}\x{4E00}\x{53E5}\x{306A}\x{304F}\x{3001}"
    506           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    507             RenderRubyRun (anonymous) at (695,308) size 24x37
     507          RenderText {#text} at (698,49) size 18x162
     508            text run at (698,49) width 162: "\x{306E}\x{8A69}\x{4EBA}\x{306B}\x{306F}\x{4E00}\x{53E5}\x{306A}\x{304F}\x{3001}"
     509          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     510            RenderRubyRun (anonymous) at (695,209) size 24x37
    508511              RenderRubyText {RT} at (-9,0) size 14x37
    509512                RenderText {#text} at (2,0) size 10x37
     
    513516                  RenderText {#text} at (3,1) size 18x35
    514517                    text run at (3,1) width 35: "\x{7121}\x{8272}"
    515           RenderText {#text} at (698,344) size 18x82
    516             text run at (698,344) width 81: "\x{306E}\x{753B}\x{5BB6}\x{306B}\x{306F}"
    517           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    518             RenderRubyRun (anonymous) at (695,425) size 24x37
     518          RenderText {#text} at (698,245) size 18x81
     519            text run at (698,245) width 81: "\x{306E}\x{753B}\x{5BB6}\x{306B}\x{306F}"
     520          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     521            RenderRubyRun (anonymous) at (695,325) size 24x37
    519522              RenderRubyText {RT} at (-9,0) size 14x37
    520523                RenderText {#text} at (2,0) size 10x37
     
    524527                  RenderText {#text} at (3,1) size 18x35
    525528                    text run at (3,1) width 35: "\x{5C3A}\x{7E11}"
    526           RenderText {#text} at (698,462) size 46x479
    527             text run at (698,462) width 17: "\x{306A}"
    528             text run at (726,0) width 81: "\x{304D}\x{3082}\x{3001}\x{304B}\x{304F}"
    529           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    530             RenderRubyRun (anonymous) at (723,81) size 24x37
     529          RenderText {#text} at (698,360) size 18x98
     530            text run at (698,360) width 97: "\x{306A}\x{304D}\x{3082}\x{3001}\x{304B}\x{304F}"
     531          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     532            RenderRubyRun (anonymous) at (723,0) size 24x37
    531533              RenderRubyText {RT} at (-9,0) size 14x37
    532534                RenderText {#text} at (2,0) size 10x37
     
    536538                  RenderText {#text} at (3,1) size 18x35
    537539                    text run at (3,1) width 35: "\x{4EBA}\x{4E16}"
    538           RenderText {#text} at (726,117) size 18x227
    539             text run at (726,117) width 226: "\x{3092}\x{89B3}\x{3058}\x{5F97}\x{308B}\x{306E}\x{70B9}\x{306B}\x{304A}\x{3044}\x{3066}\x{3001}\x{304B}\x{304F}"
    540           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    541             RenderRubyRun (anonymous) at (723,343) size 24x37
     540          RenderText {#text} at (726,36) size 18x226
     541            text run at (726,36) width 226: "\x{3092}\x{89B3}\x{3058}\x{5F97}\x{308B}\x{306E}\x{70B9}\x{306B}\x{304A}\x{3044}\x{3066}\x{3001}\x{304B}\x{304F}"
     542          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     543            RenderRubyRun (anonymous) at (723,261) size 24x37
    542544              RenderRubyText {RT} at (-9,0) size 14x37
    543545                RenderText {#text} at (2,0) size 10x37
     
    547549                  RenderText {#text} at (3,1) size 18x35
    548550                    text run at (3,1) width 35: "\x{7169}\x{60A9}"
    549           RenderText {#text} at (726,380) size 18x17
    550             text run at (726,380) width 17: "\x{3092}"
    551           RenderRuby (inline) {RUBY} at (0,0) size 18x34
    552             RenderRubyRun (anonymous) at (723,396) size 24x33
     551          RenderText {#text} at (726,296) size 18x17
     552            text run at (726,296) width 17: "\x{3092}"
     553          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     554            RenderRubyRun (anonymous) at (723,313) size 24x33
    553555              RenderRubyText {RT} at (-9,0) size 14x33
    554556                RenderText {#text} at (2,0) size 10x33
     
    558560                  RenderText {#text} at (3,0) size 18x33
    559561                    text run at (3,0) width 33: "\x{89E3}\x{8131}"
    560           RenderText {#text} at (726,429) size 46x478
    561             text run at (726,429) width 49: "\x{3059}\x{308B}\x{306E}"
    562             text run at (754,0) width 129: "\x{70B9}\x{306B}\x{304A}\x{3044}\x{3066}\x{3001}\x{304B}\x{304F}"
    563           RenderRuby (inline) {RUBY} at (0,0) size 18x74
    564             RenderRubyRun (anonymous) at (751,129) size 24x73
     562          RenderText {#text} at (726,345) size 46x491
     563            text run at (726,345) width 146: "\x{3059}\x{308B}\x{306E}\x{70B9}\x{306B}\x{304A}\x{3044}\x{3066}\x{3001}"
     564            text run at (754,0) width 33: "\x{304B}\x{304F}"
     565          RenderRuby (inline) {RUBY} at (0,0) size 18x66
     566            RenderRubyRun (anonymous) at (751,28) size 24x73
    565567              RenderRubyText {RT} at (-9,0) size 14x73
    566568                RenderText {#text} at (2,0) size 10x73
     
    570572                  RenderText {#text} at (3,4) size 18x65
    571573                    text run at (3,4) width 65: "\x{6E05}\x{6D44}\x{754C}"
    572           RenderText {#text} at (754,201) size 18x18
    573             text run at (754,201) width 17: "\x{306B}"
    574           RenderRuby (inline) {RUBY} at (0,0) size 18x56
    575             RenderRubyRun (anonymous) at (751,218) size 24x55
     574          RenderText {#text} at (754,97) size 18x17
     575            text run at (754,97) width 17: "\x{306B}"
     576          RenderRuby (inline) {RUBY} at (0,0) size 18x48
     577            RenderRubyRun (anonymous) at (751,109) size 24x55
    576578              RenderRubyText {RT} at (-9,0) size 14x55
    577579                RenderText {#text} at (2,0) size 10x55
     
    581583                  RenderText {#text} at (3,5) size 18x44
    582584                    text run at (3,5) width 44: "\x{51FA}\x{5165}"
    583           RenderText {#text} at (754,273) size 46x483
    584             text run at (754,273) width 210: "\x{3057}\x{5F97}\x{308B}\x{306E}\x{70B9}\x{306B}\x{304A}\x{3044}\x{3066}\x{3001}\x{307E}\x{305F}\x{3053}"
    585             text run at (782,0) width 17: "\x{306E}"
     585          RenderText {#text} at (754,160) size 18x226
     586            text run at (754,160) width 226: "\x{3057}\x{5F97}\x{308B}\x{306E}\x{70B9}\x{306B}\x{304A}\x{3044}\x{3066}\x{3001}\x{307E}\x{305F}\x{3053}\x{306E}"
    586587          RenderRuby (inline) {RUBY} at (0,0) size 18x66
    587             RenderRubyRun (anonymous) at (779,16) size 24x65
     588            RenderRubyRun (anonymous) at (751,386) size 24x65
    588589              RenderRubyText {RT} at (-9,0) size 14x65
    589590                RenderText {#text} at (2,1) size 10x62
     
    593594                  RenderText {#text} at (3,0) size 18x65
    594595                    text run at (3,0) width 65: "\x{4E0D}\x{540C}\x{4E0D}\x{4E8C}"
    595           RenderText {#text} at (782,81) size 18x17
    596             text run at (782,81) width 17: "\x{306E}"
    597           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    598             RenderRubyRun (anonymous) at (779,97) size 24x37
     596          RenderText {#text} at (754,450) size 18x18
     597            text run at (754,450) width 17: "\x{306E}"
     598          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     599            RenderRubyRun (anonymous) at (779,0) size 24x37
    599600              RenderRubyText {RT} at (-9,0) size 14x37
    600601                RenderText {#text} at (2,0) size 10x37
     
    604605                  RenderText {#text} at (3,1) size 18x35
    605606                    text run at (3,1) width 35: "\x{4E7E}\x{5764}"
    606           RenderText {#text} at (782,134) size 18x17
    607             text run at (782,134) width 17: "\x{3092}"
    608           RenderRuby (inline) {RUBY} at (0,0) size 18x47
    609             RenderRubyRun (anonymous) at (779,150) size 24x46
     607          RenderText {#text} at (782,36) size 18x17
     608            text run at (782,36) width 17: "\x{3092}"
     609          RenderRuby (inline) {RUBY} at (0,0) size 18x41
     610            RenderRubyRun (anonymous) at (779,49) size 24x46
    610611              RenderRubyText {RT} at (-9,0) size 14x46
    611612                RenderText {#text} at (2,0) size 10x46
     
    615616                  RenderText {#text} at (3,3) size 18x40
    616617                    text run at (3,3) width 40: "\x{5EFA}\x{7ACB}"
    617           RenderText {#text} at (782,196) size 18x162
    618             text run at (782,196) width 162: "\x{3057}\x{5F97}\x{308B}\x{306E}\x{70B9}\x{306B}\x{304A}\x{3044}\x{3066}\x{3001}"
     618          RenderText {#text} at (782,92) size 18x162
     619            text run at (782,92) width 162: "\x{3057}\x{5F97}\x{308B}\x{306E}\x{70B9}\x{306B}\x{304A}\x{3044}\x{3066}\x{3001}"
    619620          RenderRuby (inline) {RUBY} at (0,0) size 18x66
    620             RenderRubyRun (anonymous) at (779,357) size 24x65
     621            RenderRubyRun (anonymous) at (779,253) size 24x65
    621622              RenderRubyText {RT} at (-9,0) size 14x65
    622623                RenderText {#text} at (2,1) size 10x62
     
    626627                  RenderText {#text} at (3,0) size 18x65
    627628                    text run at (3,0) width 65: "\x{6211}\x{5229}\x{79C1}\x{617E}"
    628           RenderText {#text} at (782,422) size 18x17
    629             text run at (782,422) width 17: "\x{306E}"
    630           RenderRuby (inline) {RUBY} at (0,0) size 18x34
    631             RenderRubyRun (anonymous) at (779,439) size 24x33
     629          RenderText {#text} at (782,318) size 18x17
     630            text run at (782,318) width 17: "\x{306E}"
     631          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     632            RenderRubyRun (anonymous) at (779,334) size 24x33
    632633              RenderRubyText {RT} at (-9,0) size 14x33
    633634                RenderText {#text} at (2,0) size 10x33
     
    637638                  RenderText {#text} at (3,0) size 18x33
    638639                    text run at (3,0) width 33: "\x{898A}\x{7D46}"
    639           RenderText {#text} at (782,471) size 18x17
    640             text run at (782,471) width 17: "\x{3092}"
    641           RenderRuby (inline) {RUBY} at (0,0) size 18x37
    642             RenderRubyRun (anonymous) at (807,0) size 24x37
     640          RenderText {#text} at (782,367) size 18x17
     641            text run at (782,367) width 17: "\x{3092}"
     642          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     643            RenderRubyRun (anonymous) at (779,382) size 24x37
    643644              RenderRubyText {RT} at (-9,0) size 14x37
    644645                RenderText {#text} at (2,0) size 10x37
     
    648649                  RenderText {#text} at (3,1) size 18x35
    649650                    text run at (3,1) width 35: "\x{6383}\x{8569}"
    650           RenderText {#text} at (810,37) size 18x178
    651             text run at (810,37) width 178: "\x{3059}\x{308B}\x{306E}\x{70B9}\x{306B}\x{304A}\x{3044}\x{3066}\x{3001}\x{2015}\x{2015}"
    652           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    653             RenderRubyRun (anonymous) at (807,214) size 24x37
     651          RenderText {#text} at (782,418) size 46x483
     652            text run at (782,418) width 65: "\x{3059}\x{308B}\x{306E}\x{70B9}"
     653            text run at (810,0) width 113: "\x{306B}\x{304A}\x{3044}\x{3066}\x{3001}\x{2015}\x{2015}"
     654          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     655            RenderRubyRun (anonymous) at (807,112) size 24x37
    654656              RenderRubyText {RT} at (-9,0) size 14x37
    655657                RenderText {#text} at (2,0) size 10x37
     
    659661                  RenderText {#text} at (3,1) size 18x35
    660662                    text run at (3,1) width 35: "\x{5343}\x{91D1}"
    661           RenderText {#text} at (810,251) size 18x97
    662             text run at (810,251) width 97: "\x{306E}\x{5B50}\x{3088}\x{308A}\x{3082}\x{3001}"
    663           RenderRuby (inline) {RUBY} at (0,0) size 18x47
    664             RenderRubyRun (anonymous) at (807,348) size 24x46
     663          RenderText {#text} at (810,147) size 18x98
     664            text run at (810,147) width 97: "\x{306E}\x{5B50}\x{3088}\x{308A}\x{3082}\x{3001}"
     665          RenderRuby (inline) {RUBY} at (0,0) size 18x41
     666            RenderRubyRun (anonymous) at (807,241) size 24x46
    665667              RenderRubyText {RT} at (-9,0) size 14x46
    666668                RenderText {#text} at (2,0) size 10x46
     
    670672                  RenderText {#text} at (3,3) size 18x40
    671673                    text run at (3,3) width 40: "\x{4E07}\x{4E57}"
    672           RenderText {#text} at (810,393) size 46x491
    673             text run at (810,393) width 97: "\x{306E}\x{541B}\x{3088}\x{308A}\x{3082}\x{3001}"
    674             text run at (838,0) width 113: "\x{3042}\x{3089}\x{3086}\x{308B}\x{4FD7}\x{754C}\x{306E}"
    675           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    676             RenderRubyRun (anonymous) at (835,113) size 24x37
     674          RenderText {#text} at (810,284) size 46x478
     675            text run at (810,284) width 194: "\x{306E}\x{541B}\x{3088}\x{308A}\x{3082}\x{3001}\x{3042}\x{3089}\x{3086}\x{308B}\x{4FD7}\x{754C}"
     676            text run at (838,0) width 17: "\x{306E}"
     677          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     678            RenderRubyRun (anonymous) at (835,15) size 24x37
    677679              RenderRubyText {RT} at (-9,0) size 14x37
    678680                RenderText {#text} at (2,0) size 10x37
     
    682684                  RenderText {#text} at (3,1) size 18x35
    683685                    text run at (3,1) width 35: "\x{5BF5}\x{5150}"
    684           RenderText {#text} at (838,149) size 18x146
    685             text run at (838,149) width 146: "\x{3088}\x{308A}\x{3082}\x{5E78}\x{798F}\x{3067}\x{3042}\x{308B}\x{3002}"
    686           RenderBR {BR} at (838,294) size 18x1
     686          RenderText {#text} at (838,51) size 18x146
     687            text run at (838,51) width 146: "\x{3088}\x{308A}\x{3082}\x{5E78}\x{798F}\x{3067}\x{3042}\x{308B}\x{3002}"
     688          RenderBR {BR} at (838,196) size 18x1
    687689          RenderText {#text} at (866,0) size 18x274
    688690            text run at (866,0) width 274: "\x{3000}\x{4E16}\x{306B}\x{4F4F}\x{3080}\x{3053}\x{3068}\x{4E8C}\x{5341}\x{5E74}\x{306B}\x{3057}\x{3066}\x{3001}\x{4F4F}\x{3080}\x{306B}"
     
    699701            text run at (866,306) width 178: "\x{3042}\x{308B}\x{4E16}\x{3068}\x{77E5}\x{3063}\x{305F}\x{3002}\x{4E8C}\x{5341}\x{4E94}"
    700702            text run at (894,0) width 113: "\x{5E74}\x{306B}\x{3057}\x{3066}\x{660E}\x{6697}\x{306F}"
    701           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    702             RenderRubyRun (anonymous) at (891,113) size 24x37
     703          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     704            RenderRubyRun (anonymous) at (891,112) size 24x37
    703705              RenderRubyText {RT} at (-9,0) size 14x37
    704706                RenderText {#text} at (2,0) size 10x37
     
    708710                  RenderText {#text} at (3,1) size 18x35
    709711                    text run at (3,1) width 35: "\x{8868}\x{88CF}"
    710           RenderText {#text} at (894,149) size 46x489
    711             text run at (894,149) width 339: "\x{306E}\x{3054}\x{3068}\x{304F}\x{3001}\x{65E5}\x{306E}\x{3042}\x{305F}\x{308B}\x{6240}\x{306B}\x{306F}\x{304D}\x{3063}\x{3068}\x{5F71}\x{304C}\x{3055}\x{3059}\x{3068}"
     712          RenderText {#text} at (894,147) size 46x487
     713            text run at (894,147) width 339: "\x{306E}\x{3054}\x{3068}\x{304F}\x{3001}\x{65E5}\x{306E}\x{3042}\x{305F}\x{308B}\x{6240}\x{306B}\x{306F}\x{304D}\x{3063}\x{3068}\x{5F71}\x{304C}\x{3055}\x{3059}\x{3068}"
    712714            text run at (922,0) width 113: "\x{609F}\x{3063}\x{305F}\x{3002}\x{4E09}\x{5341}\x{306E}"
    713           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    714             RenderRubyRun (anonymous) at (919,113) size 24x37
     715          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     716            RenderRubyRun (anonymous) at (919,112) size 24x37
    715717              RenderRubyText {RT} at (-9,0) size 14x37
    716718                RenderText {#text} at (2,0) size 10x37
     
    720722                  RenderText {#text} at (3,1) size 18x35
    721723                    text run at (3,1) width 35: "\x{4ECA}\x{65E5}"
    722           RenderText {#text} at (922,149) size 18x291
    723             text run at (922,149) width 290: "\x{306F}\x{3053}\x{3046}\x{601D}\x{3046}\x{3066}\x{3044}\x{308B}\x{3002}\x{2015}\x{2015}\x{559C}\x{3073}\x{306E}\x{6DF1}\x{304D}\x{3068}\x{304D}"
    724           RenderRuby (inline) {RUBY} at (0,0) size 18x29
    725             RenderRubyRun (anonymous) at (919,440) size 24x28
     724          RenderText {#text} at (922,147) size 18x291
     725            text run at (922,147) width 290: "\x{306F}\x{3053}\x{3046}\x{601D}\x{3046}\x{3066}\x{3044}\x{308B}\x{3002}\x{2015}\x{2015}\x{559C}\x{3073}\x{306E}\x{6DF1}\x{304D}\x{3068}\x{304D}"
     726          RenderRuby (inline) {RUBY} at (0,0) size 18x21
     727            RenderRubyRun (anonymous) at (919,434) size 24x28
    726728              RenderRubyText {RT} at (-9,0) size 14x28
    727729                RenderText {#text} at (2,0) size 10x28
     
    731733                  RenderText {#text} at (3,5) size 18x17
    732734                    text run at (3,5) width 17: "\x{6182}"
    733           RenderText {#text} at (922,467) size 46x484
    734             text run at (922,467) width 17: "\x{3044}"
    735             text run at (950,0) width 97: "\x{3088}\x{3044}\x{3088}\x{6DF1}\x{304F}\x{3001}"
    736           RenderRuby (inline) {RUBY} at (0,0) size 18x29
    737             RenderRubyRun (anonymous) at (947,97) size 24x28
     735          RenderText {#text} at (922,457) size 46x490
     736            text run at (922,457) width 33: "\x{3044}\x{3088}"
     737            text run at (950,0) width 81: "\x{3044}\x{3088}\x{6DF1}\x{304F}\x{3001}"
     738          RenderRuby (inline) {RUBY} at (0,0) size 18x21
     739            RenderRubyRun (anonymous) at (947,77) size 24x28
    738740              RenderRubyText {RT} at (-9,0) size 14x28
    739741                RenderText {#text} at (2,0) size 10x28
     
    743745                  RenderText {#text} at (3,5) size 18x17
    744746                    text run at (3,5) width 17: "\x{697D}"
    745           RenderText {#text} at (950,124) size 46x480
    746             text run at (950,124) width 355: "\x{307F}\x{306E}\x{5927}\x{3044}\x{306A}\x{308B}\x{307B}\x{3069}\x{82E6}\x{3057}\x{307F}\x{3082}\x{5927}\x{304D}\x{3044}\x{3002}\x{3053}\x{308C}\x{3092}\x{5207}\x{308A}\x{653E}"
    747             text run at (978,0) width 194: "\x{305D}\x{3046}\x{3068}\x{3059}\x{308B}\x{3068}\x{8EAB}\x{304C}\x{6301}\x{3066}\x{306C}\x{3002}"
    748           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    749             RenderRubyRun (anonymous) at (975,193) size 24x19
     747          RenderText {#text} at (950,100) size 46x488
     748            text run at (950,100) width 387: "\x{307F}\x{306E}\x{5927}\x{3044}\x{306A}\x{308B}\x{307B}\x{3069}\x{82E6}\x{3057}\x{307F}\x{3082}\x{5927}\x{304D}\x{3044}\x{3002}\x{3053}\x{308C}\x{3092}\x{5207}\x{308A}\x{653E}\x{305D}\x{3046}"
     749            text run at (978,0) width 162: "\x{3068}\x{3059}\x{308B}\x{3068}\x{8EAB}\x{304C}\x{6301}\x{3066}\x{306C}\x{3002}"
     750          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     751            RenderRubyRun (anonymous) at (975,160) size 24x19
    750752              RenderRubyText {RT} at (-9,0) size 14x19
    751753                RenderText {#text} at (2,0) size 10x19
     
    755757                  RenderText {#text} at (3,1) size 18x17
    756758                    text run at (3,1) width 17: "\x{7247}"
    757           RenderText {#text} at (978,212) size 46x487
    758             text run at (978,212) width 274: "\x{3065}\x{3051}\x{3088}\x{3046}\x{3068}\x{3059}\x{308C}\x{3070}\x{4E16}\x{304C}\x{7ACB}\x{305F}\x{306C}\x{3002}\x{91D1}\x{306F}\x{5927}"
    759             text run at (1006,0) width 146: "\x{4E8B}\x{3060}\x{3001}\x{5927}\x{4E8B}\x{306A}\x{3082}\x{306E}\x{304C}"
    760           RenderRuby (inline) {RUBY} at (0,0) size 18x18
    761             RenderRubyRun (anonymous) at (1003,145) size 24x17
     759          RenderText {#text} at (978,178) size 46x469
     760            text run at (978,178) width 291: "\x{3065}\x{3051}\x{3088}\x{3046}\x{3068}\x{3059}\x{308C}\x{3070}\x{4E16}\x{304C}\x{7ACB}\x{305F}\x{306C}\x{3002}\x{91D1}\x{306F}\x{5927}\x{4E8B}"
     761            text run at (1006,0) width 129: "\x{3060}\x{3001}\x{5927}\x{4E8B}\x{306A}\x{3082}\x{306E}\x{304C}"
     762          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     763            RenderRubyRun (anonymous) at (1003,129) size 24x17
    762764              RenderRubyText {RT} at (-9,0) size 14x17
    763765                RenderText {#text} at (2,3) size 10x10
     
    767769                  RenderText {#text} at (3,0) size 18x17
    768770                    text run at (3,0) width 17: "\x{6B96}"
    769           RenderText {#text} at (1006,162) size 18x49
    770             text run at (1006,162) width 49: "\x{3048}\x{308C}\x{3070}"
    771           RenderRuby (inline) {RUBY} at (0,0) size 18x18
    772             RenderRubyRun (anonymous) at (1003,210) size 24x17
     771          RenderText {#text} at (1006,145) size 18x50
     772            text run at (1006,145) width 49: "\x{3048}\x{308C}\x{3070}"
     773          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     774            RenderRubyRun (anonymous) at (1003,194) size 24x17
    773775              RenderRubyText {RT} at (-9,0) size 14x17
    774776                RenderText {#text} at (2,3) size 10x10
     
    778780                  RenderText {#text} at (3,0) size 18x17
    779781                    text run at (3,0) width 17: "\x{5BDD}"
    780           RenderText {#text} at (1006,227) size 18x17
    781             text run at (1006,227) width 17: "\x{308B}"
    782           RenderRuby (inline) {RUBY} at (0,0) size 18x18
    783             RenderRubyRun (anonymous) at (1003,243) size 24x17
     782          RenderText {#text} at (1006,211) size 18x17
     783            text run at (1006,211) width 17: "\x{308B}"
     784          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     785            RenderRubyRun (anonymous) at (1003,227) size 24x17
    784786              RenderRubyText {RT} at (-9,0) size 14x17
    785787                RenderText {#text} at (2,3) size 10x10
     
    789791                  RenderText {#text} at (3,0) size 18x17
    790792                    text run at (3,0) width 17: "\x{9593}"
    791           RenderText {#text} at (1006,260) size 70x487
    792             text run at (1006,260) width 226: "\x{3082}\x{5FC3}\x{914D}\x{3060}\x{308D}\x{3046}\x{3002}\x{604B}\x{306F}\x{3046}\x{308C}\x{3057}\x{3044}\x{3001}"
    793             text run at (1030,0) width 484: "\x{5B09}\x{3057}\x{3044}\x{604B}\x{304C}\x{7A4D}\x{3082}\x{308C}\x{3070}\x{3001}\x{604B}\x{3092}\x{305B}\x{306C}\x{6614}\x{304C}\x{304B}\x{3048}\x{3063}\x{3066}\x{604B}\x{3057}\x{304B}\x{308D}\x{3002}\x{95A3}\x{50DA}\x{306E}\x{80A9}\x{306F}"
    794             text run at (1058,0) width 113: "\x{6570}\x{767E}\x{4E07}\x{4EBA}\x{306E}\x{8DB3}\x{3092}"
    795           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    796             RenderRubyRun (anonymous) at (1055,113) size 24x19
     793          RenderText {#text} at (1006,244) size 70x487
     794            text run at (1006,244) width 242: "\x{3082}\x{5FC3}\x{914D}\x{3060}\x{308D}\x{3046}\x{3002}\x{604B}\x{306F}\x{3046}\x{308C}\x{3057}\x{3044}\x{3001}\x{5B09}"
     795            text run at (1030,0) width 484: "\x{3057}\x{3044}\x{604B}\x{304C}\x{7A4D}\x{3082}\x{308C}\x{3070}\x{3001}\x{604B}\x{3092}\x{305B}\x{306C}\x{6614}\x{304C}\x{304B}\x{3048}\x{3063}\x{3066}\x{604B}\x{3057}\x{304B}\x{308D}\x{3002}\x{95A3}\x{50DA}\x{306E}\x{80A9}\x{306F}\x{6570}"
     796            text run at (1058,0) width 97: "\x{767E}\x{4E07}\x{4EBA}\x{306E}\x{8DB3}\x{3092}"
     797          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     798            RenderRubyRun (anonymous) at (1055,96) size 24x19
    797799              RenderRubyText {RT} at (-9,0) size 14x19
    798800                RenderText {#text} at (2,0) size 10x19
     
    802804                  RenderText {#text} at (3,1) size 18x17
    803805                    text run at (3,1) width 17: "\x{652F}"
    804           RenderText {#text} at (1058,131) size 18x82
    805             text run at (1058,131) width 81: "\x{3048}\x{3066}\x{3044}\x{308B}\x{3002}"
    806           RenderRuby (inline) {RUBY} at (0,0) size 18x34
    807             RenderRubyRun (anonymous) at (1055,212) size 24x33
     806          RenderText {#text} at (1058,113) size 18x82
     807            text run at (1058,113) width 81: "\x{3048}\x{3066}\x{3044}\x{308B}\x{3002}"
     808          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     809            RenderRubyRun (anonymous) at (1055,194) size 24x33
    808810              RenderRubyText {RT} at (-9,0) size 14x33
    809811                RenderText {#text} at (2,0) size 10x33
     
    813815                  RenderText {#text} at (3,0) size 18x33
    814816                    text run at (3,0) width 33: "\x{80CC}\x{4E2D}"
    815           RenderText {#text} at (1058,245) size 46x488
    816             text run at (1058,245) width 242: "\x{306B}\x{306F}\x{91CD}\x{3044}\x{5929}\x{4E0B}\x{304C}\x{304A}\x{3076}\x{3055}\x{3063}\x{3066}\x{3044}\x{308B}\x{3002}"
    817             text run at (1086,0) width 291: "\x{3046}\x{307E}\x{3044}\x{7269}\x{3082}\x{98DF}\x{308F}\x{306D}\x{3070}\x{60DC}\x{3057}\x{3044}\x{3002}\x{5C11}\x{3057}\x{98DF}\x{3048}\x{3070}"
    818           RenderRuby (inline) {RUBY} at (0,0) size 18x18
    819             RenderRubyRun (anonymous) at (1083,290) size 24x17
     817          RenderText {#text} at (1058,227) size 46x486
     818            text run at (1058,227) width 258: "\x{306B}\x{306F}\x{91CD}\x{3044}\x{5929}\x{4E0B}\x{304C}\x{304A}\x{3076}\x{3055}\x{3063}\x{3066}\x{3044}\x{308B}\x{3002}\x{3046}"
     819            text run at (1086,0) width 274: "\x{307E}\x{3044}\x{7269}\x{3082}\x{98DF}\x{308F}\x{306D}\x{3070}\x{60DC}\x{3057}\x{3044}\x{3002}\x{5C11}\x{3057}\x{98DF}\x{3048}\x{3070}"
     820          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     821            RenderRubyRun (anonymous) at (1083,274) size 24x17
    820822              RenderRubyText {RT} at (-9,0) size 14x17
    821823                RenderText {#text} at (2,3) size 10x10
     
    825827                  RenderText {#text} at (3,0) size 18x17
    826828                    text run at (3,0) width 17: "\x{98FD}"
    827           RenderText {#text} at (1086,307) size 18x17
    828             text run at (1086,307) width 17: "\x{304D}"
    829           RenderRuby (inline) {RUBY} at (0,0) size 18x18
    830             RenderRubyRun (anonymous) at (1083,323) size 24x17
     829          RenderText {#text} at (1086,290) size 18x18
     830            text run at (1086,290) width 17: "\x{304D}"
     831          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     832            RenderRubyRun (anonymous) at (1083,307) size 24x17
    831833              RenderRubyText {RT} at (-9,0) size 14x17
    832834                RenderText {#text} at (2,3) size 10x10
     
    836838                  RenderText {#text} at (3,0) size 18x17
    837839                    text run at (3,0) width 17: "\x{8DB3}"
    838           RenderText {#text} at (1086,340) size 42x486
    839             text run at (1086,340) width 146: "\x{3089}\x{306C}\x{3002}\x{5B58}\x{5206}\x{98DF}\x{3048}\x{3070}\x{3042}"
    840             text run at (1110,0) width 145: "\x{3068}\x{304C}\x{4E0D}\x{6109}\x{5FEB}\x{3060}\x{3002}\x{2026}\x{2026}"
    841           RenderBR {BR} at (1110,144) size 18x1
     840          RenderText {#text} at (1086,324) size 42x486
     841            text run at (1086,324) width 162: "\x{3089}\x{306C}\x{3002}\x{5B58}\x{5206}\x{98DF}\x{3048}\x{3070}\x{3042}\x{3068}"
     842            text run at (1110,0) width 129: "\x{304C}\x{4E0D}\x{6109}\x{5FEB}\x{3060}\x{3002}\x{2026}\x{2026}"
     843          RenderBR {BR} at (1110,128) size 18x1
    842844          RenderText {#text} at (1138,0) size 18x17
    843845            text run at (1138,0) width 17: "\x{3000}"
     
    853855          RenderText {#text} at (1138,33) size 18x17
    854856            text run at (1138,33) width 17: "\x{306E}"
    855           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    856             RenderRubyRun (anonymous) at (1135,49) size 24x37
     857          RenderRuby (inline) {RUBY} at (0,0) size 18x30
     858            RenderRubyRun (anonymous) at (1135,45) size 24x37
    857859              RenderRubyText {RT} at (-9,0) size 14x37
    858860                RenderText {#text} at (2,0) size 10x37
     
    862864                  RenderText {#text} at (3,10) size 18x17
    863865                    text run at (3,10) width 17: "\x{8003}"
    864           RenderText {#text} at (1138,86) size 18x259
    865             text run at (1138,86) width 258: "\x{304C}\x{3053}\x{3053}\x{307E}\x{3067}\x{6F02}\x{6D41}\x{3057}\x{3066}\x{6765}\x{305F}\x{6642}\x{306B}\x{3001}\x{4F59}\x{306E}"
    866           RenderRuby (inline) {RUBY} at (0,0) size 18x34
    867             RenderRubyRun (anonymous) at (1135,344) size 24x33
     866          RenderText {#text} at (1138,78) size 18x259
     867            text run at (1138,78) width 258: "\x{304C}\x{3053}\x{3053}\x{307E}\x{3067}\x{6F02}\x{6D41}\x{3057}\x{3066}\x{6765}\x{305F}\x{6642}\x{306B}\x{3001}\x{4F59}\x{306E}"
     868          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     869            RenderRubyRun (anonymous) at (1135,336) size 24x33
    868870              RenderRubyText {RT} at (-9,0) size 14x33
    869871                RenderText {#text} at (2,0) size 10x33
     
    873875                  RenderText {#text} at (3,0) size 18x33
    874876                    text run at (3,0) width 33: "\x{53F3}\x{8DB3}"
    875           RenderText {#text} at (1138,377) size 18x49
    876             text run at (1138,377) width 49: "\x{306F}\x{7A81}\x{7136}"
    877           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    878             RenderRubyRun (anonymous) at (1135,425) size 24x19
     877          RenderText {#text} at (1138,369) size 18x49
     878            text run at (1138,369) width 49: "\x{306F}\x{7A81}\x{7136}"
     879          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     880            RenderRubyRun (anonymous) at (1135,416) size 24x19
    879881              RenderRubyText {RT} at (-9,0) size 14x19
    880882                RenderText {#text} at (2,0) size 10x19
     
    884886                  RenderText {#text} at (3,1) size 18x17
    885887                    text run at (3,1) width 17: "\x{5750}"
    886           RenderText {#text} at (1138,444) size 46x493
    887             text run at (1138,444) width 49: "\x{308A}\x{306E}\x{308F}"
     888          RenderText {#text} at (1138,434) size 46x483
     889            text run at (1138,434) width 49: "\x{308A}\x{306E}\x{308F}"
    888890            text run at (1166,0) width 33: "\x{308B}\x{3044}"
    889           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    890             RenderRubyRun (anonymous) at (1163,32) size 24x37
     891          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     892            RenderRubyRun (anonymous) at (1163,31) size 24x37
    891893              RenderRubyText {RT} at (-9,0) size 14x37
    892894                RenderText {#text} at (2,0) size 10x37
     
    896898                  RenderText {#text} at (3,1) size 18x35
    897899                    text run at (3,1) width 35: "\x{89D2}\x{77F3}"
    898           RenderText {#text} at (1166,69) size 18x17
    899             text run at (1166,69) width 17: "\x{306E}"
    900           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    901             RenderRubyRun (anonymous) at (1163,85) size 24x19
     900          RenderText {#text} at (1166,67) size 18x17
     901            text run at (1166,67) width 17: "\x{306E}"
     902          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     903            RenderRubyRun (anonymous) at (1163,82) size 24x19
    902904              RenderRubyText {RT} at (-9,0) size 14x19
    903905                RenderText {#text} at (2,0) size 10x19
     
    907909                  RenderText {#text} at (3,1) size 18x17
    908910                    text run at (3,1) width 17: "\x{7AEF}"
    909           RenderText {#text} at (1166,104) size 18x49
    910             text run at (1166,104) width 49: "\x{3092}\x{8E0F}\x{307F}"
    911           RenderRuby (inline) {RUBY} at (0,0) size 18x18
    912             RenderRubyRun (anonymous) at (1163,153) size 24x17
     911          RenderText {#text} at (1166,100) size 18x49
     912            text run at (1166,100) width 49: "\x{3092}\x{8E0F}\x{307F}"
     913          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     914            RenderRubyRun (anonymous) at (1163,149) size 24x17
    913915              RenderRubyText {RT} at (-9,0) size 14x17
    914916                RenderText {#text} at (2,3) size 10x10
     
    918920                  RenderText {#text} at (3,0) size 18x17
    919921                    text run at (3,0) width 17: "\x{640D}"
    920           RenderText {#text} at (1166,169) size 18x82
    921             text run at (1166,169) width 81: "\x{304F}\x{306A}\x{3063}\x{305F}\x{3002}"
    922           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    923             RenderRubyRun (anonymous) at (1163,250) size 24x37
     922          RenderText {#text} at (1166,165) size 18x82
     923            text run at (1166,165) width 81: "\x{304F}\x{306A}\x{3063}\x{305F}\x{3002}"
     924          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     925            RenderRubyRun (anonymous) at (1163,245) size 24x37
    924926              RenderRubyText {RT} at (-9,0) size 14x37
    925927                RenderText {#text} at (2,0) size 10x37
     
    929931                  RenderText {#text} at (3,1) size 18x35
    930932                    text run at (3,1) width 35: "\x{5E73}\x{8861}"
    931           RenderText {#text} at (1166,287) size 46x481
    932             text run at (1166,287) width 194: "\x{3092}\x{4FDD}\x{3064}\x{305F}\x{3081}\x{306B}\x{3001}\x{3059}\x{308F}\x{3084}\x{3068}\x{524D}"
    933             text run at (1194,0) width 97: "\x{306B}\x{98DB}\x{3073}\x{51FA}\x{3057}\x{305F}"
    934           RenderRuby (inline) {RUBY} at (0,0) size 18x34
    935             RenderRubyRun (anonymous) at (1191,97) size 24x33
     933          RenderText {#text} at (1166,281) size 46x491
     934            text run at (1166,281) width 210: "\x{3092}\x{4FDD}\x{3064}\x{305F}\x{3081}\x{306B}\x{3001}\x{3059}\x{308F}\x{3084}\x{3068}\x{524D}\x{306B}"
     935            text run at (1194,0) width 81: "\x{98DB}\x{3073}\x{51FA}\x{3057}\x{305F}"
     936          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     937            RenderRubyRun (anonymous) at (1191,81) size 24x33
    936938              RenderRubyText {RT} at (-9,0) size 14x33
    937939                RenderText {#text} at (2,0) size 10x33
     
    941943                  RenderText {#text} at (3,0) size 18x33
    942944                    text run at (3,0) width 33: "\x{5DE6}\x{8DB3}"
    943           RenderText {#text} at (1194,129) size 18x33
    944             text run at (1194,129) width 33: "\x{304C}\x{3001}"
    945           RenderRuby (inline) {RUBY} at (0,0) size 18x34
    946             RenderRubyRun (anonymous) at (1191,162) size 24x33
     945          RenderText {#text} at (1194,113) size 18x33
     946            text run at (1194,113) width 33: "\x{304C}\x{3001}"
     947          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     948            RenderRubyRun (anonymous) at (1191,146) size 24x33
    947949              RenderRubyText {RT} at (-9,0) size 14x33
    948950                RenderText {#text} at (2,0) size 10x33
     
    952954                  RenderText {#text} at (3,0) size 18x33
    953955                    text run at (3,0) width 33: "\x{4ED5}\x{640D}"
    954           RenderText {#text} at (1194,194) size 18x34
    955             text run at (1194,194) width 33: "\x{3058}\x{306E}"
    956           RenderRuby (inline) {RUBY} at (0,0) size 18x18
    957             RenderRubyRun (anonymous) at (1191,227) size 24x17
     956          RenderText {#text} at (1194,178) size 18x34
     957            text run at (1194,178) width 33: "\x{3058}\x{306E}"
     958          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     959            RenderRubyRun (anonymous) at (1191,211) size 24x17
    958960              RenderRubyText {RT} at (-9,0) size 14x17
    959961                RenderText {#text} at (2,3) size 10x10
     
    963965                  RenderText {#text} at (3,0) size 18x17
    964966                    text run at (3,0) width 17: "\x{57CB}"
    965           RenderText {#text} at (1194,244) size 18x17
    966             text run at (1194,244) width 17: "\x{3081}"
    967           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    968             RenderRubyRun (anonymous) at (1191,260) size 24x19
     967          RenderText {#text} at (1194,228) size 18x17
     968            text run at (1194,228) width 17: "\x{3081}"
     969          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     970            RenderRubyRun (anonymous) at (1191,243) size 24x19
    969971              RenderRubyText {RT} at (-9,0) size 14x19
    970972                RenderText {#text} at (2,0) size 10x19
     
    974976                  RenderText {#text} at (3,1) size 18x17
    975977                    text run at (3,1) width 17: "\x{5408}"
    976           RenderText {#text} at (1194,279) size 46x489
    977             text run at (1194,279) width 210: "\x{305B}\x{3092}\x{3059}\x{308B}\x{3068}\x{5171}\x{306B}\x{3001}\x{4F59}\x{306E}\x{8170}\x{306F}\x{5177}"
    978             text run at (1222,0) width 49: "\x{5408}\x{3088}\x{304F}"
    979           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    980             RenderRubyRun (anonymous) at (1219,48) size 24x19
     978          RenderText {#text} at (1194,261) size 46x487
     979            text run at (1194,261) width 226: "\x{305B}\x{3092}\x{3059}\x{308B}\x{3068}\x{5171}\x{306B}\x{3001}\x{4F59}\x{306E}\x{8170}\x{306F}\x{5177}\x{5408}"
     980            text run at (1222,0) width 33: "\x{3088}\x{304F}"
     981          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     982            RenderRubyRun (anonymous) at (1219,31) size 24x19
    981983              RenderRubyText {RT} at (-9,0) size 14x19
    982984                RenderText {#text} at (2,0) size 10x19
     
    986988                  RenderText {#text} at (3,1) size 18x17
    987989                    text run at (3,1) width 17: "\x{65B9}"
    988           RenderText {#text} at (1222,67) size 18x146
    989             text run at (1222,67) width 146: "\x{4E09}\x{5C3A}\x{307B}\x{3069}\x{306A}\x{5CA9}\x{306E}\x{4E0A}\x{306B}"
    990           RenderRuby (inline) {RUBY} at (0,0) size 18x18
    991             RenderRubyRun (anonymous) at (1219,212) size 24x17
     990          RenderText {#text} at (1222,49) size 18x146
     991            text run at (1222,49) width 146: "\x{4E09}\x{5C3A}\x{307B}\x{3069}\x{306A}\x{5CA9}\x{306E}\x{4E0A}\x{306B}"
     992          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     993            RenderRubyRun (anonymous) at (1219,194) size 24x17
    992994              RenderRubyText {RT} at (-9,0) size 14x17
    993995                RenderText {#text} at (2,3) size 10x10
     
    997999                  RenderText {#text} at (3,0) size 18x17
    9981000                    text run at (3,0) width 17: "\x{5378}"
    999           RenderText {#text} at (1222,229) size 18x210
    1000             text run at (1222,229) width 210: "\x{308A}\x{305F}\x{3002}\x{80A9}\x{306B}\x{304B}\x{3051}\x{305F}\x{7D75}\x{306E}\x{5177}\x{7BB1}\x{304C}"
    1001           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    1002             RenderRubyRun (anonymous) at (1219,439) size 24x19
     1001          RenderText {#text} at (1222,211) size 18x210
     1002            text run at (1222,211) width 210: "\x{308A}\x{305F}\x{3002}\x{80A9}\x{306B}\x{304B}\x{3051}\x{305F}\x{7D75}\x{306E}\x{5177}\x{7BB1}\x{304C}"
     1003          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1004            RenderRubyRun (anonymous) at (1219,420) size 24x19
    10031005              RenderRubyText {RT} at (-9,0) size 14x19
    10041006                RenderText {#text} at (2,0) size 10x19
     
    10081010                  RenderText {#text} at (3,1) size 18x17
    10091011                    text run at (3,1) width 17: "\x{814B}"
    1010           RenderText {#text} at (1222,457) size 46x491
    1011             text run at (1222,457) width 33: "\x{306E}\x{4E0B}"
    1012             text run at (1250,0) width 33: "\x{304B}\x{3089}"
    1013           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    1014             RenderRubyRun (anonymous) at (1247,32) size 24x19
     1012          RenderText {#text} at (1222,437) size 46x487
     1013            text run at (1222,437) width 49: "\x{306E}\x{4E0B}\x{304B}"
     1014            text run at (1250,0) width 17: "\x{3089}"
     1015          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1016            RenderRubyRun (anonymous) at (1247,15) size 24x19
    10151017              RenderRubyText {RT} at (-9,0) size 14x19
    10161018                RenderText {#text} at (2,0) size 10x19
     
    10201022                  RenderText {#text} at (3,1) size 18x17
    10211023                    text run at (3,1) width 17: "\x{8E8D}"
    1022           RenderText {#text} at (1250,51) size 18x178
    1023             text run at (1250,51) width 178: "\x{308A}\x{51FA}\x{3057}\x{305F}\x{3060}\x{3051}\x{3067}\x{3001}\x{5E78}\x{3044}\x{3068}"
    1024           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    1025             RenderRubyRun (anonymous) at (1247,228) size 24x19
     1024          RenderText {#text} at (1250,33) size 18x178
     1025            text run at (1250,33) width 178: "\x{308A}\x{51FA}\x{3057}\x{305F}\x{3060}\x{3051}\x{3067}\x{3001}\x{5E78}\x{3044}\x{3068}"
     1026          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1027            RenderRubyRun (anonymous) at (1247,209) size 24x19
    10261028              RenderRubyText {RT} at (-9,0) size 14x19
    10271029                RenderText {#text} at (2,0) size 10x19
     
    10311033                  RenderText {#text} at (3,1) size 18x17
    10321034                    text run at (3,1) width 17: "\x{4F55}"
    1033           RenderText {#text} at (1250,247) size 18x130
    1034             text run at (1250,247) width 129: "\x{306E}\x{4E8B}\x{3082}\x{306A}\x{304B}\x{3063}\x{305F}\x{3002}"
    1035           RenderBR {BR} at (1250,376) size 18x1
     1035          RenderText {#text} at (1250,227) size 18x130
     1036            text run at (1250,227) width 129: "\x{306E}\x{4E8B}\x{3082}\x{306A}\x{304B}\x{3063}\x{305F}\x{3002}"
     1037          RenderBR {BR} at (1250,356) size 18x1
    10361038          RenderText {#text} at (1278,0) size 18x242
    10371039            text run at (1278,0) width 242: "\x{3000}\x{7ACB}\x{3061}\x{4E0A}\x{304C}\x{308B}\x{6642}\x{306B}\x{5411}\x{3046}\x{3092}\x{898B}\x{308B}\x{3068}\x{3001}"
    1038           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    1039             RenderRubyRun (anonymous) at (1275,242) size 24x19
     1040          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1041            RenderRubyRun (anonymous) at (1275,241) size 24x19
    10401042              RenderRubyText {RT} at (-9,0) size 14x19
    10411043                RenderText {#text} at (2,0) size 10x19
     
    10451047                  RenderText {#text} at (3,1) size 18x17
    10461048                    text run at (3,1) width 17: "\x{8DEF}"
    1047           RenderText {#text} at (1278,260) size 46x487
    1048             text run at (1278,260) width 226: "\x{304B}\x{3089}\x{5DE6}\x{306E}\x{65B9}\x{306B}\x{30D0}\x{30B1}\x{30C4}\x{3092}\x{4F0F}\x{305B}\x{305F}\x{3088}"
     1049          RenderText {#text} at (1278,258) size 46x485
     1050            text run at (1278,258) width 226: "\x{304B}\x{3089}\x{5DE6}\x{306E}\x{65B9}\x{306B}\x{30D0}\x{30B1}\x{30C4}\x{3092}\x{4F0F}\x{305B}\x{305F}\x{3088}"
    10491051            text run at (1306,0) width 65: "\x{3046}\x{306A}\x{5CF0}\x{304C}"
    1050           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    1051             RenderRubyRun (anonymous) at (1303,64) size 24x19
     1052          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1053            RenderRubyRun (anonymous) at (1303,63) size 24x19
    10521054              RenderRubyText {RT} at (-9,0) size 14x19
    10531055                RenderText {#text} at (2,0) size 10x19
     
    10571059                  RenderText {#text} at (3,1) size 18x17
    10581060                    text run at (3,1) width 17: "\x{8073}"
    1059           RenderText {#text} at (1306,83) size 18x114
    1060             text run at (1306,83) width 113: "\x{3048}\x{3066}\x{3044}\x{308B}\x{3002}\x{6749}\x{304B}"
    1061           RenderRuby (inline) {RUBY} at (0,0) size 18x29
    1062             RenderRubyRun (anonymous) at (1303,196) size 24x28
     1061          RenderText {#text} at (1306,81) size 18x114
     1062            text run at (1306,81) width 113: "\x{3048}\x{3066}\x{3044}\x{308B}\x{3002}\x{6749}\x{304B}"
     1063          RenderRuby (inline) {RUBY} at (0,0) size 18x21
     1064            RenderRubyRun (anonymous) at (1303,190) size 24x28
    10631065              RenderRubyText {RT} at (-9,0) size 14x28
    10641066                RenderText {#text} at (2,0) size 10x28
     
    10681070                  RenderText {#text} at (3,5) size 18x17
    10691071                    text run at (3,5) width 17: "\x{6A9C}"
    1070           RenderText {#text} at (1306,224) size 18x114
    1071             text run at (1306,224) width 113: "\x{304B}\x{5206}\x{304B}\x{3089}\x{306A}\x{3044}\x{304C}"
    1072           RenderRuby (inline) {RUBY} at (0,0) size 18x34
    1073             RenderRubyRun (anonymous) at (1303,337) size 24x33
     1072          RenderText {#text} at (1306,214) size 18x114
     1073            text run at (1306,214) width 113: "\x{304B}\x{5206}\x{304B}\x{3089}\x{306A}\x{3044}\x{304C}"
     1074          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     1075            RenderRubyRun (anonymous) at (1303,327) size 24x33
    10741076              RenderRubyText {RT} at (-9,0) size 14x33
    10751077                RenderText {#text} at (2,0) size 10x33
     
    10791081                  RenderText {#text} at (3,0) size 18x33
    10801082                    text run at (3,0) width 33: "\x{6839}\x{5143}"
    1081           RenderText {#text} at (1306,370) size 18x33
    1082             text run at (1306,370) width 33: "\x{304B}\x{3089}"
    1083           RenderRuby (inline) {RUBY} at (0,0) size 18x29
    1084             RenderRubyRun (anonymous) at (1303,402) size 24x28
     1083          RenderText {#text} at (1306,360) size 18x33
     1084            text run at (1306,360) width 33: "\x{304B}\x{3089}"
     1085          RenderRuby (inline) {RUBY} at (0,0) size 18x21
     1086            RenderRubyRun (anonymous) at (1303,388) size 24x28
    10851087              RenderRubyText {RT} at (-9,0) size 14x28
    10861088                RenderText {#text} at (2,0) size 10x28
     
    10901092                  RenderText {#text} at (3,5) size 18x17
    10911093                    text run at (3,5) width 17: "\x{9802}"
    1092           RenderText {#text} at (1306,430) size 46x479
    1093             text run at (1306,430) width 49: "\x{304D}\x{307E}\x{3067}"
    1094             text run at (1334,0) width 81: "\x{3053}\x{3068}\x{3054}\x{3068}\x{304F}"
    1095           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    1096             RenderRubyRun (anonymous) at (1331,81) size 24x37
     1094          RenderText {#text} at (1306,412) size 46x493
     1095            text run at (1306,412) width 81: "\x{304D}\x{307E}\x{3067}\x{3053}\x{3068}"
     1096            text run at (1334,0) width 49: "\x{3054}\x{3068}\x{304F}"
     1097          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     1098            RenderRubyRun (anonymous) at (1331,47) size 24x37
    10971099              RenderRubyText {RT} at (-9,0) size 14x37
    10981100                RenderText {#text} at (2,0) size 10x37
     
    11021104                  RenderText {#text} at (3,1) size 18x35
    11031105                    text run at (3,1) width 35: "\x{84BC}\x{9ED2}"
    1104           RenderText {#text} at (1334,117) size 18x243
    1105             text run at (1334,117) width 242: "\x{3044}\x{4E2D}\x{306B}\x{3001}\x{5C71}\x{685C}\x{304C}\x{8584}\x{8D64}\x{304F}\x{3060}\x{3093}\x{3060}\x{3089}\x{306B}"
    1106           RenderRuby (inline) {RUBY} at (0,0) size 18x34
    1107             RenderRubyRun (anonymous) at (1331,359) size 24x33
     1106          RenderText {#text} at (1334,83) size 18x243
     1107            text run at (1334,83) width 242: "\x{3044}\x{4E2D}\x{306B}\x{3001}\x{5C71}\x{685C}\x{304C}\x{8584}\x{8D64}\x{304F}\x{3060}\x{3093}\x{3060}\x{3089}\x{306B}"
     1108          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     1109            RenderRubyRun (anonymous) at (1331,325) size 24x33
    11081110              RenderRubyText {RT} at (-9,0) size 14x33
    11091111                RenderText {#text} at (2,0) size 10x33
     
    11131115                  RenderText {#text} at (3,0) size 18x33
    11141116                    text run at (3,0) width 33: "\x{68DA}\x{5F15}"
    1115           RenderText {#text} at (1334,392) size 18x49
    1116             text run at (1334,392) width 49: "\x{3044}\x{3066}\x{3001}"
    1117           RenderRuby (inline) {RUBY} at (0,0) size 18x18
    1118             RenderRubyRun (anonymous) at (1331,441) size 24x17
     1117          RenderText {#text} at (1334,358) size 18x49
     1118            text run at (1334,358) width 49: "\x{3044}\x{3066}\x{3001}"
     1119          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1120            RenderRubyRun (anonymous) at (1331,406) size 24x17
    11191121              RenderRubyText {RT} at (-9,0) size 14x17
    11201122                RenderText {#text} at (2,3) size 10x10
     
    11241126                  RenderText {#text} at (3,0) size 18x17
    11251127                    text run at (3,0) width 17: "\x{7D9A}"
    1126           RenderText {#text} at (1334,457) size 18x17
    1127             text run at (1334,457) width 17: "\x{304E}"
    1128           RenderRuby (inline) {RUBY} at (0,0) size 18x18
    1129             RenderRubyRun (anonymous) at (1331,474) size 24x17
     1128          RenderText {#text} at (1334,423) size 18x17
     1129            text run at (1334,423) width 17: "\x{304E}"
     1130          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1131            RenderRubyRun (anonymous) at (1331,439) size 24x17
    11301132              RenderRubyText {RT} at (-9,0) size 14x17
    11311133                RenderText {#text} at (2,3) size 10x10
     
    11351137                  RenderText {#text} at (3,0) size 18x17
    11361138                    text run at (3,0) width 17: "\x{76EE}"
    1137           RenderText {#text} at (1362,0) size 18x17
    1138             text run at (1362,0) width 17: "\x{304C}"
    1139           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    1140             RenderRubyRun (anonymous) at (1359,16) size 24x19
     1139          RenderText {#text} at (1334,456) size 18x17
     1140            text run at (1334,456) width 17: "\x{304C}"
     1141          RenderRuby (inline) {RUBY} at (0,0) size 18x19
     1142            RenderRubyRun (anonymous) at (1331,472) size 24x19
    11411143              RenderRubyText {RT} at (-9,0) size 14x19
    11421144                RenderText {#text} at (2,0) size 10x19
     
    11461148                  RenderText {#text} at (3,1) size 18x17
    11471149                    text run at (3,1) width 17: "\x{78BA}"
    1148           RenderText {#text} at (1362,35) size 18x113
    1149             text run at (1362,35) width 113: "\x{3068}\x{898B}\x{3048}\x{306C}\x{304F}\x{3089}\x{3044}"
    1150           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    1151             RenderRubyRun (anonymous) at (1359,148) size 24x19
     1150          RenderText {#text} at (1362,0) size 18x113
     1151            text run at (1362,0) width 113: "\x{3068}\x{898B}\x{3048}\x{306C}\x{304F}\x{3089}\x{3044}"
     1152          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1153            RenderRubyRun (anonymous) at (1359,112) size 24x19
    11521154              RenderRubyText {RT} at (-9,0) size 14x19
    11531155                RenderText {#text} at (2,0) size 10x19
     
    11571159                  RenderText {#text} at (3,1) size 18x17
    11581160                    text run at (3,1) width 17: "\x{9744}"
    1159           RenderText {#text} at (1362,166) size 18x146
    1160             text run at (1362,166) width 146: "\x{304C}\x{6FC3}\x{3044}\x{3002}\x{5C11}\x{3057}\x{624B}\x{524D}\x{306B}"
    1161           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    1162             RenderRubyRun (anonymous) at (1359,312) size 24x37
     1161          RenderText {#text} at (1362,129) size 18x146
     1162            text run at (1362,129) width 146: "\x{304C}\x{6FC3}\x{3044}\x{3002}\x{5C11}\x{3057}\x{624B}\x{524D}\x{306B}"
     1163          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     1164            RenderRubyRun (anonymous) at (1359,274) size 24x37
    11631165              RenderRubyText {RT} at (-9,0) size 14x37
    11641166                RenderText {#text} at (2,0) size 10x37
     
    11681170                  RenderText {#text} at (3,1) size 18x35
    11691171                    text run at (3,1) width 35: "\x{79BF}\x{5C71}"
    1170           RenderText {#text} at (1362,348) size 18x66
    1171             text run at (1362,348) width 65: "\x{304C}\x{4E00}\x{3064}\x{3001}"
    1172           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    1173             RenderRubyRun (anonymous) at (1359,413) size 24x19
     1172          RenderText {#text} at (1362,309) size 18x66
     1173            text run at (1362,309) width 65: "\x{304C}\x{4E00}\x{3064}\x{3001}"
     1174          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1175            RenderRubyRun (anonymous) at (1359,373) size 24x19
    11741176              RenderRubyText {RT} at (-9,0) size 14x19
    11751177                RenderText {#text} at (2,0) size 10x19
     
    11791181                  RenderText {#text} at (3,1) size 18x17
    11801182                    text run at (3,1) width 17: "\x{7FA4}"
    1181           RenderText {#text} at (1362,432) size 46x481
    1182             text run at (1362,432) width 49: "\x{3092}\x{306C}\x{304D}"
    1183             text run at (1390,0) width 49: "\x{3093}\x{3067}\x{3066}"
    1184           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    1185             RenderRubyRun (anonymous) at (1387,48) size 24x19
     1183          RenderText {#text} at (1362,391) size 18x97
     1184            text run at (1362,391) width 97: "\x{3092}\x{306C}\x{304D}\x{3093}\x{3067}\x{3066}"
     1185          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1186            RenderRubyRun (anonymous) at (1387,0) size 24x19
    11861187              RenderRubyText {RT} at (-9,0) size 14x19
    11871188                RenderText {#text} at (2,0) size 10x19
     
    11911192                  RenderText {#text} at (3,1) size 18x17
    11921193                    text run at (3,1) width 17: "\x{7709}"
    1193           RenderText {#text} at (1390,67) size 18x17
    1194             text run at (1390,67) width 17: "\x{306B}"
    1195           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    1196             RenderRubyRun (anonymous) at (1387,83) size 24x19
     1194          RenderText {#text} at (1390,18) size 18x17
     1195            text run at (1390,18) width 17: "\x{306B}"
     1196          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1197            RenderRubyRun (anonymous) at (1387,33) size 24x19
    11971198              RenderRubyText {RT} at (-9,0) size 14x19
    11981199                RenderText {#text} at (2,0) size 10x19
     
    12021203                  RenderText {#text} at (3,1) size 18x17
    12031204                    text run at (3,1) width 17: "\x{903C}"
    1204           RenderText {#text} at (1390,102) size 18x33
    1205             text run at (1390,102) width 33: "\x{308B}\x{3002}"
    1206           RenderRuby (inline) {RUBY} at (0,0) size 18x18
    1207             RenderRubyRun (anonymous) at (1387,135) size 24x17
     1205          RenderText {#text} at (1390,51) size 18x33
     1206            text run at (1390,51) width 33: "\x{308B}\x{3002}"
     1207          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1208            RenderRubyRun (anonymous) at (1387,83) size 24x17
    12081209              RenderRubyText {RT} at (-9,0) size 14x17
    12091210                RenderText {#text} at (2,3) size 10x10
     
    12131214                  RenderText {#text} at (3,0) size 18x17
    12141215                    text run at (3,0) width 17: "\x{79BF}"
    1215           RenderText {#text} at (1390,151) size 18x130
    1216             text run at (1390,151) width 129: "\x{3052}\x{305F}\x{5074}\x{9762}\x{306F}\x{5DE8}\x{4EBA}\x{306E}"
    1217           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    1218             RenderRubyRun (anonymous) at (1387,281) size 24x19
     1216          RenderText {#text} at (1390,100) size 18x130
     1217            text run at (1390,100) width 129: "\x{3052}\x{305F}\x{5074}\x{9762}\x{306F}\x{5DE8}\x{4EBA}\x{306E}"
     1218          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1219            RenderRubyRun (anonymous) at (1387,228) size 24x19
    12191220              RenderRubyText {RT} at (-9,0) size 14x19
    12201221                RenderText {#text} at (2,0) size 10x19
     
    12241225                  RenderText {#text} at (3,1) size 18x17
    12251226                    text run at (3,1) width 17: "\x{65A7}"
    1226           RenderText {#text} at (1390,299) size 18x17
    1227             text run at (1390,299) width 17: "\x{3067}"
    1228           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    1229             RenderRubyRun (anonymous) at (1387,316) size 24x19
     1227          RenderText {#text} at (1390,246) size 18x17
     1228            text run at (1390,246) width 17: "\x{3067}"
     1229          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1230            RenderRubyRun (anonymous) at (1387,261) size 24x19
    12301231              RenderRubyText {RT} at (-9,0) size 14x19
    12311232                RenderText {#text} at (2,0) size 10x19
     
    12351236                  RenderText {#text} at (3,1) size 18x17
    12361237                    text run at (3,1) width 17: "\x{524A}"
    1237           RenderText {#text} at (1390,334) size 46x480
    1238             text run at (1390,334) width 146: "\x{308A}\x{53BB}\x{3063}\x{305F}\x{304B}\x{3001}\x{92ED}\x{3069}\x{304D}"
    1239             text run at (1418,0) width 162: "\x{5E73}\x{9762}\x{3092}\x{3084}\x{3051}\x{306B}\x{8C37}\x{306E}\x{5E95}\x{306B}"
    1240           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    1241             RenderRubyRun (anonymous) at (1415,161) size 24x19
     1238          RenderText {#text} at (1390,279) size 46x489
     1239            text run at (1390,279) width 210: "\x{308A}\x{53BB}\x{3063}\x{305F}\x{304B}\x{3001}\x{92ED}\x{3069}\x{304D}\x{5E73}\x{9762}\x{3092}\x{3084}"
     1240            text run at (1418,0) width 97: "\x{3051}\x{306B}\x{8C37}\x{306E}\x{5E95}\x{306B}"
     1241          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1242            RenderRubyRun (anonymous) at (1415,96) size 24x19
    12421243              RenderRubyText {RT} at (-9,0) size 14x19
    12431244                RenderText {#text} at (2,0) size 10x19
     
    12471248                  RenderText {#text} at (3,1) size 18x17
    12481249                    text run at (3,1) width 17: "\x{57CB}"
    1249           RenderText {#text} at (1418,180) size 18x81
    1250             text run at (1418,180) width 81: "\x{3081}\x{3066}\x{3044}\x{308B}\x{3002}"
    1251           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    1252             RenderRubyRun (anonymous) at (1415,261) size 24x37
     1250          RenderText {#text} at (1418,113) size 18x82
     1251            text run at (1418,113) width 81: "\x{3081}\x{3066}\x{3044}\x{308B}\x{3002}"
     1252          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     1253            RenderRubyRun (anonymous) at (1415,193) size 24x37
    12531254              RenderRubyText {RT} at (-9,0) size 14x37
    12541255                RenderText {#text} at (2,0) size 10x37
     
    12581259                  RenderText {#text} at (3,1) size 18x35
    12591260                    text run at (3,1) width 35: "\x{5929}\x{8FBA}"
    1260           RenderText {#text} at (1418,297) size 46x492
    1261             text run at (1418,297) width 194: "\x{306B}\x{4E00}\x{672C}\x{898B}\x{3048}\x{308B}\x{306E}\x{306F}\x{8D64}\x{677E}\x{3060}\x{308D}"
    1262             text run at (1446,0) width 146: "\x{3046}\x{3002}\x{679D}\x{306E}\x{9593}\x{306E}\x{7A7A}\x{3055}\x{3048}"
    1263           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    1264             RenderRubyRun (anonymous) at (1443,145) size 24x37
     1261          RenderText {#text} at (1418,229) size 46x488
     1262            text run at (1418,229) width 258: "\x{306B}\x{4E00}\x{672C}\x{898B}\x{3048}\x{308B}\x{306E}\x{306F}\x{8D64}\x{677E}\x{3060}\x{308D}\x{3046}\x{3002}\x{679D}\x{306E}"
     1263            text run at (1446,0) width 81: "\x{9593}\x{306E}\x{7A7A}\x{3055}\x{3048}"
     1264          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     1265            RenderRubyRun (anonymous) at (1443,80) size 24x37
    12651266              RenderRubyText {RT} at (-9,0) size 14x37
    12661267                RenderText {#text} at (2,0) size 10x37
     
    12701271                  RenderText {#text} at (3,1) size 18x35
    12711272                    text run at (3,1) width 35: "\x{5224}\x{7136}"
    1272           RenderText {#text} at (1446,182) size 46x489
    1273             text run at (1446,182) width 307: "\x{3057}\x{3066}\x{3044}\x{308B}\x{3002}\x{884C}\x{304F}\x{624B}\x{306F}\x{4E8C}\x{4E01}\x{307B}\x{3069}\x{3067}\x{5207}\x{308C}\x{3066}\x{3044}\x{308B}"
    1274             text run at (1474,0) width 146: "\x{304C}\x{3001}\x{9AD8}\x{3044}\x{6240}\x{304B}\x{3089}\x{8D64}\x{3044}"
    1275           RenderRuby (inline) {RUBY} at (0,0) size 18x34
    1276             RenderRubyRun (anonymous) at (1471,145) size 24x33
     1273          RenderText {#text} at (1446,115) size 46x487
     1274            text run at (1446,115) width 371: "\x{3057}\x{3066}\x{3044}\x{308B}\x{3002}\x{884C}\x{304F}\x{624B}\x{306F}\x{4E8C}\x{4E01}\x{307B}\x{3069}\x{3067}\x{5207}\x{308C}\x{3066}\x{3044}\x{308B}\x{304C}\x{3001}\x{9AD8}\x{3044}"
     1275            text run at (1474,0) width 81: "\x{6240}\x{304B}\x{3089}\x{8D64}\x{3044}"
     1276          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     1277            RenderRubyRun (anonymous) at (1471,81) size 24x33
    12771278              RenderRubyText {RT} at (-9,0) size 14x33
    12781279                RenderText {#text} at (2,0) size 10x33
     
    12821283                  RenderText {#text} at (3,0) size 18x33
    12831284                    text run at (3,0) width 33: "\x{6BDB}\x{5E03}"
    1284           RenderText {#text} at (1474,178) size 46x485
    1285             text run at (1474,178) width 307: "\x{304C}\x{52D5}\x{3044}\x{3066}\x{6765}\x{308B}\x{306E}\x{3092}\x{898B}\x{308B}\x{3068}\x{3001}\x{767B}\x{308C}\x{3070}\x{3042}\x{3059}\x{3053}\x{3078}"
    1286             text run at (1502,0) width 210: "\x{51FA}\x{308B}\x{306E}\x{3060}\x{308D}\x{3046}\x{3002}\x{8DEF}\x{306F}\x{3059}\x{3053}\x{3076}\x{308B}"
    1287           RenderRuby (inline) {RUBY} at (0,0) size 18x34
    1288             RenderRubyRun (anonymous) at (1499,209) size 24x33
     1285          RenderText {#text} at (1474,113) size 46x485
     1286            text run at (1474,113) width 371: "\x{304C}\x{52D5}\x{3044}\x{3066}\x{6765}\x{308B}\x{306E}\x{3092}\x{898B}\x{308B}\x{3068}\x{3001}\x{767B}\x{308C}\x{3070}\x{3042}\x{3059}\x{3053}\x{3078}\x{51FA}\x{308B}\x{306E}\x{3060}"
     1287            text run at (1502,0) width 146: "\x{308D}\x{3046}\x{3002}\x{8DEF}\x{306F}\x{3059}\x{3053}\x{3076}\x{308B}"
     1288          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     1289            RenderRubyRun (anonymous) at (1499,145) size 24x33
    12891290              RenderRubyText {RT} at (-9,0) size 14x33
    12901291                RenderText {#text} at (2,0) size 10x33
     
    12941295                  RenderText {#text} at (3,0) size 18x33
    12951296                    text run at (3,0) width 33: "\x{96E3}\x{7FA9}"
    1296           RenderText {#text} at (1502,242) size 18x33
    1297             text run at (1502,242) width 33: "\x{3060}\x{3002}"
    1298           RenderBR {BR} at (1502,274) size 18x1
     1297          RenderText {#text} at (1502,178) size 18x33
     1298            text run at (1502,178) width 33: "\x{3060}\x{3002}"
     1299          RenderBR {BR} at (1502,210) size 18x1
    12991300          RenderText {#text} at (1530,0) size 18x210
    13001301            text run at (1530,0) width 210: "\x{3000}\x{571F}\x{3092}\x{306A}\x{3089}\x{3059}\x{3060}\x{3051}\x{306A}\x{3089}\x{3055}\x{307B}\x{3069}"
     
    13221323            text run at (1530,275) width 210: "\x{308B}\x{307E}\x{3044}\x{304C}\x{3001}\x{571F}\x{306E}\x{4E2D}\x{306B}\x{306F}\x{5927}\x{304D}\x{306A}"
    13231324            text run at (1558,0) width 113: "\x{77F3}\x{304C}\x{3042}\x{308B}\x{3002}\x{571F}\x{306F}"
    1324           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    1325             RenderRubyRun (anonymous) at (1555,113) size 24x19
     1325          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1326            RenderRubyRun (anonymous) at (1555,112) size 24x19
    13261327              RenderRubyText {RT} at (-9,0) size 14x19
    13271328                RenderText {#text} at (2,0) size 10x19
     
    13311332                  RenderText {#text} at (3,1) size 18x17
    13321333                    text run at (3,1) width 17: "\x{5E73}"
    1333           RenderText {#text} at (1558,131) size 46x471
    1334             text run at (1558,131) width 339: "\x{3089}\x{306B}\x{3057}\x{3066}\x{3082}\x{77F3}\x{306F}\x{5E73}\x{3089}\x{306B}\x{306A}\x{3089}\x{306C}\x{3002}\x{77F3}\x{306F}\x{5207}\x{308A}\x{7815}\x{3044}\x{3066}"
     1334          RenderText {#text} at (1558,129) size 46x469
     1335            text run at (1558,129) width 339: "\x{3089}\x{306B}\x{3057}\x{3066}\x{3082}\x{77F3}\x{306F}\x{5E73}\x{3089}\x{306B}\x{306A}\x{3089}\x{306C}\x{3002}\x{77F3}\x{306F}\x{5207}\x{308A}\x{7815}\x{3044}\x{3066}"
    13351336            text run at (1586,0) width 178: "\x{3082}\x{3001}\x{5CA9}\x{306F}\x{59CB}\x{672B}\x{304C}\x{3064}\x{304B}\x{306C}\x{3002}"
    1336           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    1337             RenderRubyRun (anonymous) at (1583,177) size 24x37
     1337          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     1338            RenderRubyRun (anonymous) at (1583,176) size 24x37
    13381339              RenderRubyText {RT} at (-9,0) size 14x37
    13391340                RenderText {#text} at (2,0) size 10x37
     
    13431344                  RenderText {#text} at (3,1) size 18x35
    13441345                    text run at (3,1) width 35: "\x{6398}\x{5D29}"
    1345           RenderText {#text} at (1586,214) size 18x97
    1346             text run at (1586,214) width 97: "\x{3057}\x{305F}\x{571F}\x{306E}\x{4E0A}\x{306B}"
    1347           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    1348             RenderRubyRun (anonymous) at (1583,311) size 24x37
     1346          RenderText {#text} at (1586,212) size 18x97
     1347            text run at (1586,212) width 97: "\x{3057}\x{305F}\x{571F}\x{306E}\x{4E0A}\x{306B}"
     1348          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     1349            RenderRubyRun (anonymous) at (1583,308) size 24x37
    13491350              RenderRubyText {RT} at (-9,0) size 14x37
    13501351                RenderText {#text} at (2,0) size 10x37
     
    13541355                  RenderText {#text} at (3,1) size 18x35
    13551356                    text run at (3,1) width 35: "\x{60A0}\x{7136}"
    1356           RenderText {#text} at (1586,347) size 18x18
    1357             text run at (1586,347) width 17: "\x{3068}"
    1358           RenderRuby (inline) {RUBY} at (0,0) size 18x29
    1359             RenderRubyRun (anonymous) at (1583,364) size 24x28
     1357          RenderText {#text} at (1586,343) size 18x18
     1358            text run at (1586,343) width 17: "\x{3068}"
     1359          RenderRuby (inline) {RUBY} at (0,0) size 18x21
     1360            RenderRubyRun (anonymous) at (1583,356) size 24x28
    13601361              RenderRubyText {RT} at (-9,0) size 14x28
    13611362                RenderText {#text} at (2,0) size 10x28
     
    13651366                  RenderText {#text} at (3,5) size 18x17
    13661367                    text run at (3,5) width 17: "\x{5CD9}"
    1367           RenderText {#text} at (1586,392) size 46x489
    1368             text run at (1586,392) width 97: "\x{3063}\x{3066}\x{3001}\x{543E}\x{3089}\x{306E}"
    1369             text run at (1614,0) width 113: "\x{305F}\x{3081}\x{306B}\x{9053}\x{3092}\x{8B72}\x{308B}"
    1370           RenderRuby (inline) {RUBY} at (0,0) size 18x34
    1371             RenderRubyRun (anonymous) at (1611,113) size 24x33
     1368          RenderText {#text} at (1586,380) size 46x493
     1369            text run at (1586,380) width 113: "\x{3063}\x{3066}\x{3001}\x{543E}\x{3089}\x{306E}\x{305F}"
     1370            text run at (1614,0) width 97: "\x{3081}\x{306B}\x{9053}\x{3092}\x{8B72}\x{308B}"
     1371          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     1372            RenderRubyRun (anonymous) at (1611,97) size 24x33
    13721373              RenderRubyText {RT} at (-9,0) size 14x33
    13731374                RenderText {#text} at (2,0) size 10x33
     
    13771378                  RenderText {#text} at (3,0) size 18x33
    13781379                    text run at (3,0) width 33: "\x{666F}\x{8272}"
    1379           RenderText {#text} at (1614,145) size 46x485
    1380             text run at (1614,145) width 339: "\x{306F}\x{306A}\x{3044}\x{3002}\x{5411}\x{3046}\x{3067}\x{805E}\x{304B}\x{306C}\x{4E0A}\x{306F}\x{4E57}\x{308A}\x{8D8A}\x{3059}\x{304B}\x{3001}\x{5EFB}\x{3089}\x{306A}"
    1381             text run at (1642,0) width 113: "\x{3051}\x{308C}\x{3070}\x{306A}\x{3089}\x{3093}\x{3002}"
    1382           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    1383             RenderRubyRun (anonymous) at (1639,113) size 24x19
     1380          RenderText {#text} at (1614,129) size 46x485
     1381            text run at (1614,129) width 355: "\x{306F}\x{306A}\x{3044}\x{3002}\x{5411}\x{3046}\x{3067}\x{805E}\x{304B}\x{306C}\x{4E0A}\x{306F}\x{4E57}\x{308A}\x{8D8A}\x{3059}\x{304B}\x{3001}\x{5EFB}\x{3089}\x{306A}\x{3051}"
     1382            text run at (1642,0) width 97: "\x{308C}\x{3070}\x{306A}\x{3089}\x{3093}\x{3002}"
     1383          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1384            RenderRubyRun (anonymous) at (1639,96) size 24x19
    13841385              RenderRubyText {RT} at (-9,0) size 14x19
    13851386                RenderText {#text} at (2,0) size 10x19
     
    13891390                  RenderText {#text} at (3,1) size 18x17
    13901391                    text run at (3,1) width 17: "\x{5DCC}"
    1391           RenderText {#text} at (1642,131) size 18x114
    1392             text run at (1642,131) width 113: "\x{306E}\x{306A}\x{3044}\x{6240}\x{3067}\x{3055}\x{3048}"
    1393           RenderRuby (inline) {RUBY} at (0,0) size 18x18
    1394             RenderRubyRun (anonymous) at (1639,245) size 24x17
     1392          RenderText {#text} at (1642,113) size 18x114
     1393            text run at (1642,113) width 113: "\x{306E}\x{306A}\x{3044}\x{6240}\x{3067}\x{3055}\x{3048}"
     1394          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1395            RenderRubyRun (anonymous) at (1639,226) size 24x17
    13951396              RenderRubyText {RT} at (-9,0) size 14x17
    13961397                RenderText {#text} at (2,3) size 10x10
     
    14001401                  RenderText {#text} at (3,0) size 18x17
    14011402                    text run at (3,0) width 17: "\x{6B69}"
    1402           RenderText {#text} at (1642,261) size 46x488
    1403             text run at (1642,261) width 226: "\x{308B}\x{304D}\x{3088}\x{304F}\x{306F}\x{306A}\x{3044}\x{3002}\x{5DE6}\x{53F3}\x{304C}\x{9AD8}\x{304F}\x{3063}"
     1403          RenderText {#text} at (1642,243) size 46x470
     1404            text run at (1642,243) width 226: "\x{308B}\x{304D}\x{3088}\x{304F}\x{306F}\x{306A}\x{3044}\x{3002}\x{5DE6}\x{53F3}\x{304C}\x{9AD8}\x{304F}\x{3063}"
    14041405            text run at (1670,0) width 81: "\x{3066}\x{3001}\x{4E2D}\x{5FC3}\x{304C}"
    1405           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    1406             RenderRubyRun (anonymous) at (1667,81) size 24x19
     1406          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1407            RenderRubyRun (anonymous) at (1667,80) size 24x19
    14071408              RenderRubyText {RT} at (-9,0) size 14x19
    14081409                RenderText {#text} at (2,0) size 10x19
     
    14121413                  RenderText {#text} at (3,1) size 18x17
    14131414                    text run at (3,1) width 17: "\x{7AAA}"
    1414           RenderText {#text} at (1670,99) size 18x130
    1415             text run at (1670,99) width 129: "\x{3093}\x{3067}\x{3001}\x{307E}\x{308B}\x{3067}\x{4E00}\x{9593}"
    1416           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    1417             RenderRubyRun (anonymous) at (1667,228) size 24x19
     1415          RenderText {#text} at (1670,97) size 18x130
     1416            text run at (1670,97) width 129: "\x{3093}\x{3067}\x{3001}\x{307E}\x{308B}\x{3067}\x{4E00}\x{9593}"
     1417          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1418            RenderRubyRun (anonymous) at (1667,225) size 24x19
    14181419              RenderRubyText {RT} at (-9,0) size 14x19
    14191420                RenderText {#text} at (2,0) size 10x19
     
    14231424                  RenderText {#text} at (3,1) size 18x17
    14241425                    text run at (3,1) width 17: "\x{5E45}"
    1425           RenderText {#text} at (1670,247) size 18x65
    1426             text run at (1670,247) width 65: "\x{3092}\x{4E09}\x{89D2}\x{306B}"
    1427           RenderRuby (inline) {RUBY} at (0,0) size 18x18
    1428             RenderRubyRun (anonymous) at (1667,312) size 24x17
     1426          RenderText {#text} at (1670,243) size 18x65
     1427            text run at (1670,243) width 65: "\x{3092}\x{4E09}\x{89D2}\x{306B}"
     1428          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1429            RenderRubyRun (anonymous) at (1667,308) size 24x17
    14291430              RenderRubyText {RT} at (-9,0) size 14x17
    14301431                RenderText {#text} at (2,3) size 10x10
     
    14341435                  RenderText {#text} at (3,0) size 18x17
    14351436                    text run at (3,0) width 17: "\x{7A7F}"
    1436           RenderText {#text} at (1670,328) size 18x130
    1437             text run at (1670,328) width 129: "\x{3063}\x{3066}\x{3001}\x{305D}\x{306E}\x{9802}\x{70B9}\x{304C}"
     1437          RenderText {#text} at (1670,324) size 18x130
     1438            text run at (1670,324) width 129: "\x{3063}\x{3066}\x{3001}\x{305D}\x{306E}\x{9802}\x{70B9}\x{304C}"
    14381439          RenderRuby (inline) {RUBY} at (0,0) size 18x37
    1439             RenderRubyRun (anonymous) at (1695,0) size 24x37
     1440            RenderRubyRun (anonymous) at (1667,453) size 24x37
    14401441              RenderRubyText {RT} at (-9,0) size 14x37
    14411442                RenderText {#text} at (2,0) size 10x37
     
    14451446                  RenderText {#text} at (3,1) size 18x35
    14461447                    text run at (3,1) width 35: "\x{771F}\x{4E2D}"
    1447           RenderText {#text} at (1698,37) size 18x17
    1448             text run at (1698,37) width 17: "\x{3092}"
    1449           RenderRuby (inline) {RUBY} at (0,0) size 18x29
    1450             RenderRubyRun (anonymous) at (1695,53) size 24x28
     1448          RenderText {#text} at (1698,0) size 18x17
     1449            text run at (1698,0) width 17: "\x{3092}"
     1450          RenderRuby (inline) {RUBY} at (0,0) size 18x21
     1451            RenderRubyRun (anonymous) at (1695,12) size 24x28
    14511452              RenderRubyText {RT} at (-9,0) size 14x28
    14521453                RenderText {#text} at (2,0) size 10x28
     
    14561457                  RenderText {#text} at (3,5) size 18x17
    14571458                    text run at (3,5) width 17: "\x{8CAB}"
    1458           RenderText {#text} at (1698,81) size 18x403
    1459             text run at (1698,81) width 403: "\x{3044}\x{3066}\x{3044}\x{308B}\x{3068}\x{8A55}\x{3057}\x{3066}\x{3082}\x{3088}\x{3044}\x{3002}\x{8DEF}\x{3092}\x{884C}\x{304F}\x{3068}\x{4E91}\x{308F}\x{3093}\x{3088}\x{308A}\x{5DDD}\x{5E95}\x{3092}"
    1460           RenderRuby (inline) {RUBY} at (0,0) size 18x19
    1461             RenderRubyRun (anonymous) at (1723,0) size 24x19
     1459          RenderText {#text} at (1698,36) size 18x403
     1460            text run at (1698,36) width 403: "\x{3044}\x{3066}\x{3044}\x{308B}\x{3068}\x{8A55}\x{3057}\x{3066}\x{3082}\x{3088}\x{3044}\x{3002}\x{8DEF}\x{3092}\x{884C}\x{304F}\x{3068}\x{4E91}\x{308F}\x{3093}\x{3088}\x{308A}\x{5DDD}\x{5E95}\x{3092}"
     1461          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1462            RenderRubyRun (anonymous) at (1695,438) size 24x19
    14621463              RenderRubyText {RT} at (-9,0) size 14x19
    14631464                RenderText {#text} at (2,0) size 10x19
     
    14671468                  RenderText {#text} at (3,1) size 18x17
    14681469                    text run at (3,1) width 17: "\x{6E09}"
    1469           RenderText {#text} at (1726,19) size 18x162
    1470             text run at (1726,19) width 162: "\x{308B}\x{3068}\x{4E91}\x{3046}\x{65B9}\x{304C}\x{9069}\x{5F53}\x{3060}\x{3002}"
    1471           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    1472             RenderRubyRun (anonymous) at (1723,180) size 24x19
     1470          RenderText {#text} at (1698,455) size 46x489
     1471            text run at (1698,455) width 33: "\x{308B}\x{3068}"
     1472            text run at (1726,0) width 129: "\x{4E91}\x{3046}\x{65B9}\x{304C}\x{9069}\x{5F53}\x{3060}\x{3002}"
     1473          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1474            RenderRubyRun (anonymous) at (1723,128) size 24x19
    14731475              RenderRubyText {RT} at (-9,0) size 14x19
    14741476                RenderText {#text} at (2,0) size 10x19
     
    14781480                  RenderText {#text} at (3,1) size 18x17
    14791481                    text run at (3,1) width 17: "\x{56FA}"
    1480           RenderText {#text} at (1726,199) size 18x258
    1481             text run at (1726,199) width 258: "\x{3088}\x{308A}\x{6025}\x{3050}\x{65C5}\x{3067}\x{306A}\x{3044}\x{304B}\x{3089}\x{3001}\x{3076}\x{3089}\x{3076}\x{3089}\x{3068}"
    1482           RenderRuby (inline) {RUBY} at (0,0) size 18x37
    1483             RenderRubyRun (anonymous) at (1751,0) size 24x37
     1482          RenderText {#text} at (1726,145) size 18x259
     1483            text run at (1726,145) width 258: "\x{3088}\x{308A}\x{6025}\x{3050}\x{65C5}\x{3067}\x{306A}\x{3044}\x{304B}\x{3089}\x{3001}\x{3076}\x{3089}\x{3076}\x{3089}\x{3068}"
     1484          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     1485            RenderRubyRun (anonymous) at (1723,403) size 24x37
    14841486              RenderRubyText {RT} at (-9,0) size 14x37
    14851487                RenderText {#text} at (2,0) size 10x37
     
    14891491                  RenderText {#text} at (3,1) size 18x35
    14901492                    text run at (3,1) width 35: "\x{4E03}\x{66F2}"
    1491           RenderText {#text} at (1754,37) size 18x97
    1492             text run at (1754,37) width 97: "\x{308A}\x{3078}\x{304B}\x{304B}\x{308B}\x{3002}"
    1493           RenderBR {BR} at (1754,133) size 18x1
    1494           RenderText {#text} at (1782,0) size 18x146
    1495             text run at (1782,0) width 146: "\x{3000}\x{305F}\x{3061}\x{307E}\x{3061}\x{8DB3}\x{306E}\x{4E0B}\x{3067}"
    1496           RenderRuby (inline) {RUBY} at (0,0) size 18x34
    1497             RenderRubyRun (anonymous) at (1779,145) size 24x33
     1493          RenderText {#text} at (1726,438) size 42x488
     1494            text run at (1726,438) width 49: "\x{308A}\x{3078}\x{304B}"
     1495            text run at (1750,0) width 49: "\x{304B}\x{308B}\x{3002}"
     1496          RenderBR {BR} at (1750,48) size 18x1
     1497          RenderText {#text} at (1778,0) size 18x146
     1498            text run at (1778,0) width 146: "\x{3000}\x{305F}\x{3061}\x{307E}\x{3061}\x{8DB3}\x{306E}\x{4E0B}\x{3067}"
     1499          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     1500            RenderRubyRun (anonymous) at (1775,145) size 24x33
    14981501              RenderRubyText {RT} at (-9,0) size 14x33
    14991502                RenderText {#text} at (2,0) size 10x33
     
    15031506                  RenderText {#text} at (3,0) size 18x33
    15041507                    text run at (3,0) width 33: "\x{96F2}\x{96C0}"
    1505           RenderText {#text} at (1782,178) size 18x162
    1506             text run at (1782,178) width 162: "\x{306E}\x{58F0}\x{304C}\x{3057}\x{51FA}\x{3057}\x{305F}\x{3002}\x{8C37}\x{3092}"
    1507           RenderRuby (inline) {RUBY} at (0,0) size 18x34
    1508             RenderRubyRun (anonymous) at (1779,339) size 24x33
     1508          RenderText {#text} at (1778,178) size 18x162
     1509            text run at (1778,178) width 162: "\x{306E}\x{58F0}\x{304C}\x{3057}\x{51FA}\x{3057}\x{305F}\x{3002}\x{8C37}\x{3092}"
     1510          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     1511            RenderRubyRun (anonymous) at (1775,339) size 24x33
    15091512              RenderRubyText {RT} at (-9,0) size 14x33
    15101513                RenderText {#text} at (2,0) size 10x33
     
    15141517                  RenderText {#text} at (3,0) size 18x33
    15151518                    text run at (3,0) width 33: "\x{898B}\x{4E0B}"
    1516           RenderText {#text} at (1782,372) size 70x485
    1517             text run at (1782,372) width 113: "\x{3057}\x{305F}\x{304C}\x{3001}\x{3069}\x{3053}\x{3067}"
    1518             text run at (1806,0) width 484: "\x{9CF4}\x{3044}\x{3066}\x{308B}\x{304B}\x{5F71}\x{3082}\x{5F62}\x{3082}\x{898B}\x{3048}\x{306C}\x{3002}\x{305F}\x{3060}\x{58F0}\x{3060}\x{3051}\x{304C}\x{660E}\x{3089}\x{304B}\x{306B}\x{805E}\x{3048}\x{308B}\x{3002}\x{305B}\x{3063}\x{305B}"
    1519             text run at (1834,0) width 17: "\x{3068}"
    1520           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    1521             RenderRubyRun (anonymous) at (1831,16) size 24x19
     1519          RenderText {#text} at (1778,372) size 70x485
     1520            text run at (1778,372) width 113: "\x{3057}\x{305F}\x{304C}\x{3001}\x{3069}\x{3053}\x{3067}"
     1521            text run at (1802,0) width 484: "\x{9CF4}\x{3044}\x{3066}\x{308B}\x{304B}\x{5F71}\x{3082}\x{5F62}\x{3082}\x{898B}\x{3048}\x{306C}\x{3002}\x{305F}\x{3060}\x{58F0}\x{3060}\x{3051}\x{304C}\x{660E}\x{3089}\x{304B}\x{306B}\x{805E}\x{3048}\x{308B}\x{3002}\x{305B}\x{3063}\x{305B}"
     1522            text run at (1830,0) width 17: "\x{3068}"
     1523          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1524            RenderRubyRun (anonymous) at (1827,15) size 24x19
    15221525              RenderRubyText {RT} at (-9,0) size 14x19
    15231526                RenderText {#text} at (2,0) size 10x19
     
    15271530                  RenderText {#text} at (3,1) size 18x17
    15281531                    text run at (3,1) width 17: "\x{5FD9}"
    1529           RenderText {#text} at (1834,35) size 18x49
    1530             text run at (1834,35) width 49: "\x{3057}\x{304F}\x{3001}"
    1531           RenderRuby (inline) {RUBY} at (0,0) size 18x34
    1532             RenderRubyRun (anonymous) at (1831,83) size 24x33
     1532          RenderText {#text} at (1830,33) size 18x49
     1533            text run at (1830,33) width 49: "\x{3057}\x{304F}\x{3001}"
     1534          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     1535            RenderRubyRun (anonymous) at (1827,81) size 24x33
    15331536              RenderRubyText {RT} at (-9,0) size 14x33
    15341537                RenderText {#text} at (2,0) size 10x33
     
    15381541                  RenderText {#text} at (3,0) size 18x33
    15391542                    text run at (3,0) width 33: "\x{7D76}\x{9593}"
    1540           RenderText {#text} at (1834,116) size 18x130
    1541             text run at (1834,116) width 129: "\x{306A}\x{304F}\x{9CF4}\x{3044}\x{3066}\x{3044}\x{308B}\x{3002}"
     1543          RenderText {#text} at (1830,114) size 18x130
     1544            text run at (1830,114) width 129: "\x{306A}\x{304F}\x{9CF4}\x{3044}\x{3066}\x{3044}\x{308B}\x{3002}"
    15421545          RenderRuby (inline) {RUBY} at (0,0) size 18x50
    1543             RenderRubyRun (anonymous) at (1831,245) size 24x49
     1546            RenderRubyRun (anonymous) at (1827,243) size 24x49
    15441547              RenderRubyText {RT} at (-9,0) size 14x49
    15451548                RenderText {#text} at (2,0) size 10x49
     
    15491552                  RenderText {#text} at (3,0) size 18x49
    15501553                    text run at (3,0) width 49: "\x{65B9}\x{5E7E}\x{91CC}"
    1551           RenderText {#text} at (1834,294) size 18x114
    1552             text run at (1834,294) width 113: "\x{306E}\x{7A7A}\x{6C17}\x{304C}\x{4E00}\x{9762}\x{306B}"
    1553           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    1554             RenderRubyRun (anonymous) at (1831,407) size 24x19
     1554          RenderText {#text} at (1830,292) size 18x114
     1555            text run at (1830,292) width 113: "\x{306E}\x{7A7A}\x{6C17}\x{304C}\x{4E00}\x{9762}\x{306B}"
     1556          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1557            RenderRubyRun (anonymous) at (1827,404) size 24x19
    15551558              RenderRubyText {RT} at (-9,0) size 14x19
    15561559                RenderText {#text} at (2,0) size 10x19
     
    15601563                  RenderText {#text} at (3,1) size 18x17
    15611564                    text run at (3,1) width 17: "\x{86A4}"
    1562           RenderText {#text} at (1834,426) size 46x491
    1563             text run at (1834,426) width 65: "\x{306B}\x{523A}\x{3055}\x{308C}"
    1564             text run at (1862,0) width 355: "\x{3066}\x{3044}\x{305F}\x{305F}\x{307E}\x{308C}\x{306A}\x{3044}\x{3088}\x{3046}\x{306A}\x{6C17}\x{304C}\x{3059}\x{308B}\x{3002}\x{3042}\x{306E}\x{9CE5}\x{306E}\x{9CF4}\x{304F}"
    1565           RenderRuby (inline) {RUBY} at (0,0) size 18x18
    1566             RenderRubyRun (anonymous) at (1859,354) size 24x17
     1565          RenderText {#text} at (1830,422) size 46x487
     1566            text run at (1830,422) width 65: "\x{306B}\x{523A}\x{3055}\x{308C}"
     1567            text run at (1858,0) width 355: "\x{3066}\x{3044}\x{305F}\x{305F}\x{307E}\x{308C}\x{306A}\x{3044}\x{3088}\x{3046}\x{306A}\x{6C17}\x{304C}\x{3059}\x{308B}\x{3002}\x{3042}\x{306E}\x{9CE5}\x{306E}\x{9CF4}\x{304F}"
     1568          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1569            RenderRubyRun (anonymous) at (1855,354) size 24x17
    15671570              RenderRubyText {RT} at (-9,0) size 14x17
    15681571                RenderText {#text} at (2,3) size 10x10
     
    15721575                  RenderText {#text} at (3,0) size 18x17
    15731576                    text run at (3,0) width 17: "\x{97F3}"
    1574           RenderText {#text} at (1862,371) size 118x485
    1575             text run at (1862,371) width 113: "\x{306B}\x{306F}\x{77AC}\x{6642}\x{306E}\x{4F59}\x{88D5}"
    1576             text run at (1886,0) width 484: "\x{3082}\x{306A}\x{3044}\x{3002}\x{306E}\x{3069}\x{304B}\x{306A}\x{6625}\x{306E}\x{65E5}\x{3092}\x{9CF4}\x{304D}\x{5C3D}\x{304F}\x{3057}\x{3001}\x{9CF4}\x{304D}\x{3042}\x{304B}\x{3057}\x{3001}\x{307E}\x{305F}\x{9CF4}\x{304D}\x{66AE}\x{3089}"
    1577             text run at (1910,0) width 484: "\x{3055}\x{306A}\x{3051}\x{308C}\x{3070}\x{6C17}\x{304C}\x{6E08}\x{307E}\x{3093}\x{3068}\x{898B}\x{3048}\x{308B}\x{3002}\x{305D}\x{306E}\x{4E0A}\x{3069}\x{3053}\x{307E}\x{3067}\x{3082}\x{767B}\x{3063}\x{3066}\x{884C}\x{304F}\x{3001}\x{3044}"
    1578             text run at (1934,0) width 484: "\x{3064}\x{307E}\x{3067}\x{3082}\x{767B}\x{3063}\x{3066}\x{884C}\x{304F}\x{3002}\x{96F2}\x{96C0}\x{306F}\x{304D}\x{3063}\x{3068}\x{96F2}\x{306E}\x{4E2D}\x{3067}\x{6B7B}\x{306C}\x{306B}\x{76F8}\x{9055}\x{306A}\x{3044}\x{3002}\x{767B}\x{308A}"
    1579             text run at (1962,0) width 49: "\x{8A70}\x{3081}\x{305F}"
    1580           RenderRuby (inline) {RUBY} at (0,0) size 18x34
    1581             RenderRubyRun (anonymous) at (1959,48) size 24x33
     1577          RenderText {#text} at (1858,371) size 118x485
     1578            text run at (1858,371) width 113: "\x{306B}\x{306F}\x{77AC}\x{6642}\x{306E}\x{4F59}\x{88D5}"
     1579            text run at (1882,0) width 484: "\x{3082}\x{306A}\x{3044}\x{3002}\x{306E}\x{3069}\x{304B}\x{306A}\x{6625}\x{306E}\x{65E5}\x{3092}\x{9CF4}\x{304D}\x{5C3D}\x{304F}\x{3057}\x{3001}\x{9CF4}\x{304D}\x{3042}\x{304B}\x{3057}\x{3001}\x{307E}\x{305F}\x{9CF4}\x{304D}\x{66AE}\x{3089}"
     1580            text run at (1906,0) width 484: "\x{3055}\x{306A}\x{3051}\x{308C}\x{3070}\x{6C17}\x{304C}\x{6E08}\x{307E}\x{3093}\x{3068}\x{898B}\x{3048}\x{308B}\x{3002}\x{305D}\x{306E}\x{4E0A}\x{3069}\x{3053}\x{307E}\x{3067}\x{3082}\x{767B}\x{3063}\x{3066}\x{884C}\x{304F}\x{3001}\x{3044}"
     1581            text run at (1930,0) width 484: "\x{3064}\x{307E}\x{3067}\x{3082}\x{767B}\x{3063}\x{3066}\x{884C}\x{304F}\x{3002}\x{96F2}\x{96C0}\x{306F}\x{304D}\x{3063}\x{3068}\x{96F2}\x{306E}\x{4E2D}\x{3067}\x{6B7B}\x{306C}\x{306B}\x{76F8}\x{9055}\x{306A}\x{3044}\x{3002}\x{767B}\x{308A}"
     1582            text run at (1958,0) width 49: "\x{8A70}\x{3081}\x{305F}"
     1583          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     1584            RenderRubyRun (anonymous) at (1955,48) size 24x33
    15821585              RenderRubyText {RT} at (-9,0) size 14x33
    15831586                RenderText {#text} at (2,0) size 10x33
     
    15871590                  RenderText {#text} at (3,0) size 18x33
    15881591                    text run at (3,0) width 33: "\x{63DA}\x{53E5}"
    1589           RenderText {#text} at (1962,81) size 18x114
    1590             text run at (1962,81) width 113: "\x{306F}\x{3001}\x{6D41}\x{308C}\x{3066}\x{96F2}\x{306B}"
    1591           RenderRuby (inline) {RUBY} at (0,0) size 18x18
    1592             RenderRubyRun (anonymous) at (1959,194) size 24x17
     1592          RenderText {#text} at (1958,81) size 18x114
     1593            text run at (1958,81) width 113: "\x{306F}\x{3001}\x{6D41}\x{308C}\x{3066}\x{96F2}\x{306B}"
     1594          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1595            RenderRubyRun (anonymous) at (1955,194) size 24x17
    15931596              RenderRubyText {RT} at (-9,0) size 14x17
    15941597                RenderText {#text} at (2,3) size 10x10
     
    15981601                  RenderText {#text} at (3,0) size 18x17
    15991602                    text run at (3,0) width 17: "\x{5165}"
    1600           RenderText {#text} at (1962,211) size 18x49
    1601             text run at (1962,211) width 49: "\x{3063}\x{3066}\x{3001}"
    1602           RenderRuby (inline) {RUBY} at (0,0) size 18x29
    1603             RenderRubyRun (anonymous) at (1959,259) size 24x28
     1603          RenderText {#text} at (1958,211) size 18x49
     1604            text run at (1958,211) width 49: "\x{3063}\x{3066}\x{3001}"
     1605          RenderRuby (inline) {RUBY} at (0,0) size 18x21
     1606            RenderRubyRun (anonymous) at (1955,255) size 24x28
    16041607              RenderRubyText {RT} at (-9,0) size 14x28
    16051608                RenderText {#text} at (2,0) size 10x28
     
    16091612                  RenderText {#text} at (3,5) size 18x17
    16101613                    text run at (3,5) width 17: "\x{6F02}"
    1611           RenderText {#text} at (1962,287) size 46x481
    1612             text run at (1962,287) width 194: "\x{3046}\x{3066}\x{3044}\x{308B}\x{3046}\x{3061}\x{306B}\x{5F62}\x{306F}\x{6D88}\x{3048}\x{3066}"
    1613             text run at (1990,0) width 226: "\x{306A}\x{304F}\x{306A}\x{3063}\x{3066}\x{3001}\x{305F}\x{3060}\x{58F0}\x{3060}\x{3051}\x{304C}\x{7A7A}\x{306E}"
    1614           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    1615             RenderRubyRun (anonymous) at (1987,226) size 24x19
     1614          RenderText {#text} at (1958,279) size 46x489
     1615            text run at (1958,279) width 210: "\x{3046}\x{3066}\x{3044}\x{308B}\x{3046}\x{3061}\x{306B}\x{5F62}\x{306F}\x{6D88}\x{3048}\x{3066}\x{306A}"
     1616            text run at (1986,0) width 210: "\x{304F}\x{306A}\x{3063}\x{3066}\x{3001}\x{305F}\x{3060}\x{58F0}\x{3060}\x{3051}\x{304C}\x{7A7A}\x{306E}"
     1617          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1618            RenderRubyRun (anonymous) at (1983,208) size 24x19
    16161619              RenderRubyText {RT} at (-9,0) size 14x19
    16171620                RenderText {#text} at (2,0) size 10x19
     
    16211624                  RenderText {#text} at (3,1) size 18x17
    16221625                    text run at (3,1) width 17: "\x{88E1}"
    1623           RenderText {#text} at (1990,244) size 18x178
    1624             text run at (1990,244) width 178: "\x{306B}\x{6B8B}\x{308B}\x{306E}\x{304B}\x{3082}\x{77E5}\x{308C}\x{306A}\x{3044}\x{3002}"
    1625           RenderBR {BR} at (1990,421) size 18x1
    1626           RenderText {#text} at (2018,0) size 18x17
    1627             text run at (2018,0) width 17: "\x{3000}"
    1628           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    1629             RenderRubyRun (anonymous) at (2015,16) size 24x37
     1626          RenderText {#text} at (1986,226) size 18x178
     1627            text run at (1986,226) width 178: "\x{306B}\x{6B8B}\x{308B}\x{306E}\x{304B}\x{3082}\x{77E5}\x{308C}\x{306A}\x{3044}\x{3002}"
     1628          RenderBR {BR} at (1986,403) size 18x1
     1629          RenderText {#text} at (2014,0) size 18x17
     1630            text run at (2014,0) width 17: "\x{3000}"
     1631          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     1632            RenderRubyRun (anonymous) at (2011,15) size 24x37
    16301633              RenderRubyText {RT} at (-9,0) size 14x37
    16311634                RenderText {#text} at (2,0) size 10x37
     
    16351638                  RenderText {#text} at (3,1) size 18x35
    16361639                    text run at (3,1) width 35: "\x{5DCC}\x{89D2}"
    1637           RenderText {#text} at (2018,53) size 18x130
    1638             text run at (2018,53) width 129: "\x{3092}\x{92ED}\x{3069}\x{304F}\x{5EFB}\x{3063}\x{3066}\x{3001}"
    1639           RenderRuby (inline) {RUBY} at (0,0) size 18x34
    1640             RenderRubyRun (anonymous) at (2015,182) size 24x33
     1640          RenderText {#text} at (2014,51) size 18x130
     1641            text run at (2014,51) width 129: "\x{3092}\x{92ED}\x{3069}\x{304F}\x{5EFB}\x{3063}\x{3066}\x{3001}"
     1642          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     1643            RenderRubyRun (anonymous) at (2011,180) size 24x33
    16411644              RenderRubyText {RT} at (-9,0) size 14x33
    16421645                RenderText {#text} at (2,0) size 10x33
     
    16461649                  RenderText {#text} at (3,0) size 18x33
    16471650                    text run at (3,0) width 33: "\x{6309}\x{6469}"
    1648           RenderText {#text} at (2018,215) size 18x33
    1649             text run at (2018,215) width 33: "\x{306A}\x{3089}"
    1650           RenderRuby (inline) {RUBY} at (0,0) size 18x56
    1651             RenderRubyRun (anonymous) at (2015,247) size 24x55
     1651          RenderText {#text} at (2014,213) size 18x33
     1652            text run at (2014,213) width 33: "\x{306A}\x{3089}"
     1653          RenderRuby (inline) {RUBY} at (0,0) size 18x54
     1654            RenderRubyRun (anonymous) at (2011,244) size 24x55
    16521655              RenderRubyText {RT} at (-9,0) size 14x55
    16531656                RenderText {#text} at (2,0) size 10x55
     
    16571660                  RenderText {#text} at (3,1) size 18x53
    16581661                    text run at (3,1) width 53: "\x{771F}\x{9006}\x{69D8}"
    1659           RenderText {#text} at (2018,302) size 18x146
    1660             text run at (2018,302) width 146: "\x{306B}\x{843D}\x{3064}\x{308B}\x{3068}\x{3053}\x{308D}\x{3092}\x{3001}"
    1661           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    1662             RenderRubyRun (anonymous) at (2015,447) size 24x19
     1662          RenderText {#text} at (2014,298) size 18x146
     1663            text run at (2014,298) width 146: "\x{306B}\x{843D}\x{3064}\x{308B}\x{3068}\x{3053}\x{308D}\x{3092}\x{3001}"
     1664          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1665            RenderRubyRun (anonymous) at (2011,442) size 24x19
    16631666              RenderRubyText {RT} at (-9,0) size 14x19
    16641667                RenderText {#text} at (2,0) size 10x19
     
    16681671                  RenderText {#text} at (3,1) size 18x17
    16691672                    text run at (3,1) width 17: "\x{969B}"
    1670           RenderText {#text} at (2018,466) size 46x483
    1671             text run at (2018,466) width 17: "\x{3069}"
    1672             text run at (2046,0) width 146: "\x{304F}\x{53F3}\x{3078}\x{5207}\x{308C}\x{3066}\x{3001}\x{6A2A}\x{306B}"
    1673           RenderRuby (inline) {RUBY} at (0,0) size 18x34
    1674             RenderRubyRun (anonymous) at (2043,145) size 24x33
     1673          RenderText {#text} at (2014,460) size 46x493
     1674            text run at (2014,460) width 33: "\x{3069}\x{304F}"
     1675            text run at (2042,0) width 129: "\x{53F3}\x{3078}\x{5207}\x{308C}\x{3066}\x{3001}\x{6A2A}\x{306B}"
     1676          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     1677            RenderRubyRun (anonymous) at (2039,129) size 24x33
    16751678              RenderRubyText {RT} at (-9,0) size 14x33
    16761679                RenderText {#text} at (2,0) size 10x33
     
    16801683                  RenderText {#text} at (3,0) size 18x33
    16811684                    text run at (3,0) width 33: "\x{898B}\x{4E0B}"
    1682           RenderText {#text} at (2046,178) size 18x49
    1683             text run at (2046,178) width 49: "\x{3059}\x{3068}\x{3001}"
    1684           RenderRuby (inline) {RUBY} at (0,0) size 18x18
    1685             RenderRubyRun (anonymous) at (2043,226) size 24x17
     1685          RenderText {#text} at (2042,161) size 18x50
     1686            text run at (2042,161) width 49: "\x{3059}\x{3068}\x{3001}"
     1687          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1688            RenderRubyRun (anonymous) at (2039,210) size 24x17
    16861689              RenderRubyText {RT} at (-9,0) size 14x17
    16871690                RenderText {#text} at (2,3) size 10x10
     
    16911694                  RenderText {#text} at (3,0) size 18x17
    16921695                    text run at (3,0) width 17: "\x{83DC}"
    1693           RenderText {#text} at (2046,243) size 46x486
    1694             text run at (2046,243) width 242: "\x{306E}\x{82B1}\x{304C}\x{4E00}\x{9762}\x{306B}\x{898B}\x{3048}\x{308B}\x{3002}\x{96F2}\x{96C0}\x{306F}\x{3042}\x{3059}"
    1695             text run at (2074,0) width 291: "\x{3053}\x{3078}\x{843D}\x{3061}\x{308B}\x{306E}\x{304B}\x{3068}\x{601D}\x{3063}\x{305F}\x{3002}\x{3044}\x{3044}\x{3084}\x{3001}\x{3042}\x{306E}"
    1696           RenderRuby (inline) {RUBY} at (0,0) size 18x34
    1697             RenderRubyRun (anonymous) at (2071,290) size 24x33
     1696          RenderText {#text} at (2042,227) size 46x486
     1697            text run at (2042,227) width 258: "\x{306E}\x{82B1}\x{304C}\x{4E00}\x{9762}\x{306B}\x{898B}\x{3048}\x{308B}\x{3002}\x{96F2}\x{96C0}\x{306F}\x{3042}\x{3059}\x{3053}"
     1698            text run at (2070,0) width 274: "\x{3078}\x{843D}\x{3061}\x{308B}\x{306E}\x{304B}\x{3068}\x{601D}\x{3063}\x{305F}\x{3002}\x{3044}\x{3044}\x{3084}\x{3001}\x{3042}\x{306E}"
     1699          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     1700            RenderRubyRun (anonymous) at (2067,274) size 24x33
    16981701              RenderRubyText {RT} at (-9,0) size 14x33
    16991702                RenderText {#text} at (2,0) size 10x33
     
    17031706                  RenderText {#text} at (3,0) size 18x33
    17041707                    text run at (3,0) width 33: "\x{9EC4}\x{91D1}"
    1705           RenderText {#text} at (2074,323) size 46x485
    1706             text run at (2074,323) width 162: "\x{306E}\x{539F}\x{304B}\x{3089}\x{98DB}\x{3073}\x{4E0A}\x{304C}\x{3063}\x{3066}"
    1707             text run at (2102,0) width 307: "\x{304F}\x{308B}\x{306E}\x{304B}\x{3068}\x{601D}\x{3063}\x{305F}\x{3002}\x{6B21}\x{306B}\x{306F}\x{843D}\x{3061}\x{308B}\x{96F2}\x{96C0}\x{3068}\x{3001}"
    1708           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    1709             RenderRubyRun (anonymous) at (2099,306) size 24x19
     1708          RenderText {#text} at (2070,306) size 46x485
     1709            text run at (2070,306) width 178: "\x{306E}\x{539F}\x{304B}\x{3089}\x{98DB}\x{3073}\x{4E0A}\x{304C}\x{3063}\x{3066}\x{304F}"
     1710            text run at (2098,0) width 291: "\x{308B}\x{306E}\x{304B}\x{3068}\x{601D}\x{3063}\x{305F}\x{3002}\x{6B21}\x{306B}\x{306F}\x{843D}\x{3061}\x{308B}\x{96F2}\x{96C0}\x{3068}\x{3001}"
     1711          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1712            RenderRubyRun (anonymous) at (2095,289) size 24x19
    17101713              RenderRubyText {RT} at (-9,0) size 14x19
    17111714                RenderText {#text} at (2,0) size 10x19
     
    17151718                  RenderText {#text} at (3,1) size 18x17
    17161719                    text run at (3,1) width 17: "\x{4E0A}"
    1717           RenderText {#text} at (2102,325) size 18x17
    1718             text run at (2102,325) width 17: "\x{308B}"
    1719           RenderRuby (inline) {RUBY} at (0,0) size 18x34
    1720             RenderRubyRun (anonymous) at (2099,341) size 24x33
     1720          RenderText {#text} at (2098,307) size 18x17
     1721            text run at (2098,307) width 17: "\x{308B}"
     1722          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     1723            RenderRubyRun (anonymous) at (2095,323) size 24x33
    17211724              RenderRubyText {RT} at (-9,0) size 14x33
    17221725                RenderText {#text} at (2,0) size 10x33
     
    17261729                  RenderText {#text} at (3,0) size 18x33
    17271730                    text run at (3,0) width 33: "\x{96F2}\x{96C0}"
    1728           RenderText {#text} at (2102,374) size 42x488
    1729             text run at (2102,374) width 113: "\x{304C}\x{5341}\x{6587}\x{5B57}\x{306B}\x{3059}\x{308C}"
    1730             text run at (2126,0) width 484: "\x{9055}\x{3046}\x{306E}\x{304B}\x{3068}\x{601D}\x{3063}\x{305F}\x{3002}\x{6700}\x{5F8C}\x{306B}\x{3001}\x{843D}\x{3061}\x{308B}\x{6642}\x{3082}\x{3001}\x{4E0A}\x{308B}\x{6642}\x{3082}\x{3001}\x{307E}\x{305F}\x{5341}\x{6587}\x{5B57}\x{306B}"
    1731           RenderRuby (inline) {RUBY} at (0,0) size 18x17
    1732             RenderRubyRun (anonymous) at (2151,0) size 24x17
     1731          RenderText {#text} at (2098,356) size 46x486
     1732            text run at (2098,356) width 129: "\x{304C}\x{5341}\x{6587}\x{5B57}\x{306B}\x{3059}\x{308C}\x{9055}"
     1733            text run at (2126,0) width 468: "\x{3046}\x{306E}\x{304B}\x{3068}\x{601D}\x{3063}\x{305F}\x{3002}\x{6700}\x{5F8C}\x{306B}\x{3001}\x{843D}\x{3061}\x{308B}\x{6642}\x{3082}\x{3001}\x{4E0A}\x{308B}\x{6642}\x{3082}\x{3001}\x{307E}\x{305F}\x{5341}\x{6587}\x{5B57}\x{306B}"
     1734          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1735            RenderRubyRun (anonymous) at (2123,467) size 24x17
    17331736              RenderRubyText {RT} at (-9,0) size 14x17
    17341737                RenderText {#text} at (2,3) size 10x10
     
    17381741                  RenderText {#text} at (3,0) size 18x17
    17391742                    text run at (3,0) width 17: "\x{64E6}"
    1740           RenderText {#text} at (2154,17) size 18x403
    1741             text run at (2154,17) width 403: "\x{308C}\x{9055}\x{3046}\x{3068}\x{304D}\x{306B}\x{3082}\x{5143}\x{6C17}\x{3088}\x{304F}\x{9CF4}\x{304D}\x{3064}\x{3065}\x{3051}\x{308B}\x{3060}\x{308D}\x{3046}\x{3068}\x{601D}\x{3063}\x{305F}\x{3002}"
    1742           RenderBR {BR} at (2154,419) size 18x1
    1743           RenderText {#text} at (2182,0) size 18x194
    1744             text run at (2182,0) width 194: "\x{3000}\x{6625}\x{306F}\x{7720}\x{304F}\x{306A}\x{308B}\x{3002}\x{732B}\x{306F}\x{9F20}\x{3092}"
    1745           RenderRuby (inline) {RUBY} at (0,0) size 18x18
    1746             RenderRubyRun (anonymous) at (2179,193) size 24x17
     1743          RenderText {#text} at (2150,0) size 18x403
     1744            text run at (2150,0) width 403: "\x{308C}\x{9055}\x{3046}\x{3068}\x{304D}\x{306B}\x{3082}\x{5143}\x{6C17}\x{3088}\x{304F}\x{9CF4}\x{304D}\x{3064}\x{3065}\x{3051}\x{308B}\x{3060}\x{308D}\x{3046}\x{3068}\x{601D}\x{3063}\x{305F}\x{3002}"
     1745          RenderBR {BR} at (2150,402) size 18x1
     1746          RenderText {#text} at (2178,0) size 18x194
     1747            text run at (2178,0) width 194: "\x{3000}\x{6625}\x{306F}\x{7720}\x{304F}\x{306A}\x{308B}\x{3002}\x{732B}\x{306F}\x{9F20}\x{3092}"
     1748          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1749            RenderRubyRun (anonymous) at (2175,193) size 24x17
    17471750              RenderRubyText {RT} at (-9,0) size 14x17
    17481751                RenderText {#text} at (2,3) size 10x10
     
    17521755                  RenderText {#text} at (3,0) size 18x17
    17531756                    text run at (3,0) width 17: "\x{6355}"
    1754           RenderText {#text} at (2182,210) size 46x485
    1755             text run at (2182,210) width 274: "\x{308B}\x{4E8B}\x{3092}\x{5FD8}\x{308C}\x{3001}\x{4EBA}\x{9593}\x{306F}\x{501F}\x{91D1}\x{306E}\x{3042}\x{308B}\x{4E8B}\x{3092}\x{5FD8}"
    1756             text run at (2210,0) width 146: "\x{308C}\x{308B}\x{3002}\x{6642}\x{306B}\x{306F}\x{81EA}\x{5206}\x{306E}"
    1757           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    1758             RenderRubyRun (anonymous) at (2207,145) size 24x37
     1757          RenderText {#text} at (2178,210) size 46x485
     1758            text run at (2178,210) width 274: "\x{308B}\x{4E8B}\x{3092}\x{5FD8}\x{308C}\x{3001}\x{4EBA}\x{9593}\x{306F}\x{501F}\x{91D1}\x{306E}\x{3042}\x{308B}\x{4E8B}\x{3092}\x{5FD8}"
     1759            text run at (2206,0) width 146: "\x{308C}\x{308B}\x{3002}\x{6642}\x{306B}\x{306F}\x{81EA}\x{5206}\x{306E}"
     1760          RenderRuby (inline) {RUBY} at (0,0) size 18x30
     1761            RenderRubyRun (anonymous) at (2203,141) size 24x37
    17591762              RenderRubyText {RT} at (-9,0) size 14x37
    17601763                RenderText {#text} at (2,0) size 10x37
     
    17641767                  RenderText {#text} at (3,10) size 18x17
    17651768                    text run at (3,10) width 17: "\x{9B42}"
    1766           RenderText {#text} at (2210,182) size 18x17
    1767             text run at (2210,182) width 17: "\x{306E}"
    1768           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    1769             RenderRubyRun (anonymous) at (2207,198) size 24x37
     1769          RenderText {#text} at (2206,174) size 18x17
     1770            text run at (2206,174) width 17: "\x{306E}"
     1771          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     1772            RenderRubyRun (anonymous) at (2203,189) size 24x37
    17701773              RenderRubyText {RT} at (-9,0) size 14x37
    17711774                RenderText {#text} at (2,0) size 10x37
     
    17751778                  RenderText {#text} at (3,1) size 18x35
    17761779                    text run at (3,1) width 35: "\x{5C45}\x{6240}"
    1777           RenderText {#text} at (2210,235) size 46x493
    1778             text run at (2210,235) width 258: "\x{3055}\x{3048}\x{5FD8}\x{308C}\x{3066}\x{6B63}\x{4F53}\x{306A}\x{304F}\x{306A}\x{308B}\x{3002}\x{305F}\x{3060}\x{83DC}\x{306E}"
    1779             text run at (2238,0) width 194: "\x{82B1}\x{3092}\x{9060}\x{304F}\x{671B}\x{3093}\x{3060}\x{3068}\x{304D}\x{306B}\x{773C}\x{304C}"
    1780           RenderRuby (inline) {RUBY} at (0,0) size 18x18
    1781             RenderRubyRun (anonymous) at (2235,193) size 24x17
     1780          RenderText {#text} at (2206,225) size 46x483
     1781            text run at (2206,225) width 258: "\x{3055}\x{3048}\x{5FD8}\x{308C}\x{3066}\x{6B63}\x{4F53}\x{306A}\x{304F}\x{306A}\x{308B}\x{3002}\x{305F}\x{3060}\x{83DC}\x{306E}"
     1782            text run at (2234,0) width 194: "\x{82B1}\x{3092}\x{9060}\x{304F}\x{671B}\x{3093}\x{3060}\x{3068}\x{304D}\x{306B}\x{773C}\x{304C}"
     1783          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1784            RenderRubyRun (anonymous) at (2231,193) size 24x17
    17821785              RenderRubyText {RT} at (-9,0) size 14x17
    17831786                RenderText {#text} at (2,3) size 10x10
     
    17871790                  RenderText {#text} at (3,0) size 18x17
    17881791                    text run at (3,0) width 17: "\x{9192}"
    1789           RenderText {#text} at (2238,210) size 46x485
    1790             text run at (2238,210) width 274: "\x{3081}\x{308B}\x{3002}\x{96F2}\x{96C0}\x{306E}\x{58F0}\x{3092}\x{805E}\x{3044}\x{305F}\x{3068}\x{304D}\x{306B}\x{9B42}\x{306E}\x{3042}"
    1791             text run at (2266,0) width 49: "\x{308A}\x{304B}\x{304C}"
    1792           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    1793             RenderRubyRun (anonymous) at (2263,48) size 24x37
     1792          RenderText {#text} at (2234,210) size 46x485
     1793            text run at (2234,210) width 274: "\x{3081}\x{308B}\x{3002}\x{96F2}\x{96C0}\x{306E}\x{58F0}\x{3092}\x{805E}\x{3044}\x{305F}\x{3068}\x{304D}\x{306B}\x{9B42}\x{306E}\x{3042}"
     1794            text run at (2262,0) width 49: "\x{308A}\x{304B}\x{304C}"
     1795          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     1796            RenderRubyRun (anonymous) at (2259,47) size 24x37
    17941797              RenderRubyText {RT} at (-9,0) size 14x37
    17951798                RenderText {#text} at (2,0) size 10x37
     
    17991802                  RenderText {#text} at (3,1) size 18x35
    18001803                    text run at (3,1) width 35: "\x{5224}\x{7136}"
    1801           RenderText {#text} at (2266,85) size 90x489
    1802             text run at (2266,85) width 403: "\x{3059}\x{308B}\x{3002}\x{96F2}\x{96C0}\x{306E}\x{9CF4}\x{304F}\x{306E}\x{306F}\x{53E3}\x{3067}\x{9CF4}\x{304F}\x{306E}\x{3067}\x{306F}\x{306A}\x{3044}\x{3001}\x{9B42}\x{5168}\x{4F53}\x{304C}\x{9CF4}"
    1803             text run at (2290,0) width 484: "\x{304F}\x{306E}\x{3060}\x{3002}\x{9B42}\x{306E}\x{6D3B}\x{52D5}\x{304C}\x{58F0}\x{306B}\x{3042}\x{3089}\x{308F}\x{308C}\x{305F}\x{3082}\x{306E}\x{306E}\x{3046}\x{3061}\x{3067}\x{3001}\x{3042}\x{308C}\x{307B}\x{3069}\x{5143}\x{6C17}\x{306E}"
    1804             text run at (2314,0) width 484: "\x{3042}\x{308B}\x{3082}\x{306E}\x{306F}\x{306A}\x{3044}\x{3002}\x{3042}\x{3042}\x{6109}\x{5FEB}\x{3060}\x{3002}\x{3053}\x{3046}\x{601D}\x{3063}\x{3066}\x{3001}\x{3053}\x{3046}\x{6109}\x{5FEB}\x{306B}\x{306A}\x{308B}\x{306E}\x{304C}\x{8A69}"
    1805             text run at (2338,0) width 65: "\x{3067}\x{3042}\x{308B}\x{3002}"
    1806           RenderBR {BR} at (2338,64) size 18x1
    1807           RenderText {#text} at (2362,0) size 46x484
    1808             text run at (2362,0) width 484: "\x{3000}\x{305F}\x{3061}\x{307E}\x{3061}\x{30B7}\x{30A7}\x{30EC}\x{30FC}\x{306E}\x{96F2}\x{96C0}\x{306E}\x{8A69}\x{3092}\x{601D}\x{3044}\x{51FA}\x{3057}\x{3066}\x{3001}\x{53E3}\x{306E}\x{3046}\x{3061}\x{3067}\x{899A}\x{3048}\x{305F}\x{3068}"
    1809             text run at (2390,0) width 65: "\x{3053}\x{308D}\x{3060}\x{3051}"
    1810           RenderRuby (inline) {RUBY} at (0,0) size 18x47
    1811             RenderRubyRun (anonymous) at (2387,64) size 24x46
     1804          RenderText {#text} at (2262,83) size 90x487
     1805            text run at (2262,83) width 403: "\x{3059}\x{308B}\x{3002}\x{96F2}\x{96C0}\x{306E}\x{9CF4}\x{304F}\x{306E}\x{306F}\x{53E3}\x{3067}\x{9CF4}\x{304F}\x{306E}\x{3067}\x{306F}\x{306A}\x{3044}\x{3001}\x{9B42}\x{5168}\x{4F53}\x{304C}\x{9CF4}"
     1806            text run at (2286,0) width 484: "\x{304F}\x{306E}\x{3060}\x{3002}\x{9B42}\x{306E}\x{6D3B}\x{52D5}\x{304C}\x{58F0}\x{306B}\x{3042}\x{3089}\x{308F}\x{308C}\x{305F}\x{3082}\x{306E}\x{306E}\x{3046}\x{3061}\x{3067}\x{3001}\x{3042}\x{308C}\x{307B}\x{3069}\x{5143}\x{6C17}\x{306E}"
     1807            text run at (2310,0) width 484: "\x{3042}\x{308B}\x{3082}\x{306E}\x{306F}\x{306A}\x{3044}\x{3002}\x{3042}\x{3042}\x{6109}\x{5FEB}\x{3060}\x{3002}\x{3053}\x{3046}\x{601D}\x{3063}\x{3066}\x{3001}\x{3053}\x{3046}\x{6109}\x{5FEB}\x{306B}\x{306A}\x{308B}\x{306E}\x{304C}\x{8A69}"
     1808            text run at (2334,0) width 65: "\x{3067}\x{3042}\x{308B}\x{3002}"
     1809          RenderBR {BR} at (2334,64) size 18x1
     1810          RenderText {#text} at (2358,0) size 46x484
     1811            text run at (2358,0) width 484: "\x{3000}\x{305F}\x{3061}\x{307E}\x{3061}\x{30B7}\x{30A7}\x{30EC}\x{30FC}\x{306E}\x{96F2}\x{96C0}\x{306E}\x{8A69}\x{3092}\x{601D}\x{3044}\x{51FA}\x{3057}\x{3066}\x{3001}\x{53E3}\x{306E}\x{3046}\x{3061}\x{3067}\x{899A}\x{3048}\x{305F}\x{3068}"
     1812            text run at (2386,0) width 65: "\x{3053}\x{308D}\x{3060}\x{3051}"
     1813          RenderRuby (inline) {RUBY} at (0,0) size 18x41
     1814            RenderRubyRun (anonymous) at (2383,61) size 24x46
    18121815              RenderRubyText {RT} at (-9,0) size 14x46
    18131816                RenderText {#text} at (2,0) size 10x46
     
    18171820                  RenderText {#text} at (3,3) size 18x40
    18181821                    text run at (3,3) width 40: "\x{6697}\x{8AA6}"
    1819           RenderText {#text} at (2390,110) size 42x482
    1820             text run at (2390,110) width 371: "\x{3057}\x{3066}\x{898B}\x{305F}\x{304C}\x{3001}\x{899A}\x{3048}\x{3066}\x{3044}\x{308B}\x{3068}\x{3053}\x{308D}\x{306F}\x{4E8C}\x{4E09}\x{53E5}\x{3057}\x{304B}\x{306A}\x{304B}\x{3063}"
    1821             text run at (2414,0) width 307: "\x{305F}\x{3002}\x{305D}\x{306E}\x{4E8C}\x{4E09}\x{53E5}\x{306E}\x{306A}\x{304B}\x{306B}\x{3053}\x{3093}\x{306A}\x{306E}\x{304C}\x{3042}\x{308B}\x{3002}"
    1822           RenderBR {BR} at (2414,306) size 18x1
    1823         RenderBlock {DIV} at (2435,32) size 114x461
     1822          RenderText {#text} at (2386,104) size 42x476
     1823            text run at (2386,104) width 371: "\x{3057}\x{3066}\x{898B}\x{305F}\x{304C}\x{3001}\x{899A}\x{3048}\x{3066}\x{3044}\x{308B}\x{3068}\x{3053}\x{308D}\x{306F}\x{4E8C}\x{4E09}\x{53E5}\x{3057}\x{304B}\x{306A}\x{304B}\x{3063}"
     1824            text run at (2410,0) width 307: "\x{305F}\x{3002}\x{305D}\x{306E}\x{4E8C}\x{4E09}\x{53E5}\x{306E}\x{306A}\x{304B}\x{306B}\x{3053}\x{3093}\x{306A}\x{306E}\x{304C}\x{3042}\x{308B}\x{3002}"
     1825          RenderBR {BR} at (2410,306) size 18x1
     1826        RenderBlock {DIV} at (2431,32) size 114x461
    18241827          RenderText {#text} at (3,0) size 18x190
    18251828            text run at (3,0) width 190: "\x{3000}\x{3000}We look before and after"
     
    18371840            text run at (96,0) width 355: "Our sweetest songs are those that tell of saddest thought."
    18381841          RenderBR {BR} at (96,355) size 18x0
    1839         RenderBlock (anonymous) at (2549,0) size 1807x493
     1842        RenderBlock (anonymous) at (2545,0) size 1807x493
    18401843          RenderText {#text} at (10,0) size 18x113
    18411844            text run at (10,0) width 113: "\x{300C}\x{524D}\x{3092}\x{307F}\x{3066}\x{306F}\x{3001}"
    1842           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    1843             RenderRubyRun (anonymous) at (7,113) size 24x19
     1845          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1846            RenderRubyRun (anonymous) at (7,112) size 24x19
    18441847              RenderRubyText {RT} at (-9,0) size 14x19
    18451848                RenderText {#text} at (2,0) size 10x19
     
    18491852                  RenderText {#text} at (3,1) size 18x17
    18501853                    text run at (3,1) width 17: "\x{5F8C}"
    1851           RenderText {#text} at (10,131) size 18x98
    1852             text run at (10,131) width 97: "\x{3048}\x{3092}\x{898B}\x{3066}\x{306F}\x{3001}"
    1853           RenderRuby (inline) {RUBY} at (0,0) size 18x34
    1854             RenderRubyRun (anonymous) at (7,228) size 24x33
     1854          RenderText {#text} at (10,129) size 18x98
     1855            text run at (10,129) width 97: "\x{3048}\x{3092}\x{898B}\x{3066}\x{306F}\x{3001}"
     1856          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     1857            RenderRubyRun (anonymous) at (7,226) size 24x33
    18551858              RenderRubyText {RT} at (-9,0) size 14x33
    18561859                RenderText {#text} at (2,0) size 10x33
     
    18601863                  RenderText {#text} at (3,0) size 18x33
    18611864                    text run at (3,0) width 33: "\x{7269}\x{6B32}"
    1862           RenderText {#text} at (10,261) size 46x488
    1863             text run at (10,261) width 226: "\x{3057}\x{3068}\x{3001}\x{3042}\x{3053}\x{304C}\x{308B}\x{308B}\x{304B}\x{306A}\x{308F}\x{308C}\x{3002}\x{8179}"
     1865          RenderText {#text} at (10,259) size 46x486
     1866            text run at (10,259) width 226: "\x{3057}\x{3068}\x{3001}\x{3042}\x{3053}\x{304C}\x{308B}\x{308B}\x{304B}\x{306A}\x{308F}\x{308C}\x{3002}\x{8179}"
    18641867            text run at (38,0) width 468: "\x{304B}\x{3089}\x{306E}\x{3001}\x{7B11}\x{3068}\x{3044}\x{3048}\x{3069}\x{3001}\x{82E6}\x{3057}\x{307F}\x{306E}\x{3001}\x{305D}\x{3053}\x{306B}\x{3042}\x{308B}\x{3079}\x{3057}\x{3002}\x{3046}\x{3064}\x{304F}\x{3057}\x{304D}\x{3001}"
    1865           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    1866             RenderRubyRun (anonymous) at (35,467) size 24x19
     1868          RenderRuby (inline) {RUBY} at (0,0) size 18x19
     1869            RenderRubyRun (anonymous) at (35,466) size 24x19
    18671870              RenderRubyText {RT} at (-9,0) size 14x19
    18681871                RenderText {#text} at (2,0) size 10x19
     
    18741877          RenderText {#text} at (66,0) size 18x210
    18751878            text run at (66,0) width 210: "\x{307F}\x{306E}\x{6B4C}\x{306B}\x{3001}\x{60B2}\x{3057}\x{3055}\x{306E}\x{3001}\x{6975}\x{307F}\x{306E}"
    1876           RenderRuby (inline) {RUBY} at (0,0) size 18x29
    1877             RenderRubyRun (anonymous) at (63,209) size 24x28
     1879          RenderRuby (inline) {RUBY} at (0,0) size 18x21
     1880            RenderRubyRun (anonymous) at (63,205) size 24x28
    18781881              RenderRubyText {RT} at (-9,0) size 14x28
    18791882                RenderText {#text} at (2,0) size 10x28
     
    18831886                  RenderText {#text} at (3,5) size 18x17
    18841887                    text run at (3,5) width 17: "\x{60F3}"
    1885           RenderText {#text} at (66,237) size 18x17
    1886             text run at (66,237) width 17: "\x{3001}"
    1887           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    1888             RenderRubyRun (anonymous) at (63,254) size 24x19
     1888          RenderText {#text} at (66,229) size 18x17
     1889            text run at (66,229) width 17: "\x{3001}"
     1890          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1891            RenderRubyRun (anonymous) at (63,245) size 24x19
    18891892              RenderRubyText {RT} at (-9,0) size 14x19
    18901893                RenderText {#text} at (2,0) size 10x19
     
    18941897                  RenderText {#text} at (3,1) size 18x17
    18951898                    text run at (3,1) width 17: "\x{7C60}"
    1896           RenderText {#text} at (66,272) size 18x98
    1897             text run at (66,272) width 97: "\x{308B}\x{3068}\x{305E}\x{77E5}\x{308C}\x{300D}"
    1898           RenderBR {BR} at (66,369) size 18x1
     1899          RenderText {#text} at (66,262) size 18x98
     1900            text run at (66,262) width 97: "\x{308B}\x{3068}\x{305E}\x{77E5}\x{308C}\x{300D}"
     1901          RenderBR {BR} at (66,359) size 18x1
    18991902          RenderText {#text} at (90,0) size 46x484
    19001903            text run at (90,0) width 484: "\x{3000}\x{306A}\x{308B}\x{307B}\x{3069}\x{3044}\x{304F}\x{3089}\x{8A69}\x{4EBA}\x{304C}\x{5E78}\x{798F}\x{3067}\x{3082}\x{3001}\x{3042}\x{306E}\x{96F2}\x{96C0}\x{306E}\x{3088}\x{3046}\x{306B}\x{601D}\x{3044}\x{5207}\x{3063}\x{3066}\x{3001}"
    19011904            text run at (118,0) width 339: "\x{4E00}\x{5FC3}\x{4E0D}\x{4E71}\x{306B}\x{3001}\x{524D}\x{5F8C}\x{3092}\x{5FD8}\x{5374}\x{3057}\x{3066}\x{3001}\x{308F}\x{304C}\x{559C}\x{3073}\x{3092}\x{6B4C}\x{3046}"
    1902           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    1903             RenderRubyRun (anonymous) at (115,338) size 24x19
     1905          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1906            RenderRubyRun (anonymous) at (115,337) size 24x19
    19041907              RenderRubyText {RT} at (-9,0) size 14x19
    19051908                RenderText {#text} at (2,0) size 10x19
     
    19091912                  RenderText {#text} at (3,1) size 18x17
    19101913                    text run at (3,1) width 17: "\x{8A33}"
    1911           RenderText {#text} at (118,357) size 46x487
    1912             text run at (118,357) width 129: "\x{306B}\x{306F}\x{884C}\x{304F}\x{307E}\x{3044}\x{3002}\x{897F}"
     1914          RenderText {#text} at (118,355) size 46x485
     1915            text run at (118,355) width 129: "\x{306B}\x{306F}\x{884C}\x{304F}\x{307E}\x{3044}\x{3002}\x{897F}"
    19131916            text run at (146,0) width 291: "\x{6D0B}\x{306E}\x{8A69}\x{306F}\x{7121}\x{8AD6}\x{306E}\x{4E8B}\x{3001}\x{652F}\x{90A3}\x{306E}\x{8A69}\x{306B}\x{3082}\x{3001}\x{3088}\x{304F}"
    1914           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    1915             RenderRubyRun (anonymous) at (143,290) size 24x37
     1917          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     1918            RenderRubyRun (anonymous) at (143,289) size 24x37
    19161919              RenderRubyText {RT} at (-9,0) size 14x37
    19171920                RenderText {#text} at (2,0) size 10x37
     
    19211924                  RenderText {#text} at (3,1) size 18x35
    19221925                    text run at (3,1) width 35: "\x{4E07}\x{659B}"
    1923           RenderText {#text} at (146,327) size 18x17
    1924             text run at (146,327) width 17: "\x{306E}"
    1925           RenderRuby (inline) {RUBY} at (0,0) size 18x29
    1926             RenderRubyRun (anonymous) at (143,343) size 24x28
     1926          RenderText {#text} at (146,325) size 18x17
     1927            text run at (146,325) width 17: "\x{306E}"
     1928          RenderRuby (inline) {RUBY} at (0,0) size 18x21
     1929            RenderRubyRun (anonymous) at (143,337) size 24x28
    19271930              RenderRubyText {RT} at (-9,0) size 14x28
    19281931                RenderText {#text} at (2,0) size 10x28
     
    19321935                  RenderText {#text} at (3,5) size 18x17
    19331936                    text run at (3,5) width 17: "\x{6101}"
    1934           RenderText {#text} at (146,371) size 46x484
    1935             text run at (146,371) width 113: "\x{306A}\x{3069}\x{3068}\x{4E91}\x{3046}\x{5B57}\x{304C}"
    1936             text run at (174,0) width 178: "\x{3042}\x{308B}\x{3002}\x{8A69}\x{4EBA}\x{3060}\x{304B}\x{3089}\x{4E07}\x{659B}\x{3067}"
    1937           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    1938             RenderRubyRun (anonymous) at (171,177) size 24x37
     1937          RenderText {#text} at (146,361) size 46x491
     1938            text run at (146,361) width 129: "\x{306A}\x{3069}\x{3068}\x{4E91}\x{3046}\x{5B57}\x{304C}\x{3042}"
     1939            text run at (174,0) width 162: "\x{308B}\x{3002}\x{8A69}\x{4EBA}\x{3060}\x{304B}\x{3089}\x{4E07}\x{659B}\x{3067}"
     1940          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     1941            RenderRubyRun (anonymous) at (171,160) size 24x37
    19391942              RenderRubyText {RT} at (-9,0) size 14x37
    19401943                RenderText {#text} at (2,0) size 10x37
     
    19441947                  RenderText {#text} at (3,1) size 18x35
    19451948                    text run at (3,1) width 35: "\x{7D20}\x{4EBA}"
    1946           RenderText {#text} at (174,214) size 18x49
    1947             text run at (174,214) width 49: "\x{306A}\x{3089}\x{4E00}"
    1948           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    1949             RenderRubyRun (anonymous) at (171,263) size 24x19
     1949          RenderText {#text} at (174,196) size 18x49
     1950            text run at (174,196) width 49: "\x{306A}\x{3089}\x{4E00}"
     1951          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     1952            RenderRubyRun (anonymous) at (171,243) size 24x19
    19501953              RenderRubyText {RT} at (-9,0) size 14x19
    19511954                RenderText {#text} at (2,0) size 10x19
     
    19551958                  RenderText {#text} at (3,1) size 18x17
    19561959                    text run at (3,1) width 17: "\x{5408}"
    1957           RenderText {#text} at (174,281) size 46x492
    1958             text run at (174,281) width 210: "\x{3067}\x{6E08}\x{3080}\x{304B}\x{3082}\x{77E5}\x{308C}\x{306C}\x{3002}\x{3057}\x{3066}\x{898B}\x{308B}"
    1959             text run at (202,0) width 242: "\x{3068}\x{8A69}\x{4EBA}\x{306F}\x{5E38}\x{306E}\x{4EBA}\x{3088}\x{308A}\x{3082}\x{82E6}\x{52B4}\x{6027}\x{3067}\x{3001}"
    1960           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    1961             RenderRubyRun (anonymous) at (199,242) size 24x37
     1960          RenderText {#text} at (174,261) size 46x488
     1961            text run at (174,261) width 226: "\x{3067}\x{6E08}\x{3080}\x{304B}\x{3082}\x{77E5}\x{308C}\x{306C}\x{3002}\x{3057}\x{3066}\x{898B}\x{308B}\x{3068}"
     1962            text run at (202,0) width 226: "\x{8A69}\x{4EBA}\x{306F}\x{5E38}\x{306E}\x{4EBA}\x{3088}\x{308A}\x{3082}\x{82E6}\x{52B4}\x{6027}\x{3067}\x{3001}"
     1963          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     1964            RenderRubyRun (anonymous) at (199,225) size 24x37
    19621965              RenderRubyText {RT} at (-9,0) size 14x37
    19631966                RenderText {#text} at (2,0) size 10x37
     
    19671970                  RenderText {#text} at (3,1) size 18x35
    19681971                    text run at (3,1) width 35: "\x{51E1}\x{9AA8}"
    1969           RenderText {#text} at (202,278) size 46x489
    1970             text run at (202,278) width 210: "\x{306E}\x{500D}\x{4EE5}\x{4E0A}\x{306B}\x{795E}\x{7D4C}\x{304C}\x{92ED}\x{654F}\x{306A}\x{306E}\x{304B}"
    1971             text run at (230,0) width 307: "\x{3082}\x{77E5}\x{308C}\x{3093}\x{3002}\x{8D85}\x{4FD7}\x{306E}\x{559C}\x{3073}\x{3082}\x{3042}\x{308D}\x{3046}\x{304C}\x{3001}\x{7121}\x{91CF}\x{306E}"
    1972           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    1973             RenderRubyRun (anonymous) at (227,306) size 24x37
     1972          RenderText {#text} at (202,260) size 46x487
     1973            text run at (202,260) width 226: "\x{306E}\x{500D}\x{4EE5}\x{4E0A}\x{306B}\x{795E}\x{7D4C}\x{304C}\x{92ED}\x{654F}\x{306A}\x{306E}\x{304B}\x{3082}"
     1974            text run at (230,0) width 291: "\x{77E5}\x{308C}\x{3093}\x{3002}\x{8D85}\x{4FD7}\x{306E}\x{559C}\x{3073}\x{3082}\x{3042}\x{308D}\x{3046}\x{304C}\x{3001}\x{7121}\x{91CF}\x{306E}"
     1975          RenderRuby (inline) {RUBY} at (0,0) size 18x30
     1976            RenderRubyRun (anonymous) at (227,286) size 24x37
    19741977              RenderRubyText {RT} at (-9,0) size 14x37
    19751978                RenderText {#text} at (2,0) size 10x37
     
    19791982                  RenderText {#text} at (3,10) size 18x17
    19801983                    text run at (3,10) width 17: "\x{60B2}"
    1981           RenderText {#text} at (230,343) size 42x489
    1982             text run at (230,343) width 146: "\x{3082}\x{591A}\x{304B}\x{308D}\x{3046}\x{3002}\x{305D}\x{3093}\x{306A}"
    1983             text run at (254,0) width 226: "\x{3089}\x{3070}\x{8A69}\x{4EBA}\x{306B}\x{306A}\x{308B}\x{306E}\x{3082}\x{8003}\x{3048}\x{7269}\x{3060}\x{3002}"
    1984           RenderBR {BR} at (254,225) size 18x1
     1984          RenderText {#text} at (230,319) size 42x481
     1985            text run at (230,319) width 162: "\x{3082}\x{591A}\x{304B}\x{308D}\x{3046}\x{3002}\x{305D}\x{3093}\x{306A}\x{3089}"
     1986            text run at (254,0) width 210: "\x{3070}\x{8A69}\x{4EBA}\x{306B}\x{306A}\x{308B}\x{306E}\x{3082}\x{8003}\x{3048}\x{7269}\x{3060}\x{3002}"
     1987          RenderBR {BR} at (254,209) size 18x1
    19851988          RenderText {#text} at (282,0) size 18x129
    19861989            text run at (282,0) width 129: "\x{3000}\x{3057}\x{3070}\x{3089}\x{304F}\x{306F}\x{8DEF}\x{304C}"
    1987           RenderRuby (inline) {RUBY} at (0,0) size 18x29
    1988             RenderRubyRun (anonymous) at (279,129) size 24x28
     1990          RenderRuby (inline) {RUBY} at (0,0) size 18x21
     1991            RenderRubyRun (anonymous) at (279,125) size 24x28
    19891992              RenderRubyText {RT} at (-9,0) size 14x28
    19901993                RenderText {#text} at (2,0) size 10x28
     
    19941997                  RenderText {#text} at (3,5) size 18x17
    19951998                    text run at (3,5) width 17: "\x{5E73}"
    1996           RenderText {#text} at (282,156) size 18x66
    1997             text run at (282,156) width 65: "\x{3067}\x{3001}\x{53F3}\x{306F}"
     1999          RenderText {#text} at (282,148) size 18x66
     2000            text run at (282,148) width 65: "\x{3067}\x{3001}\x{53F3}\x{306F}"
    19982001          RenderRuby (inline) {RUBY} at (0,0) size 18x50
    1999             RenderRubyRun (anonymous) at (279,221) size 24x49
     2002            RenderRubyRun (anonymous) at (279,213) size 24x49
    20002003              RenderRubyText {RT} at (-9,0) size 14x49
    20012004                RenderText {#text} at (2,0) size 10x49
     
    20052008                  RenderText {#text} at (3,0) size 18x49
    20062009                    text run at (3,0) width 49: "\x{96D1}\x{6728}\x{5C71}"
    2007           RenderText {#text} at (282,270) size 46x480
    2008             text run at (282,270) width 210: "\x{3001}\x{5DE6}\x{306F}\x{83DC}\x{306E}\x{82B1}\x{306E}\x{898B}\x{3064}\x{3065}\x{3051}\x{3067}\x{3042}"
     2010          RenderText {#text} at (282,262) size 46x472
     2011            text run at (282,262) width 210: "\x{3001}\x{5DE6}\x{306F}\x{83DC}\x{306E}\x{82B1}\x{306E}\x{898B}\x{3064}\x{3065}\x{3051}\x{3067}\x{3042}"
    20092012            text run at (310,0) width 129: "\x{308B}\x{3002}\x{8DB3}\x{306E}\x{4E0B}\x{306B}\x{6642}\x{3005}"
    20102013          RenderRuby (inline) {RUBY} at (0,0) size 18x50
     
    20192022          RenderText {#text} at (310,177) size 18x114
    20202023            text run at (310,177) width 113: "\x{3092}\x{8E0F}\x{307F}\x{3064}\x{3051}\x{308B}\x{3002}"
    2021           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    2022             RenderRubyRun (anonymous) at (307,291) size 24x37
     2024          RenderRuby (inline) {RUBY} at (0,0) size 18x30
     2025            RenderRubyRun (anonymous) at (307,287) size 24x37
    20232026              RenderRubyText {RT} at (-9,0) size 14x37
    20242027                RenderText {#text} at (2,0) size 10x37
     
    20282031                  RenderText {#text} at (3,10) size 18x17
    20292032                    text run at (3,10) width 17: "\x{92F8}"
    2030           RenderText {#text} at (310,327) size 46x489
    2031             text run at (310,327) width 162: "\x{306E}\x{3088}\x{3046}\x{306A}\x{8449}\x{304C}\x{9060}\x{616E}\x{306A}\x{304F}"
     2033          RenderText {#text} at (310,319) size 46x481
     2034            text run at (310,319) width 162: "\x{306E}\x{3088}\x{3046}\x{306A}\x{8449}\x{304C}\x{9060}\x{616E}\x{306A}\x{304F}"
    20322035            text run at (338,0) width 194: "\x{56DB}\x{65B9}\x{3078}\x{306E}\x{3057}\x{3066}\x{771F}\x{4E2D}\x{306B}\x{9EC4}\x{8272}\x{306A}"
    2033           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    2034             RenderRubyRun (anonymous) at (335,193) size 24x19
     2036          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     2037            RenderRubyRun (anonymous) at (335,192) size 24x19
    20352038              RenderRubyText {RT} at (-9,0) size 14x19
    20362039                RenderText {#text} at (2,0) size 10x19
     
    20402043                  RenderText {#text} at (3,1) size 18x17
    20412044                    text run at (3,1) width 17: "\x{73E0}"
    2042           RenderText {#text} at (338,212) size 70x487
    2043             text run at (338,212) width 274: "\x{3092}\x{64C1}\x{8B77}\x{3057}\x{3066}\x{3044}\x{308B}\x{3002}\x{83DC}\x{306E}\x{82B1}\x{306B}\x{6C17}\x{3092}\x{3068}\x{3089}\x{308C}"
     2045          RenderText {#text} at (338,210) size 70x485
     2046            text run at (338,210) width 274: "\x{3092}\x{64C1}\x{8B77}\x{3057}\x{3066}\x{3044}\x{308B}\x{3002}\x{83DC}\x{306E}\x{82B1}\x{306B}\x{6C17}\x{3092}\x{3068}\x{3089}\x{308C}"
    20442047            text run at (362,0) width 484: "\x{3066}\x{3001}\x{8E0F}\x{307F}\x{3064}\x{3051}\x{305F}\x{3042}\x{3068}\x{3067}\x{3001}\x{6C17}\x{306E}\x{6BD2}\x{306A}\x{4E8B}\x{3092}\x{3057}\x{305F}\x{3068}\x{3001}\x{632F}\x{308A}\x{5411}\x{3044}\x{3066}\x{898B}\x{308B}\x{3068}\x{3001}"
    20452048            text run at (390,0) width 242: "\x{9EC4}\x{8272}\x{306A}\x{73E0}\x{306F}\x{4F9D}\x{7136}\x{3068}\x{3057}\x{3066}\x{92F8}\x{306E}\x{306A}\x{304B}\x{306B}"
     
    20702073          RenderText {#text} at (442,0) size 18x65
    20712074            text run at (442,0) width 65: "\x{3000}\x{8A69}\x{4EBA}\x{306B}"
    2072           RenderRuby (inline) {RUBY} at (0,0) size 18x29
    2073             RenderRubyRun (anonymous) at (439,64) size 24x28
     2075          RenderRuby (inline) {RUBY} at (0,0) size 18x21
     2076            RenderRubyRun (anonymous) at (439,60) size 24x28
    20742077              RenderRubyText {RT} at (-9,0) size 14x28
    20752078                RenderText {#text} at (2,0) size 10x28
     
    20792082                  RenderText {#text} at (3,5) size 18x17
    20802083                    text run at (3,5) width 17: "\x{6182}"
    2081           RenderText {#text} at (442,92) size 18x243
    2082             text run at (442,92) width 242: "\x{306F}\x{3064}\x{304D}\x{3082}\x{306E}\x{304B}\x{3082}\x{77E5}\x{308C}\x{306A}\x{3044}\x{304C}\x{3001}\x{3042}\x{306E}"
    2083           RenderRuby (inline) {RUBY} at (0,0) size 18x34
    2084             RenderRubyRun (anonymous) at (439,334) size 24x33
     2084          RenderText {#text} at (442,84) size 18x243
     2085            text run at (442,84) width 242: "\x{306F}\x{3064}\x{304D}\x{3082}\x{306E}\x{304B}\x{3082}\x{77E5}\x{308C}\x{306A}\x{3044}\x{304C}\x{3001}\x{3042}\x{306E}"
     2086          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     2087            RenderRubyRun (anonymous) at (439,326) size 24x33
    20852088              RenderRubyText {RT} at (-9,0) size 14x33
    20862089                RenderText {#text} at (2,0) size 10x33
     
    20902093                  RenderText {#text} at (3,0) size 18x33
    20912094                    text run at (3,0) width 33: "\x{96F2}\x{96C0}"
    2092           RenderText {#text} at (442,367) size 46x480
    2093             text run at (442,367) width 113: "\x{3092}\x{805E}\x{304F}\x{5FC3}\x{6301}\x{306B}\x{306A}"
    2094             text run at (470,0) width 33: "\x{308C}\x{3070}"
    2095           RenderRuby (inline) {RUBY} at (0,0) size 18x34
    2096             RenderRubyRun (anonymous) at (467,32) size 24x33
     2095          RenderText {#text} at (442,359) size 46x489
     2096            text run at (442,359) width 129: "\x{3092}\x{805E}\x{304F}\x{5FC3}\x{6301}\x{306B}\x{306A}\x{308C}"
     2097            text run at (470,0) width 17: "\x{3070}"
     2098          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     2099            RenderRubyRun (anonymous) at (467,16) size 24x33
    20972100              RenderRubyText {RT} at (-9,0) size 14x33
    20982101                RenderText {#text} at (2,0) size 10x33
     
    21022105                  RenderText {#text} at (3,0) size 18x33
    21032106                    text run at (3,0) width 33: "\x{5FAE}\x{5875}"
    2104           RenderText {#text} at (470,65) size 18x17
    2105             text run at (470,65) width 17: "\x{306E}"
    2106           RenderRuby (inline) {RUBY} at (0,0) size 18x18
    2107             RenderRubyRun (anonymous) at (467,81) size 24x17
     2107          RenderText {#text} at (470,49) size 18x17
     2108            text run at (470,49) width 17: "\x{306E}"
     2109          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     2110            RenderRubyRun (anonymous) at (467,65) size 24x17
    21082111              RenderRubyText {RT} at (-9,0) size 14x17
    21092112                RenderText {#text} at (2,3) size 10x10
     
    21132116                  RenderText {#text} at (3,0) size 18x17
    21142117                    text run at (3,0) width 17: "\x{82E6}"
    2115           RenderText {#text} at (470,98) size 18x339
    2116             text run at (470,98) width 339: "\x{3082}\x{306A}\x{3044}\x{3002}\x{83DC}\x{306E}\x{82B1}\x{3092}\x{898B}\x{3066}\x{3082}\x{3001}\x{305F}\x{3060}\x{3046}\x{308C}\x{3057}\x{304F}\x{3066}\x{80F8}\x{304C}"
    2117           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    2118             RenderRubyRun (anonymous) at (467,437) size 24x19
     2118          RenderText {#text} at (470,82) size 18x339
     2119            text run at (470,82) width 339: "\x{3082}\x{306A}\x{3044}\x{3002}\x{83DC}\x{306E}\x{82B1}\x{3092}\x{898B}\x{3066}\x{3082}\x{3001}\x{305F}\x{3060}\x{3046}\x{308C}\x{3057}\x{304F}\x{3066}\x{80F8}\x{304C}"
     2120          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     2121            RenderRubyRun (anonymous) at (467,420) size 24x19
    21192122              RenderRubyText {RT} at (-9,0) size 14x19
    21202123                RenderText {#text} at (2,0) size 10x19
     
    21242127                  RenderText {#text} at (3,1) size 18x17
    21252128                    text run at (3,1) width 17: "\x{8E8D}"
    2126           RenderText {#text} at (470,455) size 70x488
    2127             text run at (470,455) width 33: "\x{308B}\x{3070}"
    2128             text run at (494,0) width 484: "\x{304B}\x{308A}\x{3060}\x{3002}\x{84B2}\x{516C}\x{82F1}\x{3082}\x{305D}\x{306E}\x{901A}\x{308A}\x{3001}\x{685C}\x{3082}\x{2015}\x{2015}\x{685C}\x{306F}\x{3044}\x{3064}\x{304B}\x{898B}\x{3048}\x{306A}\x{304F}\x{306A}\x{3063}\x{305F}\x{3002}"
    2129             text run at (522,0) width 178: "\x{3053}\x{3046}\x{5C71}\x{306E}\x{4E2D}\x{3078}\x{6765}\x{3066}\x{81EA}\x{7136}\x{306E}"
    2130           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    2131             RenderRubyRun (anonymous) at (519,177) size 24x37
     2129          RenderText {#text} at (470,437) size 70x486
     2130            text run at (470,437) width 49: "\x{308B}\x{3070}\x{304B}"
     2131            text run at (494,0) width 484: "\x{308A}\x{3060}\x{3002}\x{84B2}\x{516C}\x{82F1}\x{3082}\x{305D}\x{306E}\x{901A}\x{308A}\x{3001}\x{685C}\x{3082}\x{2015}\x{2015}\x{685C}\x{306F}\x{3044}\x{3064}\x{304B}\x{898B}\x{3048}\x{306A}\x{304F}\x{306A}\x{3063}\x{305F}\x{3002}\x{3053}"
     2132            text run at (522,0) width 162: "\x{3046}\x{5C71}\x{306E}\x{4E2D}\x{3078}\x{6765}\x{3066}\x{81EA}\x{7136}\x{306E}"
     2133          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     2134            RenderRubyRun (anonymous) at (519,160) size 24x37
    21322135              RenderRubyText {RT} at (-9,0) size 14x37
    21332136                RenderText {#text} at (2,0) size 10x37
     
    21372140                  RenderText {#text} at (3,1) size 18x35
    21382141                    text run at (3,1) width 35: "\x{666F}\x{7269}"
    2139           RenderText {#text} at (522,214) size 46x489
    2140             text run at (522,214) width 274: "\x{306B}\x{63A5}\x{3059}\x{308C}\x{3070}\x{3001}\x{898B}\x{308B}\x{3082}\x{306E}\x{3082}\x{805E}\x{304F}\x{3082}\x{306E}\x{3082}\x{9762}"
    2141             text run at (550,0) width 452: "\x{767D}\x{3044}\x{3002}\x{9762}\x{767D}\x{3044}\x{3060}\x{3051}\x{3067}\x{5225}\x{6BB5}\x{306E}\x{82E6}\x{3057}\x{307F}\x{3082}\x{8D77}\x{3089}\x{306C}\x{3002}\x{8D77}\x{308B}\x{3068}\x{3059}\x{308C}\x{3070}\x{8DB3}\x{304C}"
    2142           RenderRuby (inline) {RUBY} at (0,0) size 18x34
    2143             RenderRubyRun (anonymous) at (547,451) size 24x33
     2142          RenderText {#text} at (522,196) size 46x487
     2143            text run at (522,196) width 291: "\x{306B}\x{63A5}\x{3059}\x{308C}\x{3070}\x{3001}\x{898B}\x{308B}\x{3082}\x{306E}\x{3082}\x{805E}\x{304F}\x{3082}\x{306E}\x{3082}\x{9762}\x{767D}"
     2144            text run at (550,0) width 436: "\x{3044}\x{3002}\x{9762}\x{767D}\x{3044}\x{3060}\x{3051}\x{3067}\x{5225}\x{6BB5}\x{306E}\x{82E6}\x{3057}\x{307F}\x{3082}\x{8D77}\x{3089}\x{306C}\x{3002}\x{8D77}\x{308B}\x{3068}\x{3059}\x{308C}\x{3070}\x{8DB3}\x{304C}"
     2145          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     2146            RenderRubyRun (anonymous) at (547,435) size 24x33
    21442147              RenderRubyText {RT} at (-9,0) size 14x33
    21452148                RenderText {#text} at (2,0) size 10x33
     
    21492152                  RenderText {#text} at (3,0) size 18x33
    21502153                    text run at (3,0) width 33: "\x{8349}\x{81E5}"
    2151           RenderText {#text} at (578,0) size 18x49
    2152             text run at (578,0) width 49: "\x{308C}\x{3066}\x{3001}"
    2153           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    2154             RenderRubyRun (anonymous) at (575,48) size 24x19
     2154          RenderText {#text} at (550,468) size 46x485
     2155            text run at (550,468) width 17: "\x{308C}"
     2156            text run at (578,0) width 33: "\x{3066}\x{3001}"
     2157          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     2158            RenderRubyRun (anonymous) at (575,31) size 24x19
    21552159              RenderRubyText {RT} at (-9,0) size 14x19
    21562160                RenderText {#text} at (2,0) size 10x19
     
    21602164                  RenderText {#text} at (3,1) size 18x17
    21612165                    text run at (3,1) width 17: "\x{65E8}"
    2162           RenderText {#text} at (578,67) size 18x291
    2163             text run at (578,67) width 291: "\x{3044}\x{3082}\x{306E}\x{304C}\x{98DF}\x{3079}\x{3089}\x{308C}\x{306C}\x{304F}\x{3089}\x{3044}\x{306E}\x{4E8B}\x{3060}\x{308D}\x{3046}\x{3002}"
    2164           RenderBR {BR} at (578,357) size 18x1
     2166          RenderText {#text} at (578,49) size 18x291
     2167            text run at (578,49) width 291: "\x{3044}\x{3082}\x{306E}\x{304C}\x{98DF}\x{3079}\x{3089}\x{308C}\x{306C}\x{304F}\x{3089}\x{3044}\x{306E}\x{4E8B}\x{3060}\x{308D}\x{3046}\x{3002}"
     2168          RenderBR {BR} at (578,339) size 18x1
    21652169          RenderText {#text} at (606,0) size 18x419
    21662170            text run at (606,0) width 419: "\x{3000}\x{3057}\x{304B}\x{3057}\x{82E6}\x{3057}\x{307F}\x{306E}\x{306A}\x{3044}\x{306E}\x{306F}\x{306A}\x{305C}\x{3060}\x{308D}\x{3046}\x{3002}\x{305F}\x{3060}\x{3053}\x{306E}\x{666F}\x{8272}\x{3092}\x{4E00}"
    2167           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    2168             RenderRubyRun (anonymous) at (603,419) size 24x19
     2171          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     2172            RenderRubyRun (anonymous) at (603,418) size 24x19
    21692173              RenderRubyText {RT} at (-9,0) size 14x19
    21702174                RenderText {#text} at (2,0) size 10x19
     
    21742178                  RenderText {#text} at (3,1) size 18x17
    21752179                    text run at (3,1) width 17: "\x{5E45}"
    2176           RenderText {#text} at (606,437) size 18x18
    2177             text run at (606,437) width 17: "\x{306E}"
    2178           RenderRuby (inline) {RUBY} at (0,0) size 18x18
    2179             RenderRubyRun (anonymous) at (603,454) size 24x17
     2180          RenderText {#text} at (606,435) size 18x18
     2181            text run at (606,435) width 17: "\x{306E}"
     2182          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     2183            RenderRubyRun (anonymous) at (603,452) size 24x17
    21802184              RenderRubyText {RT} at (-9,0) size 14x17
    21812185                RenderText {#text} at (2,3) size 10x10
     
    21852189                  RenderText {#text} at (3,0) size 18x17
    21862190                    text run at (3,0) width 17: "\x{753B}"
    2187           RenderText {#text} at (606,471) size 46x488
    2188             text run at (606,471) width 17: "\x{3068}"
     2191          RenderText {#text} at (606,469) size 46x486
     2192            text run at (606,469) width 17: "\x{3068}"
    21892193            text run at (634,0) width 33: "\x{3057}\x{3066}"
    21902194          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     
    21992203          RenderText {#text} at (634,49) size 18x33
    22002204            text run at (634,49) width 33: "\x{3001}\x{4E00}"
    2201           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    2202             RenderRubyRun (anonymous) at (631,81) size 24x19
     2205          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     2206            RenderRubyRun (anonymous) at (631,80) size 24x19
    22032207              RenderRubyText {RT} at (-9,0) size 14x19
    22042208                RenderText {#text} at (2,0) size 10x19
     
    22082212                  RenderText {#text} at (3,1) size 18x17
    22092213                    text run at (3,1) width 17: "\x{5DFB}"
    2210           RenderText {#text} at (634,100) size 18x210
    2211             text run at (634,100) width 210: "\x{306E}\x{8A69}\x{3068}\x{3057}\x{3066}\x{8AAD}\x{3080}\x{304B}\x{3089}\x{3067}\x{3042}\x{308B}\x{3002}"
    2212           RenderRuby (inline) {RUBY} at (0,0) size 18x18
    2213             RenderRubyRun (anonymous) at (631,310) size 24x17
     2214          RenderText {#text} at (634,98) size 18x210
     2215            text run at (634,98) width 210: "\x{306E}\x{8A69}\x{3068}\x{3057}\x{3066}\x{8AAD}\x{3080}\x{304B}\x{3089}\x{3067}\x{3042}\x{308B}\x{3002}"
     2216          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     2217            RenderRubyRun (anonymous) at (631,308) size 24x17
    22142218              RenderRubyText {RT} at (-9,0) size 14x17
    22152219                RenderText {#text} at (2,3) size 10x10
     
    22192223                  RenderText {#text} at (3,0) size 18x17
    22202224                    text run at (3,0) width 17: "\x{753B}"
    2221           RenderText {#text} at (634,326) size 18x163
    2222             text run at (634,326) width 162: "\x{3067}\x{3042}\x{308A}\x{8A69}\x{3067}\x{3042}\x{308B}\x{4EE5}\x{4E0A}\x{306F}"
     2225          RenderText {#text} at (634,324) size 18x163
     2226            text run at (634,324) width 162: "\x{3067}\x{3042}\x{308A}\x{8A69}\x{3067}\x{3042}\x{308B}\x{4EE5}\x{4E0A}\x{306F}"
    22232227          RenderRuby (inline) {RUBY} at (0,0) size 18x33
    22242228            RenderRubyRun (anonymous) at (659,0) size 24x33
     
    22322236          RenderText {#text} at (662,33) size 18x371
    22332237            text run at (662,33) width 371: "\x{3092}\x{8CB0}\x{3063}\x{3066}\x{3001}\x{958B}\x{62D3}\x{3059}\x{308B}\x{6C17}\x{306B}\x{3082}\x{306A}\x{3089}\x{306D}\x{3070}\x{3001}\x{9244}\x{9053}\x{3092}\x{304B}\x{3051}\x{3066}"
    2234           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    2235             RenderRubyRun (anonymous) at (659,404) size 24x37
     2238          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     2239            RenderRubyRun (anonymous) at (659,403) size 24x37
    22362240              RenderRubyText {RT} at (-9,0) size 14x37
    22372241                RenderText {#text} at (2,0) size 10x37
     
    22412245                  RenderText {#text} at (3,1) size 18x35
    22422246                    text run at (3,1) width 35: "\x{4E00}\x{5132}"
    2243           RenderText {#text} at (662,440) size 18x49
    2244             text run at (662,440) width 49: "\x{3051}\x{3059}\x{308B}"
    2245           RenderRuby (inline) {RUBY} at (0,0) size 18x46
     2247          RenderText {#text} at (662,438) size 18x49
     2248            text run at (662,438) width 49: "\x{3051}\x{3059}\x{308B}"
     2249          RenderRuby (inline) {RUBY} at (0,0) size 18x43
    22462250            RenderRubyRun (anonymous) at (687,0) size 24x46
    22472251              RenderRubyText {RT} at (-9,0) size 14x46
     
    22522256                  RenderText {#text} at (3,3) size 18x40
    22532257                    text run at (3,3) width 40: "\x{4E86}\x{898B}"
    2254           RenderText {#text} at (690,46) size 18x258
    2255             text run at (690,46) width 258: "\x{3082}\x{8D77}\x{3089}\x{306C}\x{3002}\x{305F}\x{3060}\x{3053}\x{306E}\x{666F}\x{8272}\x{304C}\x{2015}\x{2015}\x{8179}\x{306E}"
    2256           RenderRuby (inline) {RUBY} at (0,0) size 18x18
    2257             RenderRubyRun (anonymous) at (687,304) size 24x17
     2258          RenderText {#text} at (690,43) size 18x258
     2259            text run at (690,43) width 258: "\x{3082}\x{8D77}\x{3089}\x{306C}\x{3002}\x{305F}\x{3060}\x{3053}\x{306E}\x{666F}\x{8272}\x{304C}\x{2015}\x{2015}\x{8179}\x{306E}"
     2260          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     2261            RenderRubyRun (anonymous) at (687,301) size 24x17
    22582262              RenderRubyText {RT} at (-9,0) size 14x17
    22592263                RenderText {#text} at (2,3) size 10x10
     
    22632267                  RenderText {#text} at (3,0) size 18x17
    22642268                    text run at (3,0) width 17: "\x{8DB3}"
    2265           RenderText {#text} at (690,320) size 70x484
    2266             text run at (690,320) width 162: "\x{3057}\x{306B}\x{3082}\x{306A}\x{3089}\x{306C}\x{3001}\x{6708}\x{7D66}\x{306E}"
     2269          RenderText {#text} at (690,317) size 70x484
     2270            text run at (690,317) width 162: "\x{3057}\x{306B}\x{3082}\x{306A}\x{3089}\x{306C}\x{3001}\x{6708}\x{7D66}\x{306E}"
    22672271            text run at (714,0) width 484: "\x{88DC}\x{3044}\x{306B}\x{3082}\x{306A}\x{3089}\x{306C}\x{3053}\x{306E}\x{666F}\x{8272}\x{304C}\x{666F}\x{8272}\x{3068}\x{3057}\x{3066}\x{306E}\x{307F}\x{3001}\x{4F59}\x{304C}\x{5FC3}\x{3092}\x{697D}\x{307E}\x{305B}\x{3064}\x{3064}\x{3042}"
    22682272            text run at (742,0) width 146: "\x{308B}\x{304B}\x{3089}\x{82E6}\x{52B4}\x{3082}\x{5FC3}\x{914D}\x{3082}"
    2269           RenderRuby (inline) {RUBY} at (0,0) size 18x29
    2270             RenderRubyRun (anonymous) at (739,145) size 24x28
     2273          RenderRuby (inline) {RUBY} at (0,0) size 18x21
     2274            RenderRubyRun (anonymous) at (739,141) size 24x28
    22712275              RenderRubyText {RT} at (-9,0) size 14x28
    22722276                RenderText {#text} at (2,0) size 10x28
     
    22762280                  RenderText {#text} at (3,5) size 18x17
    22772281                    text run at (3,5) width 17: "\x{4F34}"
    2278           RenderText {#text} at (742,173) size 18x291
    2279             text run at (742,173) width 291: "\x{308F}\x{306C}\x{306E}\x{3060}\x{308D}\x{3046}\x{3002}\x{81EA}\x{7136}\x{306E}\x{529B}\x{306F}\x{3053}\x{3053}\x{306B}\x{304A}\x{3044}\x{3066}"
    2280           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    2281             RenderRubyRun (anonymous) at (739,463) size 24x19
     2282          RenderText {#text} at (742,165) size 18x291
     2283            text run at (742,165) width 291: "\x{308F}\x{306C}\x{306E}\x{3060}\x{308D}\x{3046}\x{3002}\x{81EA}\x{7136}\x{306E}\x{529B}\x{306F}\x{3053}\x{3053}\x{306B}\x{304A}\x{3044}\x{3066}"
     2284          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     2285            RenderRubyRun (anonymous) at (739,454) size 24x19
    22822286              RenderRubyText {RT} at (-9,0) size 14x19
    22832287                RenderText {#text} at (2,0) size 10x19
     
    22872291                  RenderText {#text} at (3,1) size 18x17
    22882292                    text run at (3,1) width 17: "\x{5C0A}"
    2289           RenderText {#text} at (770,0) size 18x194
    2290             text run at (770,0) width 194: "\x{3068}\x{3044}\x{3002}\x{543E}\x{4EBA}\x{306E}\x{6027}\x{60C5}\x{3092}\x{77AC}\x{523B}\x{306B}"
    2291           RenderRuby (inline) {RUBY} at (0,0) size 18x34
    2292             RenderRubyRun (anonymous) at (767,193) size 24x33
     2293          RenderText {#text} at (742,472) size 46x489
     2294            text run at (742,472) width 17: "\x{3068}"
     2295            text run at (770,0) width 178: "\x{3044}\x{3002}\x{543E}\x{4EBA}\x{306E}\x{6027}\x{60C5}\x{3092}\x{77AC}\x{523B}\x{306B}"
     2296          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     2297            RenderRubyRun (anonymous) at (767,177) size 24x33
    22932298              RenderRubyText {RT} at (-9,0) size 14x33
    22942299                RenderText {#text} at (2,0) size 10x33
     
    22982303                  RenderText {#text} at (3,0) size 18x33
    22992304                    text run at (3,0) width 33: "\x{9676}\x{51B6}"
    2300           RenderText {#text} at (770,226) size 18x33
    2301             text run at (770,226) width 33: "\x{3057}\x{3066}"
    2302           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    2303             RenderRubyRun (anonymous) at (767,259) size 24x37
     2305          RenderText {#text} at (770,210) size 18x33
     2306            text run at (770,210) width 33: "\x{3057}\x{3066}"
     2307          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     2308            RenderRubyRun (anonymous) at (767,241) size 24x37
    23042309              RenderRubyText {RT} at (-9,0) size 14x37
    23052310                RenderText {#text} at (2,0) size 10x37
     
    23092314                  RenderText {#text} at (3,1) size 18x35
    23102315                    text run at (3,1) width 35: "\x{9187}\x{4E4E}"
    2311           RenderText {#text} at (770,295) size 42x489
    2312             text run at (770,295) width 194: "\x{3068}\x{3057}\x{3066}\x{9187}\x{306A}\x{308B}\x{8A69}\x{5883}\x{306B}\x{5165}\x{3089}\x{3057}"
    2313             text run at (794,0) width 162: "\x{3080}\x{308B}\x{306E}\x{306F}\x{81EA}\x{7136}\x{3067}\x{3042}\x{308B}\x{3002}"
    2314           RenderBR {BR} at (794,161) size 18x1
     2316          RenderText {#text} at (770,277) size 42x487
     2317            text run at (770,277) width 210: "\x{3068}\x{3057}\x{3066}\x{9187}\x{306A}\x{308B}\x{8A69}\x{5883}\x{306B}\x{5165}\x{3089}\x{3057}\x{3080}"
     2318            text run at (794,0) width 146: "\x{308B}\x{306E}\x{306F}\x{81EA}\x{7136}\x{3067}\x{3042}\x{308B}\x{3002}"
     2319          RenderBR {BR} at (794,145) size 18x1
    23152320          RenderText {#text} at (818,0) size 46x484
    23162321            text run at (818,0) width 484: "\x{3000}\x{604B}\x{306F}\x{3046}\x{3064}\x{304F}\x{3057}\x{304B}\x{308D}\x{3001}\x{5B5D}\x{3082}\x{3046}\x{3064}\x{304F}\x{3057}\x{304B}\x{308D}\x{3001}\x{5FE0}\x{541B}\x{611B}\x{56FD}\x{3082}\x{7D50}\x{69CB}\x{3060}\x{308D}\x{3046}\x{3002}"
    23172322            text run at (846,0) width 129: "\x{3057}\x{304B}\x{3057}\x{81EA}\x{8EAB}\x{304C}\x{305D}\x{306E}"
    2318           RenderRuby (inline) {RUBY} at (0,0) size 18x29
    2319             RenderRubyRun (anonymous) at (843,129) size 24x28
     2323          RenderRuby (inline) {RUBY} at (0,0) size 18x21
     2324            RenderRubyRun (anonymous) at (843,125) size 24x28
    23202325              RenderRubyText {RT} at (-9,0) size 14x28
    23212326                RenderText {#text} at (2,0) size 10x28
     
    23252330                  RenderText {#text} at (3,5) size 18x17
    23262331                    text run at (3,5) width 17: "\x{5C40}"
    2327           RenderText {#text} at (846,156) size 18x114
    2328             text run at (846,156) width 113: "\x{306B}\x{5F53}\x{308C}\x{3070}\x{5229}\x{5BB3}\x{306E}"
    2329           RenderRuby (inline) {RUBY} at (0,0) size 18x34
    2330             RenderRubyRun (anonymous) at (843,270) size 24x33
     2332          RenderText {#text} at (846,148) size 18x114
     2333            text run at (846,148) width 113: "\x{306B}\x{5F53}\x{308C}\x{3070}\x{5229}\x{5BB3}\x{306E}"
     2334          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     2335            RenderRubyRun (anonymous) at (843,262) size 24x33
    23312336              RenderRubyText {RT} at (-9,0) size 14x33
    23322337                RenderText {#text} at (2,0) size 10x33
     
    23362341                  RenderText {#text} at (3,0) size 18x33
    23372342                    text run at (3,0) width 33: "\x{65CB}\x{98A8}"
    2338           RenderText {#text} at (846,302) size 18x17
    2339             text run at (846,302) width 17: "\x{306B}"
    2340           RenderRuby (inline) {RUBY} at (0,0) size 18x18
    2341             RenderRubyRun (anonymous) at (843,319) size 24x17
     2343          RenderText {#text} at (846,294) size 18x17
     2344            text run at (846,294) width 17: "\x{306B}"
     2345          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     2346            RenderRubyRun (anonymous) at (843,311) size 24x17
    23422347              RenderRubyText {RT} at (-9,0) size 14x17
    23432348                RenderText {#text} at (2,3) size 10x10
     
    23472352                  RenderText {#text} at (3,0) size 18x17
    23482353                    text run at (3,0) width 17: "\x{6372}"
    2349           RenderText {#text} at (846,335) size 46x481
    2350             text run at (846,335) width 146: "\x{304D}\x{8FBC}\x{307E}\x{308C}\x{3066}\x{3001}\x{3046}\x{3064}\x{304F}"
    2351             text run at (874,0) width 242: "\x{3057}\x{304D}\x{4E8B}\x{306B}\x{3082}\x{3001}\x{7D50}\x{69CB}\x{306A}\x{4E8B}\x{306B}\x{3082}\x{3001}\x{76EE}\x{306F}"
    2352           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    2353             RenderRubyRun (anonymous) at (871,242) size 24x19
     2354          RenderText {#text} at (846,327) size 46x489
     2355            text run at (846,327) width 162: "\x{304D}\x{8FBC}\x{307E}\x{308C}\x{3066}\x{3001}\x{3046}\x{3064}\x{304F}\x{3057}"
     2356            text run at (874,0) width 226: "\x{304D}\x{4E8B}\x{306B}\x{3082}\x{3001}\x{7D50}\x{69CB}\x{306A}\x{4E8B}\x{306B}\x{3082}\x{3001}\x{76EE}\x{306F}"
     2357          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     2358            RenderRubyRun (anonymous) at (871,225) size 24x19
    23542359              RenderRubyText {RT} at (-9,0) size 14x19
    23552360                RenderText {#text} at (2,0) size 10x19
     
    23592364                  RenderText {#text} at (3,1) size 18x17
    23602365                    text run at (3,1) width 17: "\x{7729}"
    2361           RenderText {#text} at (874,260) size 46x487
    2362             text run at (874,260) width 226: "\x{3093}\x{3067}\x{3057}\x{307E}\x{3046}\x{3002}\x{3057}\x{305F}\x{304C}\x{3063}\x{3066}\x{3069}\x{3053}\x{306B}"
    2363             text run at (902,0) width 146: "\x{8A69}\x{304C}\x{3042}\x{308B}\x{304B}\x{81EA}\x{8EAB}\x{306B}\x{306F}"
    2364           RenderRuby (inline) {RUBY} at (0,0) size 18x18
    2365             RenderRubyRun (anonymous) at (899,145) size 24x17
     2366          RenderText {#text} at (874,242) size 46x485
     2367            text run at (874,242) width 242: "\x{3093}\x{3067}\x{3057}\x{307E}\x{3046}\x{3002}\x{3057}\x{305F}\x{304C}\x{3063}\x{3066}\x{3069}\x{3053}\x{306B}\x{8A69}"
     2368            text run at (902,0) width 129: "\x{304C}\x{3042}\x{308B}\x{304B}\x{81EA}\x{8EAB}\x{306B}\x{306F}"
     2369          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     2370            RenderRubyRun (anonymous) at (899,129) size 24x17
    23662371              RenderRubyText {RT} at (-9,0) size 14x17
    23672372                RenderText {#text} at (2,3) size 10x10
     
    23712376                  RenderText {#text} at (3,0) size 18x17
    23722377                    text run at (3,0) width 17: "\x{89E3}"
    2373           RenderText {#text} at (902,162) size 18x81
    2374             text run at (902,162) width 81: "\x{3057}\x{304B}\x{306D}\x{308B}\x{3002}"
    2375           RenderBR {BR} at (902,242) size 18x1
     2378          RenderText {#text} at (902,145) size 18x82
     2379            text run at (902,145) width 81: "\x{3057}\x{304B}\x{306D}\x{308B}\x{3002}"
     2380          RenderBR {BR} at (902,226) size 18x1
    23762381          RenderText {#text} at (926,0) size 46x484
    23772382            text run at (926,0) width 484: "\x{3000}\x{3053}\x{308C}\x{304C}\x{308F}\x{304B}\x{308B}\x{305F}\x{3081}\x{306B}\x{306F}\x{3001}\x{308F}\x{304B}\x{308B}\x{3060}\x{3051}\x{306E}\x{4F59}\x{88D5}\x{306E}\x{3042}\x{308B}\x{7B2C}\x{4E09}\x{8005}\x{306E}\x{5730}\x{4F4D}\x{306B}"
     
    23902395            text run at (978,0) width 484: "\x{3082}\x{898B}\x{3066}\x{9762}\x{767D}\x{3044}\x{3002}\x{829D}\x{5C45}\x{3092}\x{898B}\x{3066}\x{9762}\x{767D}\x{3044}\x{4EBA}\x{3082}\x{3001}\x{5C0F}\x{8AAC}\x{3092}\x{8AAD}\x{3093}\x{3067}\x{9762}\x{767D}\x{3044}\x{4EBA}\x{3082}\x{3001}"
    23912396            text run at (1006,0) width 97: "\x{81EA}\x{5DF1}\x{306E}\x{5229}\x{5BB3}\x{306F}"
    2392           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    2393             RenderRubyRun (anonymous) at (1003,97) size 24x19
     2397          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     2398            RenderRubyRun (anonymous) at (1003,96) size 24x19
    23942399              RenderRubyText {RT} at (-9,0) size 14x19
    23952400                RenderText {#text} at (2,0) size 10x19
     
    23992404                  RenderText {#text} at (3,1) size 18x17
    24002405                    text run at (3,1) width 17: "\x{68DA}"
    2401           RenderText {#text} at (1006,115) size 42x487
    2402             text run at (1006,115) width 371: "\x{3078}\x{4E0A}\x{3052}\x{3066}\x{3044}\x{308B}\x{3002}\x{898B}\x{305F}\x{308A}\x{8AAD}\x{3093}\x{3060}\x{308A}\x{3059}\x{308B}\x{9593}\x{3060}\x{3051}\x{306F}\x{8A69}\x{4EBA}\x{3067}"
     2406          RenderText {#text} at (1006,113) size 42x485
     2407            text run at (1006,113) width 371: "\x{3078}\x{4E0A}\x{3052}\x{3066}\x{3044}\x{308B}\x{3002}\x{898B}\x{305F}\x{308A}\x{8AAD}\x{3093}\x{3060}\x{308A}\x{3059}\x{308B}\x{9593}\x{3060}\x{3051}\x{306F}\x{8A69}\x{4EBA}\x{3067}"
    24032408            text run at (1030,0) width 49: "\x{3042}\x{308B}\x{3002}"
    24042409          RenderBR {BR} at (1030,48) size 18x1
    24052410          RenderText {#text} at (1058,0) size 18x307
    24062411            text run at (1058,0) width 307: "\x{3000}\x{305D}\x{308C}\x{3059}\x{3089}\x{3001}\x{666E}\x{901A}\x{306E}\x{829D}\x{5C45}\x{3084}\x{5C0F}\x{8AAC}\x{3067}\x{306F}\x{4EBA}\x{60C5}\x{3092}"
    2407           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    2408             RenderRubyRun (anonymous) at (1055,306) size 24x19
     2412          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     2413            RenderRubyRun (anonymous) at (1055,305) size 24x19
    24092414              RenderRubyText {RT} at (-9,0) size 14x19
    24102415                RenderText {#text} at (2,0) size 10x19
     
    24142419                  RenderText {#text} at (3,1) size 18x17
    24152420                    text run at (3,1) width 17: "\x{514D}"
    2416           RenderText {#text} at (1058,325) size 70x487
    2417             text run at (1058,325) width 162: "\x{304B}\x{308C}\x{306C}\x{3002}\x{82E6}\x{3057}\x{3093}\x{3060}\x{308A}\x{3001}"
     2421          RenderText {#text} at (1058,323) size 70x485
     2422            text run at (1058,323) width 162: "\x{304B}\x{308C}\x{306C}\x{3002}\x{82E6}\x{3057}\x{3093}\x{3060}\x{308A}\x{3001}"
    24182423            text run at (1082,0) width 484: "\x{6012}\x{3063}\x{305F}\x{308A}\x{3001}\x{9A12}\x{3044}\x{3060}\x{308A}\x{3001}\x{6CE3}\x{3044}\x{305F}\x{308A}\x{3059}\x{308B}\x{3002}\x{898B}\x{308B}\x{3082}\x{306E}\x{3082}\x{3044}\x{3064}\x{304B}\x{305D}\x{306E}\x{4E2D}\x{306B}\x{540C}"
    24192424            text run at (1110,0) width 419: "\x{5316}\x{3057}\x{3066}\x{82E6}\x{3057}\x{3093}\x{3060}\x{308A}\x{3001}\x{6012}\x{3063}\x{305F}\x{308A}\x{3001}\x{9A12}\x{3044}\x{3060}\x{308A}\x{3001}\x{6CE3}\x{3044}\x{305F}\x{308A}\x{3059}\x{308B}\x{3002}"
     
    24302435            text run at (1110,451) width 33: "\x{306F}\x{5229}"
    24312436            text run at (1138,0) width 33: "\x{617E}\x{304C}"
    2432           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    2433             RenderRubyRun (anonymous) at (1135,32) size 24x19
     2437          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     2438            RenderRubyRun (anonymous) at (1135,31) size 24x19
    24342439              RenderRubyText {RT} at (-9,0) size 14x19
    24352440                RenderText {#text} at (2,0) size 10x19
     
    24392444                  RenderText {#text} at (3,1) size 18x17
    24402445                    text run at (3,1) width 17: "\x{4EA4}"
    2441           RenderText {#text} at (1138,51) size 18x114
    2442             text run at (1138,51) width 113: "\x{3089}\x{306C}\x{3068}\x{4E91}\x{3046}\x{70B9}\x{306B}"
    2443           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    2444             RenderRubyRun (anonymous) at (1135,164) size 24x19
     2446          RenderText {#text} at (1138,49) size 18x114
     2447            text run at (1138,49) width 113: "\x{3089}\x{306C}\x{3068}\x{4E91}\x{3046}\x{70B9}\x{306B}"
     2448          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     2449            RenderRubyRun (anonymous) at (1135,161) size 24x19
    24452450              RenderRubyText {RT} at (-9,0) size 14x19
    24462451                RenderText {#text} at (2,0) size 10x19
     
    24502455                  RenderText {#text} at (3,1) size 18x17
    24512456                    text run at (3,1) width 17: "\x{5B58}"
    2452           RenderText {#text} at (1138,183) size 18x307
    2453             text run at (1138,183) width 307: "\x{3059}\x{308B}\x{304B}\x{3082}\x{77E5}\x{308C}\x{306C}\x{304C}\x{3001}\x{4EA4}\x{3089}\x{306C}\x{3060}\x{3051}\x{306B}\x{305D}\x{306E}\x{4ED6}\x{306E}"
    2454           RenderRuby (inline) {RUBY} at (0,0) size 18x46
     2457          RenderText {#text} at (1138,179) size 18x307
     2458            text run at (1138,179) width 307: "\x{3059}\x{308B}\x{304B}\x{3082}\x{77E5}\x{308C}\x{306C}\x{304C}\x{3001}\x{4EA4}\x{3089}\x{306C}\x{3060}\x{3051}\x{306B}\x{305D}\x{306E}\x{4ED6}\x{306E}"
     2459          RenderRuby (inline) {RUBY} at (0,0) size 18x43
    24552460            RenderRubyRun (anonymous) at (1163,0) size 24x46
    24562461              RenderRubyText {RT} at (-9,0) size 14x46
     
    24612466                  RenderText {#text} at (3,3) size 18x40
    24622467                    text run at (3,3) width 40: "\x{60C5}\x{7DD2}"
    2463           RenderText {#text} at (1166,46) size 18x307
    2464             text run at (1166,46) width 307: "\x{306F}\x{5E38}\x{3088}\x{308A}\x{306F}\x{4F59}\x{8A08}\x{306B}\x{6D3B}\x{52D5}\x{3059}\x{308B}\x{3060}\x{308D}\x{3046}\x{3002}\x{305D}\x{308C}\x{304C}"
    2465           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    2466             RenderRubyRun (anonymous) at (1163,352) size 24x19
     2468          RenderText {#text} at (1166,43) size 18x307
     2469            text run at (1166,43) width 307: "\x{306F}\x{5E38}\x{3088}\x{308A}\x{306F}\x{4F59}\x{8A08}\x{306B}\x{6D3B}\x{52D5}\x{3059}\x{308B}\x{3060}\x{308D}\x{3046}\x{3002}\x{305D}\x{308C}\x{304C}"
     2470          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     2471            RenderRubyRun (anonymous) at (1163,348) size 24x19
    24672472              RenderRubyText {RT} at (-9,0) size 14x19
    24682473                RenderText {#text} at (2,0) size 10x19
     
    24722477                  RenderText {#text} at (3,1) size 18x17
    24732478                    text run at (3,1) width 17: "\x{5ACC}"
    2474           RenderText {#text} at (1166,371) size 18x33
    2475             text run at (1166,371) width 33: "\x{3060}\x{3002}"
    2476           RenderBR {BR} at (1166,403) size 18x1
     2479          RenderText {#text} at (1166,366) size 18x33
     2480            text run at (1166,366) width 33: "\x{3060}\x{3002}"
     2481          RenderBR {BR} at (1166,398) size 18x1
    24772482          RenderText {#text} at (1190,0) size 46x484
    24782483            text run at (1190,0) width 484: "\x{3000}\x{82E6}\x{3057}\x{3093}\x{3060}\x{308A}\x{3001}\x{6012}\x{3063}\x{305F}\x{308A}\x{3001}\x{9A12}\x{3044}\x{3060}\x{308A}\x{3001}\x{6CE3}\x{3044}\x{305F}\x{308A}\x{306F}\x{4EBA}\x{306E}\x{4E16}\x{306B}\x{3064}\x{304D}\x{3082}\x{306E}"
     
    24892494          RenderText {#text} at (1218,226) size 18x49
    24902495            text run at (1218,226) width 49: "\x{3057}\x{3066}\x{3001}"
    2491           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    2492             RenderRubyRun (anonymous) at (1215,275) size 24x37
     2496          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     2497            RenderRubyRun (anonymous) at (1215,274) size 24x37
    24932498              RenderRubyText {RT} at (-9,0) size 14x37
    24942499                RenderText {#text} at (2,0) size 10x37
     
    24982503                  RenderText {#text} at (3,1) size 18x35
    24992504                    text run at (3,1) width 35: "\x{98FD}\x{3005}"
    2500           RenderText {#text} at (1218,311) size 18x50
    2501             text run at (1218,311) width 49: "\x{3057}\x{305F}\x{3002}"
    2502           RenderRuby (inline) {RUBY} at (0,0) size 18x18
    2503             RenderRubyRun (anonymous) at (1215,360) size 24x17
     2505          RenderText {#text} at (1218,309) size 18x50
     2506            text run at (1218,309) width 49: "\x{3057}\x{305F}\x{3002}"
     2507          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     2508            RenderRubyRun (anonymous) at (1215,358) size 24x17
    25042509              RenderRubyText {RT} at (-9,0) size 14x17
    25052510                RenderText {#text} at (2,3) size 10x10
     
    25092514                  RenderText {#text} at (3,0) size 18x17
    25102515                    text run at (3,0) width 17: "\x{98FD}"
    2511           RenderText {#text} at (1218,377) size 70x490
    2512             text run at (1218,377) width 113: "\x{304D}\x{98FD}\x{304D}\x{3057}\x{305F}\x{4E0A}\x{306B}"
     2516          RenderText {#text} at (1218,375) size 70x488
     2517            text run at (1218,375) width 113: "\x{304D}\x{98FD}\x{304D}\x{3057}\x{305F}\x{4E0A}\x{306B}"
    25132518            text run at (1242,0) width 484: "\x{829D}\x{5C45}\x{3084}\x{5C0F}\x{8AAC}\x{3067}\x{540C}\x{3058}\x{523A}\x{6FC0}\x{3092}\x{7E70}\x{308A}\x{8FD4}\x{3057}\x{3066}\x{306F}\x{5927}\x{5909}\x{3060}\x{3002}\x{4F59}\x{304C}\x{6B32}\x{3059}\x{308B}\x{8A69}\x{306F}\x{305D}\x{3093}"
    25142519            text run at (1270,0) width 129: "\x{306A}\x{4E16}\x{9593}\x{7684}\x{306E}\x{4EBA}\x{60C5}\x{3092}"
     
    25252530            text run at (1270,161) width 323: "\x{3059}\x{308B}\x{3088}\x{3046}\x{306A}\x{3082}\x{306E}\x{3067}\x{306F}\x{306A}\x{3044}\x{3002}\x{4FD7}\x{5FF5}\x{3092}\x{653E}\x{68C4}\x{3057}\x{3066}\x{3001}"
    25262531            text run at (1298,0) width 97: "\x{3057}\x{3070}\x{3089}\x{304F}\x{3067}\x{3082}"
    2527           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    2528             RenderRubyRun (anonymous) at (1295,97) size 24x37
     2532          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     2533            RenderRubyRun (anonymous) at (1295,96) size 24x37
    25292534              RenderRubyText {RT} at (-9,0) size 14x37
    25302535                RenderText {#text} at (2,0) size 10x37
     
    25342539                  RenderText {#text} at (3,1) size 18x35
    25352540                    text run at (3,1) width 35: "\x{5875}\x{754C}"
    2536           RenderText {#text} at (1298,133) size 94x489
    2537             text run at (1298,133) width 355: "\x{3092}\x{96E2}\x{308C}\x{305F}\x{5FC3}\x{6301}\x{3061}\x{306B}\x{306A}\x{308C}\x{308B}\x{8A69}\x{3067}\x{3042}\x{308B}\x{3002}\x{3044}\x{304F}\x{3089}\x{5091}\x{4F5C}\x{3067}"
     2541          RenderText {#text} at (1298,131) size 94x487
     2542            text run at (1298,131) width 355: "\x{3092}\x{96E2}\x{308C}\x{305F}\x{5FC3}\x{6301}\x{3061}\x{306B}\x{306A}\x{308C}\x{308B}\x{8A69}\x{3067}\x{3042}\x{308B}\x{3002}\x{3044}\x{304F}\x{3089}\x{5091}\x{4F5C}\x{3067}"
    25382543            text run at (1322,0) width 484: "\x{3082}\x{4EBA}\x{60C5}\x{3092}\x{96E2}\x{308C}\x{305F}\x{829D}\x{5C45}\x{306F}\x{306A}\x{3044}\x{3001}\x{7406}\x{975E}\x{3092}\x{7D76}\x{3057}\x{305F}\x{5C0F}\x{8AAC}\x{306F}\x{5C11}\x{304B}\x{308D}\x{3046}\x{3002}\x{3069}\x{3053}\x{307E}"
    25392544            text run at (1346,0) width 484: "\x{3067}\x{3082}\x{4E16}\x{9593}\x{3092}\x{51FA}\x{308B}\x{4E8B}\x{304C}\x{51FA}\x{6765}\x{306C}\x{306E}\x{304C}\x{5F7C}\x{3089}\x{306E}\x{7279}\x{8272}\x{3067}\x{3042}\x{308B}\x{3002}\x{3053}\x{3068}\x{306B}\x{897F}\x{6D0B}\x{306E}\x{8A69}"
     
    25512556            text run at (1374,339) width 146: "\x{306E}\x{7D14}\x{7C8B}\x{306A}\x{308B}\x{3082}\x{306E}\x{3082}\x{3053}"
    25522557            text run at (1402,0) width 17: "\x{306E}"
    2553           RenderRuby (inline) {RUBY} at (0,0) size 18x29
    2554             RenderRubyRun (anonymous) at (1399,16) size 24x28
     2558          RenderRuby (inline) {RUBY} at (0,0) size 18x21
     2559            RenderRubyRun (anonymous) at (1399,12) size 24x28
    25552560              RenderRubyText {RT} at (-9,0) size 14x28
    25562561                RenderText {#text} at (2,0) size 10x28
     
    25602565                  RenderText {#text} at (3,5) size 18x17
    25612566                    text run at (3,5) width 17: "\x{5883}"
    2562           RenderText {#text} at (1402,44) size 18x17
    2563             text run at (1402,44) width 17: "\x{3092}"
    2564           RenderRuby (inline) {RUBY} at (0,0) size 18x34
    2565             RenderRubyRun (anonymous) at (1399,60) size 24x33
     2567          RenderText {#text} at (1402,36) size 18x17
     2568            text run at (1402,36) width 17: "\x{3092}"
     2569          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     2570            RenderRubyRun (anonymous) at (1399,52) size 24x33
    25662571              RenderRubyText {RT} at (-9,0) size 14x33
    25672572                RenderText {#text} at (2,0) size 10x33
     
    25712576                  RenderText {#text} at (3,0) size 18x33
    25722577                    text run at (3,0) width 33: "\x{89E3}\x{8131}"
    2573           RenderText {#text} at (1402,93) size 46x480
    2574             text run at (1402,93) width 387: "\x{3059}\x{308B}\x{4E8B}\x{3092}\x{77E5}\x{3089}\x{306C}\x{3002}\x{3069}\x{3053}\x{307E}\x{3067}\x{3082}\x{540C}\x{60C5}\x{3060}\x{3068}\x{304B}\x{3001}\x{611B}\x{3060}\x{3068}\x{304B}\x{3001}"
    2575             text run at (1430,0) width 194: "\x{6B63}\x{7FA9}\x{3060}\x{3068}\x{304B}\x{3001}\x{81EA}\x{7531}\x{3060}\x{3068}\x{304B}\x{3001}"
    2576           RenderRuby (inline) {RUBY} at (0,0) size 18x34
    2577             RenderRubyRun (anonymous) at (1427,193) size 24x33
     2578          RenderText {#text} at (1402,85) size 46x489
     2579            text run at (1402,85) width 403: "\x{3059}\x{308B}\x{4E8B}\x{3092}\x{77E5}\x{3089}\x{306C}\x{3002}\x{3069}\x{3053}\x{307E}\x{3067}\x{3082}\x{540C}\x{60C5}\x{3060}\x{3068}\x{304B}\x{3001}\x{611B}\x{3060}\x{3068}\x{304B}\x{3001}\x{6B63}"
     2580            text run at (1430,0) width 178: "\x{7FA9}\x{3060}\x{3068}\x{304B}\x{3001}\x{81EA}\x{7531}\x{3060}\x{3068}\x{304B}\x{3001}"
     2581          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     2582            RenderRubyRun (anonymous) at (1427,177) size 24x33
    25782583              RenderRubyText {RT} at (-9,0) size 14x33
    25792584                RenderText {#text} at (2,0) size 10x33
     
    25832588                  RenderText {#text} at (3,0) size 18x33
    25842589                    text run at (3,0) width 33: "\x{6D6E}\x{4E16}"
    2585           RenderText {#text} at (1430,226) size 18x17
    2586             text run at (1430,226) width 17: "\x{306E}"
     2590          RenderText {#text} at (1430,210) size 18x17
     2591            text run at (1430,210) width 17: "\x{306E}"
    25872592          RenderRuby (inline) {RUBY} at (0,0) size 18x50
    2588             RenderRubyRun (anonymous) at (1427,242) size 24x49
     2593            RenderRubyRun (anonymous) at (1427,226) size 24x49
    25892594              RenderRubyText {RT} at (-9,0) size 14x49
    25902595                RenderText {#text} at (2,0) size 10x49
     
    25942599                  RenderText {#text} at (3,0) size 18x49
    25952600                    text run at (3,0) width 49: "\x{52E7}\x{5DE5}\x{5834}"
    2596           RenderText {#text} at (1430,291) size 18x162
    2597             text run at (1430,291) width 162: "\x{306B}\x{3042}\x{308B}\x{3082}\x{306E}\x{3060}\x{3051}\x{3067}\x{7528}\x{3092}"
    2598           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    2599             RenderRubyRun (anonymous) at (1427,453) size 24x19
     2601          RenderText {#text} at (1430,275) size 18x162
     2602            text run at (1430,275) width 162: "\x{306B}\x{3042}\x{308B}\x{3082}\x{306E}\x{3060}\x{3051}\x{3067}\x{7528}\x{3092}"
     2603          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     2604            RenderRubyRun (anonymous) at (1427,435) size 24x19
    26002605              RenderRubyText {RT} at (-9,0) size 14x19
    26012606                RenderText {#text} at (2,0) size 10x19
     
    26052610                  RenderText {#text} at (3,1) size 18x17
    26062611                    text run at (3,1) width 17: "\x{5F01}"
    2607           RenderText {#text} at (1430,471) size 46x488
    2608             text run at (1430,471) width 17: "\x{3058}"
    2609             text run at (1458,0) width 307: "\x{3066}\x{3044}\x{308B}\x{3002}\x{3044}\x{304F}\x{3089}\x{8A69}\x{7684}\x{306B}\x{306A}\x{3063}\x{3066}\x{3082}\x{5730}\x{9762}\x{306E}\x{4E0A}\x{3092}"
    2610           RenderRuby (inline) {RUBY} at (0,0) size 18x18
    2611             RenderRubyRun (anonymous) at (1455,306) size 24x17
     2612          RenderText {#text} at (1430,453) size 46x486
     2613            text run at (1430,453) width 33: "\x{3058}\x{3066}"
     2614            text run at (1458,0) width 291: "\x{3044}\x{308B}\x{3002}\x{3044}\x{304F}\x{3089}\x{8A69}\x{7684}\x{306B}\x{306A}\x{3063}\x{3066}\x{3082}\x{5730}\x{9762}\x{306E}\x{4E0A}\x{3092}"
     2615          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     2616            RenderRubyRun (anonymous) at (1455,290) size 24x17
    26122617              RenderRubyText {RT} at (-9,0) size 14x17
    26132618                RenderText {#text} at (2,3) size 10x10
     
    26172622                  RenderText {#text} at (3,0) size 18x17
    26182623                    text run at (3,0) width 17: "\x{99B3}"
    2619           RenderText {#text} at (1458,323) size 18x113
    2620             text run at (1458,323) width 113: "\x{3051}\x{3066}\x{3042}\x{308B}\x{3044}\x{3066}\x{3001}"
    2621           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    2622             RenderRubyRun (anonymous) at (1455,436) size 24x19
     2624          RenderText {#text} at (1458,307) size 18x113
     2625            text run at (1458,307) width 113: "\x{3051}\x{3066}\x{3042}\x{308B}\x{3044}\x{3066}\x{3001}"
     2626          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     2627            RenderRubyRun (anonymous) at (1455,419) size 24x19
    26232628              RenderRubyText {RT} at (-9,0) size 14x19
    26242629                RenderText {#text} at (2,0) size 10x19
     
    26282633                  RenderText {#text} at (3,1) size 18x17
    26292634                    text run at (3,1) width 17: "\x{92AD}"
    2630           RenderText {#text} at (1458,454) size 46x488
    2631             text run at (1458,454) width 33: "\x{306E}\x{52D8}"
    2632             text run at (1486,0) width 258: "\x{5B9A}\x{3092}\x{5FD8}\x{308C}\x{308B}\x{3072}\x{307E}\x{304C}\x{306A}\x{3044}\x{3002}\x{30B7}\x{30A7}\x{30EC}\x{30FC}\x{304C}"
    2633           RenderRuby (inline) {RUBY} at (0,0) size 18x34
    2634             RenderRubyRun (anonymous) at (1483,258) size 24x33
     2635          RenderText {#text} at (1458,436) size 46x486
     2636            text run at (1458,436) width 49: "\x{306E}\x{52D8}\x{5B9A}"
     2637            text run at (1486,0) width 242: "\x{3092}\x{5FD8}\x{308C}\x{308B}\x{3072}\x{307E}\x{304C}\x{306A}\x{3044}\x{3002}\x{30B7}\x{30A7}\x{30EC}\x{30FC}\x{304C}"
     2638          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     2639            RenderRubyRun (anonymous) at (1483,242) size 24x33
    26352640              RenderRubyText {RT} at (-9,0) size 14x33
    26362641                RenderText {#text} at (2,0) size 10x33
     
    26402645                  RenderText {#text} at (3,0) size 18x33
    26412646                    text run at (3,0) width 33: "\x{96F2}\x{96C0}"
    2642           RenderText {#text} at (1486,290) size 42x485
    2643             text run at (1486,290) width 194: "\x{3092}\x{805E}\x{3044}\x{3066}\x{5606}\x{606F}\x{3057}\x{305F}\x{306E}\x{3082}\x{7121}\x{7406}"
    2644             text run at (1510,0) width 65: "\x{306F}\x{306A}\x{3044}\x{3002}"
    2645           RenderBR {BR} at (1510,64) size 18x1
     2647          RenderText {#text} at (1486,274) size 42x485
     2648            text run at (1486,274) width 210: "\x{3092}\x{805E}\x{3044}\x{3066}\x{5606}\x{606F}\x{3057}\x{305F}\x{306E}\x{3082}\x{7121}\x{7406}\x{306F}"
     2649            text run at (1510,0) width 49: "\x{306A}\x{3044}\x{3002}"
     2650          RenderBR {BR} at (1510,48) size 18x1
    26462651          RenderText {#text} at (1538,0) size 18x162
    26472652            text run at (1538,0) width 162: "\x{3000}\x{3046}\x{308C}\x{3057}\x{3044}\x{4E8B}\x{306B}\x{6771}\x{6D0B}\x{306E}"
     
    26682673          RenderText {#text} at (1538,291) size 18x114
    26692674            text run at (1538,291) width 113: "\x{3057}\x{305F}\x{306E}\x{304C}\x{3042}\x{308B}\x{3002}"
    2670           RenderRuby (inline) {RUBY} at (0,0) size 18x47
    2671             RenderRubyRun (anonymous) at (1535,404) size 24x46
     2675          RenderRuby (inline) {RUBY} at (0,0) size 18x44
     2676            RenderRubyRun (anonymous) at (1535,401) size 24x46
    26722677              RenderRubyText {RT} at (-9,0) size 14x46
    26732678                RenderText {#text} at (2,0) size 10x46
     
    26772682                  RenderText {#text} at (3,3) size 18x40
    26782683                    text run at (3,3) width 40: "\x{63A1}\x{83CA}"
    2679           RenderRuby (inline) {RUBY} at (0,0) size 18x55
     2684          RenderRuby (inline) {RUBY} at (0,0) size 18x54
    26802685            RenderRubyRun (anonymous) at (1563,0) size 24x55
    26812686              RenderRubyText {RT} at (-9,0) size 14x55
     
    26862691                  RenderText {#text} at (3,1) size 18x53
    26872692                    text run at (3,1) width 53: "\x{6771}\x{7C6C}\x{4E0B}"
    2688           RenderText {#text} at (1566,55) size 18x17
    2689             text run at (1566,55) width 17: "\x{3001}"
    2690           RenderRuby (inline) {RUBY} at (0,0) size 18x65
    2691             RenderRubyRun (anonymous) at (1563,71) size 24x64
     2693          RenderText {#text} at (1566,54) size 18x17
     2694            text run at (1566,54) width 17: "\x{3001}"
     2695          RenderRuby (inline) {RUBY} at (0,0) size 18x61
     2696            RenderRubyRun (anonymous) at (1563,66) size 24x64
    26922697              RenderRubyText {RT} at (-9,0) size 14x64
    26932698                RenderText {#text} at (2,0) size 10x64
     
    26972702                  RenderText {#text} at (3,7) size 18x49
    26982703                    text run at (3,7) width 49: "\x{60A0}\x{7136}"
    2699           RenderRuby (inline) {RUBY} at (0,0) size 18x65
    2700             RenderRubyRun (anonymous) at (1563,135) size 24x64
     2704          RenderRuby (inline) {RUBY} at (0,0) size 18x62
     2705            RenderRubyRun (anonymous) at (1563,130) size 24x64
    27012706              RenderRubyText {RT} at (-9,0) size 14x64
    27022707                RenderText {#text} at (2,0) size 10x64
     
    27062711                  RenderText {#text} at (3,2) size 18x59
    27072712                    text run at (3,2) width 59: "\x{898B}\x{5357}\x{5C71}"
    2708           RenderText {#text} at (1566,199) size 18x130
    2709             text run at (1566,199) width 129: "\x{3002}\x{305F}\x{3060}\x{305D}\x{308C}\x{304E}\x{308A}\x{306E}"
    2710           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    2711             RenderRubyRun (anonymous) at (1563,328) size 24x19
     2713          RenderText {#text} at (1566,191) size 18x130
     2714            text run at (1566,191) width 129: "\x{3002}\x{305F}\x{3060}\x{305D}\x{308C}\x{304E}\x{308A}\x{306E}"
     2715          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     2716            RenderRubyRun (anonymous) at (1563,319) size 24x19
    27122717              RenderRubyText {RT} at (-9,0) size 14x19
    27132718                RenderText {#text} at (2,0) size 10x19
     
    27172722                  RenderText {#text} at (3,1) size 18x17
    27182723                    text run at (3,1) width 17: "\x{88CF}"
    2719           RenderText {#text} at (1566,347) size 46x493
    2720             text run at (1566,347) width 146: "\x{306B}\x{6691}\x{82E6}\x{3057}\x{3044}\x{4E16}\x{306E}\x{4E2D}\x{3092}"
     2724          RenderText {#text} at (1566,337) size 46x483
     2725            text run at (1566,337) width 146: "\x{306B}\x{6691}\x{82E6}\x{3057}\x{3044}\x{4E16}\x{306E}\x{4E2D}\x{3092}"
    27212726            text run at (1594,0) width 387: "\x{307E}\x{308B}\x{3067}\x{5FD8}\x{308C}\x{305F}\x{5149}\x{666F}\x{304C}\x{51FA}\x{3066}\x{304F}\x{308B}\x{3002}\x{57A3}\x{306E}\x{5411}\x{3046}\x{306B}\x{96A3}\x{308A}\x{306E}\x{5A18}\x{304C}"
    2722           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    2723             RenderRubyRun (anonymous) at (1591,387) size 24x19
     2727          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     2728            RenderRubyRun (anonymous) at (1591,386) size 24x19
    27242729              RenderRubyText {RT} at (-9,0) size 14x19
    27252730                RenderText {#text} at (2,0) size 10x19
     
    27292734                  RenderText {#text} at (3,1) size 18x17
    27302735                    text run at (3,1) width 17: "\x{8997}"
    2731           RenderText {#text} at (1594,405) size 46x487
    2732             text run at (1594,405) width 81: "\x{3044}\x{3066}\x{308B}\x{8A33}\x{3067}"
     2736          RenderText {#text} at (1594,403) size 46x485
     2737            text run at (1594,403) width 81: "\x{3044}\x{3066}\x{308B}\x{8A33}\x{3067}"
    27332738            text run at (1622,0) width 97: "\x{3082}\x{306A}\x{3051}\x{308C}\x{3070}\x{3001}"
    2734           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    2735             RenderRubyRun (anonymous) at (1619,97) size 24x37
     2739          RenderRuby (inline) {RUBY} at (0,0) size 18x36
     2740            RenderRubyRun (anonymous) at (1619,96) size 24x37
    27362741              RenderRubyText {RT} at (-9,0) size 14x37
    27372742                RenderText {#text} at (2,0) size 10x37
     
    27412746                  RenderText {#text} at (3,1) size 18x35
    27422747                    text run at (3,1) width 35: "\x{5357}\x{5C71}"
    2743           RenderText {#text} at (1622,133) size 18x323
    2744             text run at (1622,133) width 323: "\x{306B}\x{89AA}\x{53CB}\x{304C}\x{5949}\x{8077}\x{3057}\x{3066}\x{3044}\x{308B}\x{6B21}\x{7B2C}\x{3067}\x{3082}\x{306A}\x{3044}\x{3002}\x{8D85}\x{7136}\x{3068}"
    2745           RenderRuby (inline) {RUBY} at (0,0) size 18x73
     2748          RenderText {#text} at (1622,131) size 18x323
     2749            text run at (1622,131) width 323: "\x{306B}\x{89AA}\x{53CB}\x{304C}\x{5949}\x{8077}\x{3057}\x{3066}\x{3044}\x{308B}\x{6B21}\x{7B2C}\x{3067}\x{3082}\x{306A}\x{3044}\x{3002}\x{8D85}\x{7136}\x{3068}"
     2750          RenderRuby (inline) {RUBY} at (0,0) size 18x72
    27462751            RenderRubyRun (anonymous) at (1647,0) size 24x73
    27472752              RenderRubyText {RT} at (-9,0) size 14x73
     
    27522757                  RenderText {#text} at (3,1) size 18x71
    27532758                    text run at (3,1) width 71: "\x{51FA}\x{4E16}\x{9593}\x{7684}"
    2754           RenderText {#text} at (1650,73) size 18x339
    2755             text run at (1650,73) width 339: "\x{306B}\x{5229}\x{5BB3}\x{640D}\x{5F97}\x{306E}\x{6C57}\x{3092}\x{6D41}\x{3057}\x{53BB}\x{3063}\x{305F}\x{5FC3}\x{6301}\x{3061}\x{306B}\x{306A}\x{308C}\x{308B}\x{3002}"
    2756           RenderRuby (inline) {RUBY} at (0,0) size 18x29
    2757             RenderRubyRun (anonymous) at (1647,411) size 24x28
     2759          RenderText {#text} at (1650,72) size 18x339
     2760            text run at (1650,72) width 339: "\x{306B}\x{5229}\x{5BB3}\x{640D}\x{5F97}\x{306E}\x{6C57}\x{3092}\x{6D41}\x{3057}\x{53BB}\x{3063}\x{305F}\x{5FC3}\x{6301}\x{3061}\x{306B}\x{306A}\x{308C}\x{308B}\x{3002}"
     2761          RenderRuby (inline) {RUBY} at (0,0) size 18x25
     2762            RenderRubyRun (anonymous) at (1647,406) size 24x28
    27582763              RenderRubyText {RT} at (-9,0) size 14x28
    27592764                RenderText {#text} at (2,0) size 10x28
     
    27632768                  RenderText {#text} at (3,5) size 18x17
    27642769                    text run at (3,5) width 17: "\x{72EC}"
    2765           RenderRuby (inline) {RUBY} at (0,0) size 18x91
     2770          RenderRuby (inline) {RUBY} at (0,0) size 18x88
    27662771            RenderRubyRun (anonymous) at (1675,0) size 24x91
    27672772              RenderRubyText {RT} at (-9,0) size 14x91
     
    27722777                  RenderText {#text} at (3,3) size 18x85
    27732778                    text run at (3,3) width 85: "\x{5750}\x{5E7D}\x{7BC1}\x{88CF}"
    2774           RenderText {#text} at (1678,91) size 18x17
    2775             text run at (1678,91) width 17: "\x{3001}"
    2776           RenderRuby (inline) {RUBY} at (0,0) size 18x65
    2777             RenderRubyRun (anonymous) at (1675,107) size 24x64
     2779          RenderText {#text} at (1678,88) size 18x17
     2780            text run at (1678,88) width 17: "\x{3001}"
     2781          RenderRuby (inline) {RUBY} at (0,0) size 18x61
     2782            RenderRubyRun (anonymous) at (1675,100) size 24x64
    27782783              RenderRubyText {RT} at (-9,0) size 14x64
    27792784                RenderText {#text} at (2,0) size 10x64
     
    27832788                  RenderText {#text} at (3,7) size 18x49
    27842789                    text run at (3,7) width 49: "\x{5F3E}\x{7434}"
    2785           RenderRuby (inline) {RUBY} at (0,0) size 18x83
    2786             RenderRubyRun (anonymous) at (1675,171) size 24x82
     2790          RenderRuby (inline) {RUBY} at (0,0) size 18x79
     2791            RenderRubyRun (anonymous) at (1675,164) size 24x82
    27872792              RenderRubyText {RT} at (-9,0) size 14x82
    27882793                RenderText {#text} at (2,0) size 10x82
     
    27922797                  RenderText {#text} at (3,5) size 18x71
    27932798                    text run at (3,5) width 71: "\x{5FA9}\x{9577}\x{562F}"
    2794           RenderText {#text} at (1678,253) size 18x17
    2795             text run at (1678,253) width 17: "\x{3001}"
    2796           RenderRuby (inline) {RUBY} at (0,0) size 18x38
    2797             RenderRubyRun (anonymous) at (1675,269) size 24x37
     2799          RenderText {#text} at (1678,242) size 18x17
     2800            text run at (1678,242) width 17: "\x{3001}"
     2801          RenderRuby (inline) {RUBY} at (0,0) size 18x37
     2802            RenderRubyRun (anonymous) at (1675,257) size 24x37
    27982803              RenderRubyText {RT} at (-9,0) size 14x37
    27992804                RenderText {#text} at (2,0) size 10x37
     
    28042809                    text run at (3,1) width 35: "\x{6DF1}\x{6797}"
    28052810          RenderRuby (inline) {RUBY} at (0,0) size 18x50
    2806             RenderRubyRun (anonymous) at (1675,306) size 24x49
     2811            RenderRubyRun (anonymous) at (1675,294) size 24x49
    28072812              RenderRubyText {RT} at (-9,0) size 14x49
    28082813                RenderText {#text} at (2,0) size 10x49
     
    28122817                  RenderText {#text} at (3,0) size 18x49
    28132818                    text run at (3,0) width 49: "\x{4EBA}\x{4E0D}\x{77E5}"
    2814           RenderText {#text} at (1678,355) size 18x17
    2815             text run at (1678,355) width 17: "\x{3001}"
    2816           RenderRuby (inline) {RUBY} at (0,0) size 18x74
    2817             RenderRubyRun (anonymous) at (1675,371) size 24x73
     2819          RenderText {#text} at (1678,343) size 18x17
     2820            text run at (1678,343) width 17: "\x{3001}"
     2821          RenderRuby (inline) {RUBY} at (0,0) size 18x70
     2822            RenderRubyRun (anonymous) at (1675,355) size 24x73
    28182823              RenderRubyText {RT} at (-9,0) size 14x73
    28192824                RenderText {#text} at (2,0) size 10x73
     
    28232828                  RenderText {#text} at (3,4) size 18x65
    28242829                    text run at (3,4) width 65: "\x{660E}\x{6708}\x{6765}"
    2825           RenderRuby (inline) {RUBY} at (0,0) size 18x47
    2826             RenderRubyRun (anonymous) at (1675,444) size 24x46
     2830          RenderRuby (inline) {RUBY} at (0,0) size 18x44
     2831            RenderRubyRun (anonymous) at (1675,428) size 24x46
    28272832              RenderRubyText {RT} at (-9,0) size 14x46
    28282833                RenderText {#text} at (2,0) size 10x46
     
    28322837                  RenderText {#text} at (3,3) size 18x40
    28332838                    text run at (3,3) width 40: "\x{76F8}\x{7167}"
    2834           RenderText {#text} at (1706,0) size 18x162
    2835             text run at (1706,0) width 162: "\x{3002}\x{305F}\x{3060}\x{4E8C}\x{5341}\x{5B57}\x{306E}\x{3046}\x{3061}\x{306B}"
    2836           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    2837             RenderRubyRun (anonymous) at (1703,161) size 24x19
     2839          RenderText {#text} at (1678,471) size 46x488
     2840            text run at (1678,471) width 17: "\x{3002}"
     2841            text run at (1706,0) width 146: "\x{305F}\x{3060}\x{4E8C}\x{5341}\x{5B57}\x{306E}\x{3046}\x{3061}\x{306B}"
     2842          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     2843            RenderRubyRun (anonymous) at (1703,144) size 24x19
    28382844              RenderRubyText {RT} at (-9,0) size 14x19
    28392845                RenderText {#text} at (2,0) size 10x19
     
    28432849                  RenderText {#text} at (3,1) size 18x17
    28442850                    text run at (3,1) width 17: "\x{512A}"
    2845           RenderText {#text} at (1706,180) size 18x17
    2846             text run at (1706,180) width 17: "\x{306B}"
    2847           RenderRuby (inline) {RUBY} at (0,0) size 18x56
    2848             RenderRubyRun (anonymous) at (1703,196) size 24x55
     2851          RenderText {#text} at (1706,162) size 18x17
     2852            text run at (1706,162) width 17: "\x{306B}"
     2853          RenderRuby (inline) {RUBY} at (0,0) size 18x54
     2854            RenderRubyRun (anonymous) at (1703,177) size 24x55
    28492855              RenderRubyText {RT} at (-9,0) size 14x55
    28502856                RenderText {#text} at (2,0) size 10x55
     
    28542860                  RenderText {#text} at (3,1) size 18x53
    28552861                    text run at (3,1) width 53: "\x{5225}\x{4E7E}\x{5764}"
    2856           RenderText {#text} at (1706,251) size 18x17
    2857             text run at (1706,251) width 17: "\x{3092}"
    2858           RenderRuby (inline) {RUBY} at (0,0) size 18x47
    2859             RenderRubyRun (anonymous) at (1703,267) size 24x46
     2862          RenderText {#text} at (1706,231) size 18x17
     2863            text run at (1706,231) width 17: "\x{3092}"
     2864          RenderRuby (inline) {RUBY} at (0,0) size 18x41
     2865            RenderRubyRun (anonymous) at (1703,244) size 24x46
    28602866              RenderRubyText {RT} at (-9,0) size 14x46
    28612867                RenderText {#text} at (2,0) size 10x46
     
    28652871                  RenderText {#text} at (3,3) size 18x40
    28662872                    text run at (3,3) width 40: "\x{5EFA}\x{7ACB}"
    2867           RenderText {#text} at (1706,313) size 18x162
    2868             text run at (1706,313) width 162: "\x{3057}\x{3066}\x{3044}\x{308B}\x{3002}\x{3053}\x{306E}\x{4E7E}\x{5764}\x{306E}"
    2869           RenderRuby (inline) {RUBY} at (0,0) size 18x33
    2870             RenderRubyRun (anonymous) at (1731,0) size 24x33
     2873          RenderText {#text} at (1706,287) size 18x162
     2874            text run at (1706,287) width 162: "\x{3057}\x{3066}\x{3044}\x{308B}\x{3002}\x{3053}\x{306E}\x{4E7E}\x{5764}\x{306E}"
     2875          RenderRuby (inline) {RUBY} at (0,0) size 18x34
     2876            RenderRubyRun (anonymous) at (1703,448) size 24x33
    28712877              RenderRubyText {RT} at (-9,0) size 14x33
    28722878                RenderText {#text} at (2,0) size 10x33
     
    28762882                  RenderText {#text} at (3,0) size 18x33
    28772883                    text run at (3,0) width 33: "\x{529F}\x{5FB3}"
    2878           RenderText {#text} at (1734,33) size 18x33
    2879             text run at (1734,33) width 33: "\x{306F}\x{300C}"
     2884          RenderText {#text} at (1734,0) size 18x33
     2885            text run at (1734,0) width 33: "\x{306F}\x{300C}"
    28802886          RenderRuby (inline) {RUBY} at (0,0) size 18x50
    2881             RenderRubyRun (anonymous) at (1731,65) size 24x49
     2887            RenderRubyRun (anonymous) at (1731,32) size 24x49
    28822888              RenderRubyText {RT} at (-9,0) size 14x49
    28832889                RenderText {#text} at (2,0) size 10x49
     
    28872893                  RenderText {#text} at (3,0) size 18x49
    28882894                    text run at (3,0) width 49: "\x{4E0D}\x{5982}\x{5E30}"
    2889           RenderText {#text} at (1734,114) size 18x49
    2890             text run at (1734,114) width 49: "\x{300D}\x{3084}\x{300C}"
     2895          RenderText {#text} at (1734,81) size 18x49
     2896            text run at (1734,81) width 49: "\x{300D}\x{3084}\x{300C}"
    28912897          RenderRuby (inline) {RUBY} at (0,0) size 18x66
    2892             RenderRubyRun (anonymous) at (1731,163) size 24x65
     2898            RenderRubyRun (anonymous) at (1731,130) size 24x65
    28932899              RenderRubyText {RT} at (-9,0) size 14x65
    28942900                RenderText {#text} at (2,0) size 10x65
     
    28982904                  RenderText {#text} at (3,0) size 18x65
    28992905                    text run at (3,0) width 65: "\x{91D1}\x{8272}\x{591C}\x{53C9}"
    2900           RenderText {#text} at (1734,227) size 46x486
    2901             text run at (1734,227) width 258: "\x{300D}\x{306E}\x{529F}\x{5FB3}\x{3067}\x{306F}\x{306A}\x{3044}\x{3002}\x{6C7D}\x{8239}\x{3001}\x{6C7D}\x{8ECA}\x{3001}\x{6A29}"
    2902             text run at (1762,0) width 258: "\x{5229}\x{3001}\x{7FA9}\x{52D9}\x{3001}\x{9053}\x{5FB3}\x{3001}\x{793C}\x{7FA9}\x{3067}\x{75B2}\x{308C}\x{679C}\x{3066}\x{305F}"
    2903           RenderRuby (inline) {RUBY} at (0,0) size 18x20
    2904             RenderRubyRun (anonymous) at (1759,258) size 24x19
     2906          RenderText {#text} at (1734,194) size 46x485
     2907            text run at (1734,194) width 291: "\x{300D}\x{306E}\x{529F}\x{5FB3}\x{3067}\x{306F}\x{306A}\x{3044}\x{3002}\x{6C7D}\x{8239}\x{3001}\x{6C7D}\x{8ECA}\x{3001}\x{6A29}\x{5229}\x{3001}"
     2908            text run at (1762,0) width 226: "\x{7FA9}\x{52D9}\x{3001}\x{9053}\x{5FB3}\x{3001}\x{793C}\x{7FA9}\x{3067}\x{75B2}\x{308C}\x{679C}\x{3066}\x{305F}"
     2909          RenderRuby (inline) {RUBY} at (0,0) size 18x18
     2910            RenderRubyRun (anonymous) at (1759,225) size 24x19
    29052911              RenderRubyText {RT} at (-9,0) size 14x19
    29062912                RenderText {#text} at (2,0) size 10x19
     
    29102916                  RenderText {#text} at (3,1) size 18x17
    29112917                    text run at (3,1) width 17: "\x{5F8C}"
    2912           RenderText {#text} at (1762,276) size 42x487
    2913             text run at (1762,276) width 210: "\x{306B}\x{3001}\x{3059}\x{3079}\x{3066}\x{3092}\x{5FD8}\x{5374}\x{3057}\x{3066}\x{3050}\x{3063}\x{3059}"
    2914             text run at (1786,0) width 210: "\x{308A}\x{5BDD}\x{8FBC}\x{3080}\x{3088}\x{3046}\x{306A}\x{529F}\x{5FB3}\x{3067}\x{3042}\x{308B}\x{3002}"
    2915           RenderBR {BR} at (1786,209) size 18x1
     2918          RenderText {#text} at (1762,242) size 42x485
     2919            text run at (1762,242) width 242: "\x{306B}\x{3001}\x{3059}\x{3079}\x{3066}\x{3092}\x{5FD8}\x{5374}\x{3057}\x{3066}\x{3050}\x{3063}\x{3059}\x{308A}\x{5BDD}"
     2920            text run at (1786,0) width 178: "\x{8FBC}\x{3080}\x{3088}\x{3046}\x{306A}\x{529F}\x{5FB3}\x{3067}\x{3042}\x{308B}\x{3002}"
     2921          RenderBR {BR} at (1786,177) size 18x1
  • trunk/LayoutTests/platform/mac/fast/blockflow/english-lr-text-expected.checksum

    r70843 r82903  
    1 b0e78b32fc8bc34ada1184030208fca1
     1504d8afacf37d8ba6dcbf7c585e25b46
  • trunk/LayoutTests/platform/mac/fast/ruby/ruby-beforeafter-expected.checksum

    r77665 r82903  
    1 46b52de62a1da6f332ac407633fbd2b9
     182d15678358cd12dd4d095e2b3a45449
  • trunk/LayoutTests/platform/mac/fast/ruby/ruby-beforeafter-expected.txt

    r78885 r82903  
    1111        RenderText {#text} at (0,10) size 29x18
    1212          text run at (0,10) width 29: "Foo "
    13         RenderRuby (inline) {RUBY} at (0,0) size 85x18
     13        RenderRuby (inline) {RUBY} at (0,0) size 77x18
    1414          RenderInline (generated) at (0,0) size 50x18
    1515            RenderText at (29,10) size 50x18
    1616              text run at (29,10) width 50: "[before]"
    17           RenderRubyRun (anonymous) at (79,10) size 35x18
     17          RenderRubyRun (anonymous) at (75,10) size 35x18
    1818            RenderRubyText {RT} at (0,-10) size 35x10
    1919              RenderText {#text} at (0,0) size 35x10
     
    2222              RenderText {#text} at (13,0) size 9x18
    2323                text run at (13,0) width 9: "b"
    24         RenderText {#text} at (114,10) size 27x18
    25           text run at (114,10) width 27: " Bar"
    26         RenderBR {BR} at (141,24) size 0x0
     24        RenderText {#text} at (106,10) size 27x18
     25          text run at (106,10) width 27: " Bar"
     26        RenderBR {BR} at (133,24) size 0x0
    2727      RenderBlock {P} at (0,78) size 784x0
    2828      RenderBlock {P} at (0,78) size 784x0
     
    3030        RenderText {#text} at (0,10) size 29x18
    3131          text run at (0,10) width 29: "Foo "
    32         RenderRuby (inline) {RUBY} at (0,0) size 73x18
    33           RenderRubyRun (anonymous) at (29,10) size 35x18
     32        RenderRuby (inline) {RUBY} at (0,0) size 65x18
     33          RenderRubyRun (anonymous) at (25,10) size 35x18
    3434            RenderRubyText {RT} at (0,-10) size 35x10
    3535              RenderText {#text} at (0,0) size 35x10
     
    3939                text run at (13,0) width 9: "b"
    4040          RenderInline (generated) at (0,0) size 38x18
    41             RenderText at (64,10) size 38x18
    42               text run at (64,10) width 38: "[after]"
    43         RenderText {#text} at (102,10) size 27x18
    44           text run at (102,10) width 27: " Bar"
    45         RenderBR {BR} at (129,24) size 0x0
     41            RenderText at (56,10) size 38x18
     42              text run at (56,10) width 38: "[after]"
     43        RenderText {#text} at (94,10) size 27x18
     44          text run at (94,10) width 27: " Bar"
     45        RenderBR {BR} at (121,24) size 0x0
    4646      RenderBlock {P} at (0,122) size 784x0
    4747      RenderBlock {P} at (0,122) size 784x0
     
    4949        RenderText {#text} at (0,10) size 29x18
    5050          text run at (0,10) width 29: "Foo "
    51         RenderRuby (inline) {RUBY} at (0,0) size 123x18
     51        RenderRuby (inline) {RUBY} at (0,0) size 115x18
    5252          RenderInline (generated) at (0,0) size 50x18
    5353            RenderText at (29,10) size 50x18
    5454              text run at (29,10) width 50: "[before]"
    55           RenderRubyRun (anonymous) at (79,10) size 35x18
     55          RenderRubyRun (anonymous) at (75,10) size 35x18
    5656            RenderRubyText {RT} at (0,-10) size 35x10
    5757              RenderText {#text} at (0,0) size 35x10
     
    6161                text run at (13,0) width 9: "b"
    6262          RenderInline (generated) at (0,0) size 38x18
    63             RenderText at (114,10) size 38x18
    64               text run at (114,10) width 38: "[after]"
    65         RenderText {#text} at (152,10) size 27x18
    66           text run at (152,10) width 27: " Bar"
    67         RenderBR {BR} at (179,24) size 0x0
     63            RenderText at (106,10) size 38x18
     64              text run at (106,10) width 38: "[after]"
     65        RenderText {#text} at (144,10) size 27x18
     66          text run at (144,10) width 27: " Bar"
     67        RenderBR {BR} at (171,24) size 0x0
    6868      RenderBlock {P} at (0,166) size 784x0
  • trunk/LayoutTests/platform/mac/fast/ruby/ruby-length-expected.checksum

    r77665 r82903  
    1 0e8713446e09b1a4b726c1b207194c01
     1ee7dce4baaeeaac7910addc308354751
  • trunk/LayoutTests/platform/mac/fast/ruby/ruby-length-expected.txt

    r78885 r82903  
    2222      RenderText {#text} at (339,64) size 31x18
    2323        text run at (339,64) width 31: " and "
    24       RenderRuby (inline) {RUBY} at (0,0) size 89x18
    25         RenderRubyRun (anonymous) at (370,64) size 89x18
     24      RenderRuby (inline) {RUBY} at (0,0) size 81x18
     25        RenderRubyRun (anonymous) at (366,64) size 89x18
    2626          RenderRubyText {RT} at (0,-10) size 89x10
    2727            RenderText {#text} at (0,0) size 89x10
     
    3030            RenderText {#text} at (26,0) size 37x18
    3131              text run at (26,0) width 37: "CSS3"
    32       RenderText {#text} at (459,64) size 42x18
    33         text run at (459,64) width 42: " specs."
     32      RenderText {#text} at (451,64) size 42x18
     33        text run at (451,64) width 42: " specs."
  • trunk/LayoutTests/platform/mac/fast/ruby/ruby-run-break-expected.checksum

    r77665 r82903  
    1 689ac60737ee3f5407f1f8fa54f00a8a
     1b63e296b1e9f14025584a2d045171619
  • trunk/LayoutTests/platform/mac/fast/ruby/ruby-run-break-expected.txt

    r78885 r82903  
    1515        RenderText {#text} at (12,12) size 155x18
    1616          text run at (12,12) width 155: "<ruby> is defined in the "
    17         RenderRuby (inline) {RUBY} at (0,0) size 225x46
    18           RenderRubyRun (anonymous) at (167,12) size 23x18
     17        RenderRuby (inline) {RUBY} at (0,0) size 258x46
     18          RenderRubyRun (anonymous) at (163,12) size 23x18
    1919            RenderRubyText {RT} at (0,-10) size 23x10
    2020              RenderText {#text} at (0,0) size 23x10
     
    2323              RenderText {#text} at (5,0) size 13x18
    2424                text run at (5,0) width 13: "H"
    25           RenderRubyRun (anonymous) at (190,12) size 17x18
     25          RenderRubyRun (anonymous) at (186,12) size 17x18
    2626            RenderRubyText {RT} at (0,-10) size 17x10
    2727              RenderText {#text} at (0,0) size 17x10
     
    3030              RenderText {#text} at (3,0) size 11x18
    3131                text run at (3,0) width 11: "T"
    32           RenderRubyRun (anonymous) at (207,12) size 30x18
     32          RenderRubyRun (anonymous) at (203,12) size 30x18
    3333            RenderRubyText {RT} at (0,-10) size 30x10
    3434              RenderText {#text} at (0,0) size 30x10
     
    3737              RenderText {#text} at (8,0) size 14x18
    3838                text run at (8,0) width 14: "M"
    39           RenderRubyRun (anonymous) at (12,40) size 37x18
     39          RenderRubyRun (anonymous) at (233,12) size 37x18
    4040            RenderRubyText {RT} at (0,-10) size 37x10
    4141              RenderText {#text} at (0,0) size 37x10
     
    4444              RenderText {#text} at (13,0) size 11x18
    4545                text run at (13,0) width 11: "L"
    46           RenderRubyRun (anonymous) at (49,40) size 28x18
     46          RenderRubyRun (anonymous) at (12,40) size 28x18
    4747            RenderRubyText {RT} at (0,-10) size 28x10
    4848              RenderText {#text} at (0,0) size 28x10
     
    5151              RenderText {#text} at (10,0) size 8x18
    5252                text run at (10,0) width 8: "5"
    53         RenderText {#text} at (77,40) size 42x18
    54           text run at (77,40) width 42: " specs."
     53        RenderText {#text} at (36,40) size 42x18
     54          text run at (36,40) width 42: " specs."
  • trunk/LayoutTests/platform/mac/fast/ruby/ruby-runs-expected.checksum

    r77665 r82903  
    1 e390d099dabf13ecd4a4a38b114f5b76
     1abeac444e29832edf34742e47aaa68f1
  • trunk/LayoutTests/platform/mac/fast/ruby/ruby-runs-expected.txt

    r78885 r82903  
    1212        RenderText {#text} at (0,10) size 155x18
    1313          text run at (0,10) width 155: "<ruby> is defined in the "
    14         RenderRuby (inline) {RUBY} at (0,0) size 135x18
    15           RenderRubyRun (anonymous) at (155,10) size 23x18
     14        RenderRuby (inline) {RUBY} at (0,0) size 127x18
     15          RenderRubyRun (anonymous) at (151,10) size 23x18
    1616            RenderRubyText {RT} at (0,-10) size 23x10
    1717              RenderText {#text} at (0,0) size 23x10
     
    2020              RenderText {#text} at (5,0) size 13x18
    2121                text run at (5,0) width 13: "H"
    22           RenderRubyRun (anonymous) at (178,10) size 17x18
     22          RenderRubyRun (anonymous) at (174,10) size 17x18
    2323            RenderRubyText {RT} at (0,-10) size 17x10
    2424              RenderText {#text} at (0,0) size 17x10
     
    2727              RenderText {#text} at (3,0) size 11x18
    2828                text run at (3,0) width 11: "T"
    29           RenderRubyRun (anonymous) at (195,10) size 30x18
     29          RenderRubyRun (anonymous) at (191,10) size 30x18
    3030            RenderRubyText {RT} at (0,-10) size 30x10
    3131              RenderText {#text} at (0,0) size 30x10
     
    3434              RenderText {#text} at (8,0) size 14x18
    3535                text run at (8,0) width 14: "M"
    36           RenderRubyRun (anonymous) at (225,10) size 37x18
     36          RenderRubyRun (anonymous) at (221,10) size 37x18
    3737            RenderRubyText {RT} at (0,-10) size 37x10
    3838              RenderText {#text} at (0,0) size 37x10
     
    4141              RenderText {#text} at (13,0) size 11x18
    4242                text run at (13,0) width 11: "L"
    43           RenderRubyRun (anonymous) at (262,10) size 28x18
     43          RenderRubyRun (anonymous) at (258,10) size 28x18
    4444            RenderRubyText {RT} at (0,-10) size 28x10
    4545              RenderText {#text} at (0,0) size 28x10
     
    4848              RenderText {#text} at (10,0) size 8x18
    4949                text run at (10,0) width 8: "5"
    50         RenderText {#text} at (290,10) size 42x18
    51           text run at (290,10) width 42: " specs."
     50        RenderText {#text} at (282,10) size 42x18
     51          text run at (282,10) width 42: " specs."
  • trunk/LayoutTests/platform/mac/fast/ruby/ruby-runs-spans-expected.checksum

    r77665 r82903  
    1 01c9c4cbb7e988fa00a14bda7644d366
     11decbb9fe1a27adbab437fe9b09fa225
  • trunk/LayoutTests/platform/mac/fast/ruby/ruby-runs-spans-expected.txt

    r78885 r82903  
    1010        RenderText {#text} at (0,10) size 155x18
    1111          text run at (0,10) width 155: "<ruby> is defined in the "
    12         RenderRuby (inline) {RUBY} at (0,0) size 134x18
    13           RenderRubyRun (anonymous) at (155,10) size 41x18
     12        RenderRuby (inline) {RUBY} at (0,0) size 126x18
     13          RenderRubyRun (anonymous) at (151,10) size 41x18
    1414            RenderRubyText {RT} at (0,-10) size 41x10
    1515              RenderText {#text} at (0,0) size 41x10
     
    1919                RenderText {#text} at (9,0) size 23x18
    2020                  text run at (9,0) width 23: "HT"
    21           RenderRubyRun (anonymous) at (196,10) size 93x18
     21          RenderRubyRun (anonymous) at (192,10) size 93x18
    2222            RenderRubyText {RT} at (0,-10) size 93x10
    2323              RenderText {#text} at (0,0) size 93x10
     
    3333                RenderText {#text} at (54,0) size 9x18
    3434                  text run at (54,0) width 9: "5"
    35         RenderText {#text} at (289,10) size 36x18
    36           text run at (289,10) width 36: " spec."
     35        RenderText {#text} at (281,10) size 36x18
     36          text run at (281,10) width 36: " spec."
  • trunk/LayoutTests/platform/mac/fast/ruby/ruby-trailing-expected.checksum

    r77665 r82903  
    1 9b97f292e4ada3df6b1b64112c262a38
     1b9ac9a698df6b7ad88ee1ede60472946
  • trunk/LayoutTests/platform/mac/fast/ruby/ruby-trailing-expected.txt

    r77665 r82903  
    1313        RenderText {#text} at (0,10) size 155x18
    1414          text run at (0,10) width 155: "<ruby> is defined in the "
    15         RenderRuby (inline) {RUBY} at (0,0) size 120x18
    16           RenderRubyRun (anonymous) at (155,10) size 112x18
     15        RenderRuby (inline) {RUBY} at (0,0) size 116x18
     16          RenderRubyRun (anonymous) at (151,10) size 112x18
    1717            RenderRubyText {RT} at (0,-10) size 112x10
    1818              RenderText {#text} at (0,0) size 112x10
     
    2121              RenderText {#text} at (33,0) size 46x18
    2222                text run at (33,0) width 46: "HTML"
    23           RenderRubyRun (anonymous) at (267,10) size 8x18
     23          RenderRubyRun (anonymous) at (263,10) size 8x18
    2424            RenderRubyBase (anonymous) at (0,0) size 8x18
    2525              RenderText {#text} at (0,0) size 8x18
    2626                text run at (0,0) width 8: "5"
    27         RenderText {#text} at (275,10) size 4x18
    28           text run at (275,10) width 4: "."
     27        RenderText {#text} at (271,10) size 4x18
     28          text run at (271,10) width 4: "."
  • trunk/LayoutTests/platform/mac/fast/ruby/rubyDOM-insert-rt-expected.checksum

    r77665 r82903  
    1 f0d7856a1967b79d43d442cfc9c6eef5
     17014f286e651a037e93bb502db9ea230
  • trunk/LayoutTests/platform/mac/fast/ruby/rubyDOM-insert-rt-expected.txt

    r78885 r82903  
    1616        RenderText {#text} at (0,10) size 155x18
    1717          text run at (0,10) width 155: "<ruby> is defined in the "
    18         RenderRuby (inline) {RUBY} at (0,0) size 118x18
    19           RenderRubyRun (anonymous) at (155,10) size 41x18
     18        RenderRuby (inline) {RUBY} at (0,0) size 114x18
     19          RenderRubyRun (anonymous) at (151,10) size 41x18
    2020            RenderRubyText {RT} at (0,-10) size 41x10
    2121              RenderText {#text} at (0,0) size 41x10
     
    2525                RenderText {#text} at (9,0) size 23x18
    2626                  text run at (9,0) width 23: "HT"
    27           RenderRubyRun (anonymous) at (196,10) size 69x18
     27          RenderRubyRun (anonymous) at (192,10) size 69x18
    2828            RenderRubyText {RT} at (0,-10) size 69x10
    2929              RenderText {#text} at (0,0) size 69x10
     
    3333                RenderText {#text} at (22,0) size 25x18
    3434                  text run at (22,0) width 25: "ML"
    35           RenderRubyRun (anonymous) at (265,10) size 8x18
     35          RenderRubyRun (anonymous) at (261,10) size 8x18
    3636            RenderRubyBase (anonymous) at (0,0) size 8x18
    3737              RenderText {#text} at (0,0) size 8x18
    3838                text run at (0,0) width 8: "5"
    39         RenderText {#text} at (273,10) size 36x18
    40           text run at (273,10) width 36: " spec."
     39        RenderText {#text} at (269,10) size 36x18
     40          text run at (269,10) width 36: " spec."
    4141      RenderBlock {P} at (0,164) size 784x28
    4242        RenderText {#text} at (0,10) size 155x18
    4343          text run at (0,10) width 155: "<ruby> is defined in the "
    44         RenderRuby (inline) {RUBY} at (0,0) size 118x18
    45           RenderRubyRun (anonymous) at (155,10) size 41x18
     44        RenderRuby (inline) {RUBY} at (0,0) size 114x18
     45          RenderRubyRun (anonymous) at (151,10) size 41x18
    4646            RenderRubyText {RT} at (0,-10) size 41x10
    4747              RenderText {#text} at (0,0) size 41x10
     
    5151                RenderText {#text} at (9,0) size 23x18
    5252                  text run at (9,0) width 23: "HT"
    53           RenderRubyRun (anonymous) at (196,10) size 69x18
     53          RenderRubyRun (anonymous) at (192,10) size 69x18
    5454            RenderRubyText {RT} at (0,-10) size 69x10
    5555              RenderText {#text} at (0,0) size 69x10
     
    5959                RenderText {#text} at (22,0) size 25x18
    6060                  text run at (22,0) width 25: "ML"
    61           RenderRubyRun (anonymous) at (265,10) size 8x18
     61          RenderRubyRun (anonymous) at (261,10) size 8x18
    6262            RenderRubyBase (anonymous) at (0,0) size 8x18
    6363              RenderText {#text} at (0,0) size 8x18
    6464                text run at (0,0) width 8: "5"
    65         RenderText {#text} at (273,10) size 36x18
    66           text run at (273,10) width 36: " spec."
     65        RenderText {#text} at (269,10) size 36x18
     66          text run at (269,10) width 36: " spec."
  • trunk/LayoutTests/platform/mac/fast/ruby/rubyDOM-insert-text1-expected.checksum

    r77665 r82903  
    1 172537bb209c5aa7fd712edc9aa8098d
     1e273d218ac693559f2e7a31ae8597c28
  • trunk/LayoutTests/platform/mac/fast/ruby/rubyDOM-insert-text1-expected.txt

    r78885 r82903  
    1616        RenderText {#text} at (0,10) size 155x18
    1717          text run at (0,10) width 155: "<ruby> is defined in the "
    18         RenderRuby (inline) {RUBY} at (0,0) size 118x18
    19           RenderRubyRun (anonymous) at (155,10) size 41x18
     18        RenderRuby (inline) {RUBY} at (0,0) size 114x18
     19          RenderRubyRun (anonymous) at (151,10) size 41x18
    2020            RenderRubyText {RT} at (0,-10) size 41x10
    2121              RenderText {#text} at (0,0) size 41x10
     
    2424              RenderText {#text} at (9,0) size 23x18
    2525                text run at (9,0) width 23: "HT"
    26           RenderRubyRun (anonymous) at (196,10) size 69x18
     26          RenderRubyRun (anonymous) at (192,10) size 69x18
    2727            RenderRubyText {RT} at (0,-10) size 69x10
    2828              RenderText {#text} at (0,0) size 69x10
     
    3131              RenderText {#text} at (22,0) size 25x18
    3232                text run at (22,0) width 25: "ML"
    33           RenderRubyRun (anonymous) at (265,10) size 8x18
     33          RenderRubyRun (anonymous) at (261,10) size 8x18
    3434            RenderRubyBase (anonymous) at (0,0) size 8x18
    3535              RenderText {#text} at (0,0) size 8x18
    3636                text run at (0,0) width 8: "5"
    37         RenderText {#text} at (273,10) size 36x18
    38           text run at (273,10) width 36: " spec."
     37        RenderText {#text} at (269,10) size 36x18
     38          text run at (269,10) width 36: " spec."
    3939      RenderBlock {P} at (0,164) size 784x28
    4040        RenderText {#text} at (0,10) size 155x18
    4141          text run at (0,10) width 155: "<ruby> is defined in the "
    42         RenderRuby (inline) {RUBY} at (0,0) size 118x18
    43           RenderRubyRun (anonymous) at (155,10) size 41x18
     42        RenderRuby (inline) {RUBY} at (0,0) size 114x18
     43          RenderRubyRun (anonymous) at (151,10) size 41x18
    4444            RenderRubyText {RT} at (0,-10) size 41x10
    4545              RenderText {#text} at (0,0) size 41x10
     
    4848              RenderText {#text} at (9,0) size 23x18
    4949                text run at (9,0) width 23: "HT"
    50           RenderRubyRun (anonymous) at (196,10) size 69x18
     50          RenderRubyRun (anonymous) at (192,10) size 69x18
    5151            RenderRubyText {RT} at (0,-10) size 69x10
    5252              RenderText {#text} at (0,0) size 69x10
     
    5555              RenderText {#text} at (22,0) size 25x18
    5656                text run at (22,0) width 25: "ML"
    57           RenderRubyRun (anonymous) at (265,10) size 8x18
     57          RenderRubyRun (anonymous) at (261,10) size 8x18
    5858            RenderRubyBase (anonymous) at (0,0) size 8x18
    5959              RenderText {#text} at (0,0) size 8x18
    6060                text run at (0,0) width 8: "5"
    61         RenderText {#text} at (273,10) size 36x18
    62           text run at (273,10) width 36: " spec."
     61        RenderText {#text} at (269,10) size 36x18
     62          text run at (269,10) width 36: " spec."
  • trunk/LayoutTests/platform/mac/fast/ruby/rubyDOM-insert-text2-expected.checksum

    r77665 r82903  
    1 a0510f959d357632d81fb9ffe8163639
     16ab7d8cf5ed0f9ba0da2052ab2b51cee
  • trunk/LayoutTests/platform/mac/fast/ruby/rubyDOM-insert-text2-expected.txt

    r77665 r82903  
    1717        RenderText {#text} at (0,10) size 155x18
    1818          text run at (0,10) width 155: "<ruby> is defined in the "
    19         RenderRuby (inline) {RUBY} at (0,0) size 120x18
    20           RenderRubyRun (anonymous) at (155,10) size 112x18
     19        RenderRuby (inline) {RUBY} at (0,0) size 116x18
     20          RenderRubyRun (anonymous) at (151,10) size 112x18
    2121            RenderRubyText {RT} at (0,-10) size 112x10
    2222              RenderText {#text} at (0,0) size 112x10
     
    2828              RenderText {#text} at (55,0) size 24x18
    2929                text run at (55,0) width 24: "ML"
    30           RenderRubyRun (anonymous) at (267,10) size 8x18
     30          RenderRubyRun (anonymous) at (263,10) size 8x18
    3131            RenderRubyBase (anonymous) at (0,0) size 8x18
    3232              RenderText {#text} at (0,0) size 8x18
    3333                text run at (0,0) width 8: "5"
    34         RenderText {#text} at (275,10) size 36x18
    35           text run at (275,10) width 36: " spec."
     34        RenderText {#text} at (271,10) size 36x18
     35          text run at (271,10) width 36: " spec."
    3636      RenderBlock {P} at (0,182) size 784x28
    3737        RenderText {#text} at (0,10) size 155x18
    3838          text run at (0,10) width 155: "<ruby> is defined in the "
    39         RenderRuby (inline) {RUBY} at (0,0) size 120x18
    40           RenderRubyRun (anonymous) at (155,10) size 112x18
     39        RenderRuby (inline) {RUBY} at (0,0) size 116x18
     40          RenderRubyRun (anonymous) at (151,10) size 112x18
    4141            RenderRubyText {RT} at (0,-10) size 112x10
    4242              RenderText {#text} at (0,0) size 112x10
     
    4646                text run at (33,0) width 46: "HTML"
    4747              RenderInline {SPAN} at (0,0) size 0x18
    48           RenderRubyRun (anonymous) at (267,10) size 8x18
     48          RenderRubyRun (anonymous) at (263,10) size 8x18
    4949            RenderRubyBase (anonymous) at (0,0) size 8x18
    5050              RenderText {#text} at (0,0) size 8x18
    5151                text run at (0,0) width 8: "5"
    52         RenderText {#text} at (275,10) size 36x18
    53           text run at (275,10) width 36: " spec."
     52        RenderText {#text} at (271,10) size 36x18
     53          text run at (271,10) width 36: " spec."
  • trunk/LayoutTests/platform/mac/fast/ruby/rubyDOM-insert-text3-expected.checksum

    r77665 r82903  
    1 51922d70d0e4bad95e9a1b0c24745d6d
     1ffd8035e48d0b129e2def31762b4529a
  • trunk/LayoutTests/platform/mac/fast/ruby/rubyDOM-insert-text3-expected.txt

    r77665 r82903  
    1616        RenderText {#text} at (0,10) size 155x18
    1717          text run at (0,10) width 155: "<ruby> is defined in the "
    18         RenderRuby (inline) {RUBY} at (0,0) size 120x18
    19           RenderRubyRun (anonymous) at (155,10) size 112x18
     18        RenderRuby (inline) {RUBY} at (0,0) size 116x18
     19          RenderRubyRun (anonymous) at (151,10) size 112x18
    2020            RenderRubyText {RT} at (0,-10) size 112x10
    2121              RenderText {#text} at (0,0) size 112x10
     
    2727                RenderText {#text} at (55,0) size 24x18
    2828                  text run at (55,0) width 24: "ML"
    29           RenderRubyRun (anonymous) at (267,10) size 8x18
     29          RenderRubyRun (anonymous) at (263,10) size 8x18
    3030            RenderRubyBase (anonymous) at (0,0) size 8x18
    3131              RenderText {#text} at (0,0) size 8x18
    3232                text run at (0,0) width 8: "5"
    33         RenderText {#text} at (275,10) size 36x18
    34           text run at (275,10) width 36: " spec."
     33        RenderText {#text} at (271,10) size 36x18
     34          text run at (271,10) width 36: " spec."
    3535      RenderBlock {P} at (0,164) size 784x28
    3636        RenderText {#text} at (0,10) size 155x18
    3737          text run at (0,10) width 155: "<ruby> is defined in the "
    38         RenderRuby (inline) {RUBY} at (0,0) size 120x18
    39           RenderRubyRun (anonymous) at (155,10) size 112x18
     38        RenderRuby (inline) {RUBY} at (0,0) size 116x18
     39          RenderRubyRun (anonymous) at (151,10) size 112x18
    4040            RenderRubyText {RT} at (0,-10) size 112x10
    4141              RenderText {#text} at (0,0) size 112x10
     
    4747                RenderText {#text} at (55,0) size 24x18
    4848                  text run at (55,0) width 24: "ML"
    49           RenderRubyRun (anonymous) at (267,10) size 8x18
     49          RenderRubyRun (anonymous) at (263,10) size 8x18
    5050            RenderRubyBase (anonymous) at (0,0) size 8x18
    5151              RenderText {#text} at (0,0) size 8x18
    5252                text run at (0,0) width 8: "5"
    53         RenderText {#text} at (275,10) size 36x18
    54           text run at (275,10) width 36: " spec."
     53        RenderText {#text} at (271,10) size 36x18
     54          text run at (271,10) width 36: " spec."
  • trunk/LayoutTests/platform/mac/fast/ruby/rubyDOM-remove-rt1-expected.checksum

    r77665 r82903  
    1 dc0f3201a8e98ba0510820042600aae6
     1a74614632bfe374821be717b74045c0d
  • trunk/LayoutTests/platform/mac/fast/ruby/rubyDOM-remove-rt1-expected.txt

    r77665 r82903  
    1616        RenderText {#text} at (0,10) size 155x18
    1717          text run at (0,10) width 155: "<ruby> is defined in the "
    18         RenderRuby (inline) {RUBY} at (0,0) size 120x18
    19           RenderRubyRun (anonymous) at (155,10) size 112x18
     18        RenderRuby (inline) {RUBY} at (0,0) size 116x18
     19          RenderRubyRun (anonymous) at (151,10) size 112x18
    2020            RenderRubyText {RT} at (0,-10) size 112x10
    2121              RenderText {#text} at (0,0) size 112x10
     
    2424              RenderText {#text} at (33,0) size 46x18
    2525                text run at (33,0) width 46: "HTML"
    26           RenderRubyRun (anonymous) at (267,10) size 8x18
     26          RenderRubyRun (anonymous) at (263,10) size 8x18
    2727            RenderRubyBase (anonymous) at (0,0) size 8x18
    2828              RenderText {#text} at (0,0) size 8x18
    2929                text run at (0,0) width 8: "5"
    30         RenderText {#text} at (275,10) size 36x18
    31           text run at (275,10) width 36: " spec."
     30        RenderText {#text} at (271,10) size 36x18
     31          text run at (271,10) width 36: " spec."
    3232      RenderBlock {P} at (0,164) size 784x28
    3333        RenderText {#text} at (0,10) size 155x18
    3434          text run at (0,10) width 155: "<ruby> is defined in the "
    35         RenderRuby (inline) {RUBY} at (0,0) size 120x18
    36           RenderRubyRun (anonymous) at (155,10) size 112x18
     35        RenderRuby (inline) {RUBY} at (0,0) size 116x18
     36          RenderRubyRun (anonymous) at (151,10) size 112x18
    3737            RenderRubyText {RT} at (0,-10) size 112x10
    3838              RenderText {#text} at (0,0) size 112x10
     
    4141              RenderText {#text} at (33,0) size 46x18
    4242                text run at (33,0) width 46: "HTML"
    43           RenderRubyRun (anonymous) at (267,10) size 8x18
     43          RenderRubyRun (anonymous) at (263,10) size 8x18
    4444            RenderRubyBase (anonymous) at (0,0) size 8x18
    4545              RenderText {#text} at (0,0) size 8x18
    4646                text run at (0,0) width 8: "5"
    47         RenderText {#text} at (275,10) size 36x18
    48           text run at (275,10) width 36: " spec."
     47        RenderText {#text} at (271,10) size 36x18
     48          text run at (271,10) width 36: " spec."
  • trunk/LayoutTests/platform/mac/fast/ruby/rubyDOM-remove-rt2-expected.checksum

    r77665 r82903  
    1 2742b62640bde6f515be227683260b14
     1e5ba695748da76c52deb3c006c08ebde
  • trunk/LayoutTests/platform/mac/fast/ruby/rubyDOM-remove-rt2-expected.txt

    r77665 r82903  
    1717        RenderText {#text} at (0,10) size 155x18
    1818          text run at (0,10) width 155: "<ruby> is defined in the "
    19         RenderRuby (inline) {RUBY} at (0,0) size 120x18
    20           RenderRubyRun (anonymous) at (155,10) size 112x18
     19        RenderRuby (inline) {RUBY} at (0,0) size 116x18
     20          RenderRubyRun (anonymous) at (151,10) size 112x18
    2121            RenderRubyText {RT} at (0,-10) size 112x10
    2222              RenderText {#text} at (0,0) size 112x10
     
    2727              RenderText {#text} at (55,0) size 24x18
    2828                text run at (55,0) width 24: "ML"
    29           RenderRubyRun (anonymous) at (267,10) size 8x18
     29          RenderRubyRun (anonymous) at (263,10) size 8x18
    3030            RenderRubyBase (anonymous) at (0,0) size 8x18
    3131              RenderText {#text} at (0,0) size 8x18
    3232                text run at (0,0) width 8: "5"
    33         RenderText {#text} at (275,10) size 36x18
    34           text run at (275,10) width 36: " spec."
     33        RenderText {#text} at (271,10) size 36x18
     34          text run at (271,10) width 36: " spec."
    3535      RenderBlock {P} at (0,182) size 784x28
    3636        RenderText {#text} at (0,10) size 155x18
    3737          text run at (0,10) width 155: "<ruby> is defined in the "
    38         RenderRuby (inline) {RUBY} at (0,0) size 120x18
    39           RenderRubyRun (anonymous) at (155,10) size 112x18
     38        RenderRuby (inline) {RUBY} at (0,0) size 116x18
     39          RenderRubyRun (anonymous) at (151,10) size 112x18
    4040            RenderRubyText {RT} at (0,-10) size 112x10
    4141              RenderText {#text} at (0,0) size 112x10
     
    4444              RenderText {#text} at (33,0) size 46x18
    4545                text run at (33,0) width 46: "HTML"
    46           RenderRubyRun (anonymous) at (267,10) size 8x18
     46          RenderRubyRun (anonymous) at (263,10) size 8x18
    4747            RenderRubyBase (anonymous) at (0,0) size 8x18
    4848              RenderText {#text} at (0,0) size 8x18
    4949                text run at (0,0) width 8: "5"
    50         RenderText {#text} at (275,10) size 36x18
    51           text run at (275,10) width 36: " spec."
     50        RenderText {#text} at (271,10) size 36x18
     51          text run at (271,10) width 36: " spec."
  • trunk/LayoutTests/platform/mac/fast/ruby/rubyDOM-remove-text1-expected.checksum

    r77665 r82903  
    1 56f177f6e8bff6c589a9e54055cddde7
     1bd682cf87103bf66e69578ffc9d51205
  • trunk/LayoutTests/platform/mac/fast/ruby/rubyDOM-remove-text1-expected.txt

    r77665 r82903  
    1616        RenderText {#text} at (0,10) size 155x18
    1717          text run at (0,10) width 155: "<ruby> is defined in the "
    18         RenderRuby (inline) {RUBY} at (0,0) size 120x18
    19           RenderRubyRun (anonymous) at (155,10) size 112x18
     18        RenderRuby (inline) {RUBY} at (0,0) size 116x18
     19          RenderRubyRun (anonymous) at (151,10) size 112x18
    2020            RenderRubyText {RT} at (0,-10) size 112x10
    2121              RenderText {#text} at (0,0) size 112x10
     
    2525                RenderText {#text} at (33,0) size 46x18
    2626                  text run at (33,0) width 46: "HTML"
    27           RenderRubyRun (anonymous) at (267,10) size 8x18
     27          RenderRubyRun (anonymous) at (263,10) size 8x18
    2828            RenderRubyBase (anonymous) at (0,0) size 8x18
    2929              RenderText {#text} at (0,0) size 8x18
    3030                text run at (0,0) width 8: "5"
    31         RenderText {#text} at (275,10) size 36x18
    32           text run at (275,10) width 36: " spec."
     31        RenderText {#text} at (271,10) size 36x18
     32          text run at (271,10) width 36: " spec."
    3333      RenderBlock {P} at (0,164) size 784x28
    3434        RenderText {#text} at (0,10) size 155x18
    3535          text run at (0,10) width 155: "<ruby> is defined in the "
    36         RenderRuby (inline) {RUBY} at (0,0) size 120x18
    37           RenderRubyRun (anonymous) at (155,10) size 112x18
     36        RenderRuby (inline) {RUBY} at (0,0) size 116x18
     37          RenderRubyRun (anonymous) at (151,10) size 112x18
    3838            RenderRubyText {RT} at (0,-10) size 112x10
    3939              RenderText {#text} at (0,0) size 112x10
     
    4343                RenderText {#text} at (33,0) size 46x18
    4444                  text run at (33,0) width 46: "HTML"
    45           RenderRubyRun (anonymous) at (267,10) size 8x18
     45          RenderRubyRun (anonymous) at (263,10) size 8x18
    4646            RenderRubyBase (anonymous) at (0,0) size 8x18
    4747              RenderText {#text} at (0,0) size 8x18
    4848                text run at (0,0) width 8: "5"
    49         RenderText {#text} at (275,10) size 36x18
    50           text run at (275,10) width 36: " spec."
     49        RenderText {#text} at (271,10) size 36x18
     50          text run at (271,10) width 36: " spec."
  • trunk/Source/WebCore/ChangeLog

    r82900 r82903  
     12011-04-04  Dan Bernstein  <mitz@apple.com>
     2
     3        Reviewed by Simon Fraser.
     4
     5        <rdar://problem/7709452> Implement Default Ruby Overhang Behavior
     6        https://bugs.webkit.org/show_bug.cgi?id=49334
     7
     8        Tests: fast/ruby/overhang-horizontal.html
     9               fast/ruby/overhang-vertical.html
     10
     11        This is a first cut at ruby overhang. It allows ruby text to hang over other
     12        text of equal or smaller size. Two notable omissions are that max preferred
     13        width computation was not patched, so it will overshoot, and that overhang
     14        ignores the width of the adjoining text runs.
     15
     16        * rendering/RenderBlock.h:
     17        * rendering/RenderBlockLineLayout.cpp:
     18        (WebCore::RenderBlock::computeInlineDirectionPositionsForLine): Adjust margins
     19        of ruby runs for overhang.
     20        (WebCore::RenderBlock::fitBelowFloats): Maintain the increase in line width to
     21        compensate for overhang.
     22        (WebCore::RenderBlock::findNextLineBreak): When encountering
     23        a ruby run, increase the line width to account for the fact that overhang will be
     24        collapsed.
     25        * rendering/RenderRubyRun.cpp:
     26        (WebCore::RenderRubyRun::getOverhang): Added. Allows ruby to overhang if
     27        the adjoining renderer is text with equal or smaller font size.
     28        * rendering/RenderRubyRun.h:
     29        (WebCore::toRenderRubyRun):
     30
    1312011-04-04  David Kilzer  <ddkilzer@apple.com>
    232
  • trunk/Source/WebCore/rendering/RenderBlock.h

    r82792 r82903  
    495495    void skipTrailingWhitespace(InlineIterator&, bool isLineEmpty, bool previousLineBrokeCleanly);
    496496    void skipLeadingWhitespace(InlineBidiResolver&, bool firstLine, bool isLineEmpty, bool previousLineBrokeCleanly, FloatingObject* lastFloatFromPreviousLine, int& lineLeftOffset, int& lineRightOffset);
    497     void fitBelowFloats(float widthToFit, bool firstLine, float& availableWidth);
     497    void fitBelowFloats(float widthToFit, float totalOverhangWidth, bool firstLine, float& availableWidth);
    498498    typedef std::pair<RenderText*, LazyLineBreakIterator> LineBreakIteratorInfo;
    499499    InlineIterator findNextLineBreak(InlineBidiResolver&, bool firstLine, bool& isLineEmpty, LineBreakIteratorInfo&, bool& previousLineBrokeCleanly, bool& hyphenated,
  • trunk/Source/WebCore/rendering/RenderBlockLineLayout.cpp

    r82793 r82903  
    3333#include "RenderLayer.h"
    3434#include "RenderListMarker.h"
     35#include "RenderRubyRun.h"
    3536#include "RenderView.h"
    3637#include "Settings.h"
     
    393394    bool isAfterExpansion = true;
    394395    Vector<unsigned, 16> expansionOpportunities;
     396    RenderObject* previousObject = 0;
    395397
    396398    for (BidiRun* r = firstRun; r; r = r->next()) {
     
    455457            if (!r->m_object->isRenderInline()) {
    456458                RenderBox* renderBox = toRenderBox(r->m_object);
     459                if (renderBox->isRubyRun()) {
     460                    int startOverhang;
     461                    int endOverhang;
     462                    RenderObject* nextObject = 0;
     463                    for (BidiRun* runWithNextObject = r->next(); runWithNextObject; runWithNextObject = runWithNextObject->next()) {
     464                        if (!runWithNextObject->m_object->isPositioned() && !runWithNextObject->m_box->isLineBreak()) {
     465                            nextObject = runWithNextObject->m_object;
     466                            break;
     467                        }
     468                    }
     469                    toRenderRubyRun(renderBox)->getOverhang(firstLine, renderBox->style()->isLeftToRightDirection() ? previousObject : nextObject, renderBox->style()->isLeftToRightDirection() ? nextObject : previousObject, startOverhang, endOverhang);
     470                    setMarginStartForChild(renderBox, -startOverhang);
     471                    setMarginEndForChild(renderBox, -endOverhang);
     472                }
    457473                r->m_box->setLogicalWidth(logicalWidthForChild(renderBox));
    458474                totalLogicalWidth += marginStartForChild(renderBox) + marginEndForChild(renderBox);
     
    461477
    462478        totalLogicalWidth += r->m_box->logicalWidth();
     479        previousObject = r->m_object;
    463480    }
    464481
     
    14661483}
    14671484
    1468 void RenderBlock::fitBelowFloats(float widthToFit, bool firstLine, float& availableWidth)
     1485void RenderBlock::fitBelowFloats(float widthToFit, float totalOverhangWidth, bool firstLine, float& availableWidth)
    14691486{
    14701487    ASSERT(widthToFit > availableWidth);
     
    14861503    if (newLineWidth > availableWidth) {
    14871504        setLogicalHeight(lastFloatLogicalBottom);
    1488         availableWidth = newLineWidth;
     1505        availableWidth = newLineWidth + totalOverhangWidth;
    14891506    }
    14901507}
     
    15591576    float w = 0;
    15601577    float tmpW = 0;
     1578    // The amount by which |width| has been inflated to account for possible contraction due to ruby overhang.
     1579    float totalOverhangWidth = 0;
    15611580
    15621581    if (resolver.position().atEnd())
     
    16021621    EWhiteSpace lastWS = currWS;
    16031622    while (o) {
     1623        RenderObject* next = bidiNext(this, o);
     1624
    16041625        currWS = o->isReplaced() ? o->parent()->style()->whiteSpace() : o->style()->whiteSpace();
    16051626        lastWS = last->isReplaced() ? last->parent()->style()->whiteSpace() : last->style()->whiteSpace();
     
    16471668                if (floatsFitOnLine && logicalWidthForFloat(f) + w + tmpW <= width) {
    16481669                    positionNewFloatOnLine(f, lastFloatFromPreviousLine, firstLine, lineLeftOffset, lineRightOffset);
    1649                     width = max(0, lineRightOffset - lineLeftOffset);
     1670                    width = max(0, lineRightOffset - lineLeftOffset) + totalOverhangWidth;
    16501671                    if (lBreak.m_obj == o) {
    16511672                        ASSERT(!lBreak.m_pos);
     
    17451766            } else
    17461767                tmpW += replacedLogicalWidth;
     1768            if (o->isRubyRun()) {
     1769                RenderRubyRun* rubyRun = toRenderRubyRun(o);
     1770                int startOverhang;
     1771                int endOverhang;
     1772                rubyRun->getOverhang(firstLine, last, next, startOverhang, endOverhang);
     1773                startOverhang = min<int>(startOverhang, w);
     1774                totalOverhangWidth += startOverhang;
     1775                width += startOverhang;
     1776                endOverhang = max(min<int>(endOverhang, width - (w + tmpW)), 0);
     1777                totalOverhangWidth += endOverhang;
     1778                width += endOverhang;
     1779            }
    17471780        } else if (o->isText()) {
    17481781            if (!pos)
     
    18691902
    18701903                    if (!w && autoWrap && tmpW > width)
    1871                         fitBelowFloats(tmpW, firstLine, width);
     1904                        fitBelowFloats(tmpW, totalOverhangWidth, firstLine, width);
    18721905
    18731906                    if (autoWrap || breakWords) {
     
    20132046            ASSERT_NOT_REACHED();
    20142047
    2015         RenderObject* next = bidiNext(this, o);
    20162048        bool checkForBreak = autoWrap;
    20172049        if (w && w + tmpW > width && lBreak.m_obj && currWS == NOWRAP)
     
    20352067                    bool willFitOnLine = w + tmpW <= width;
    20362068                    if (!willFitOnLine && !w) {
    2037                         fitBelowFloats(tmpW, firstLine, width);
     2069                        fitBelowFloats(tmpW, totalOverhangWidth, firstLine, width);
    20382070                        willFitOnLine = tmpW <= width;
    20392071                    }
     
    20582090                goto end;
    20592091
    2060             fitBelowFloats(tmpW, firstLine, width);
     2092            fitBelowFloats(tmpW, totalOverhangWidth, firstLine, width);
    20612093
    20622094            // |width| may have been adjusted because we got shoved down past a float (thus
  • trunk/Source/WebCore/rendering/RenderRubyRun.cpp

    r81807 r82903  
    269269}
    270270
     271void RenderRubyRun::getOverhang(bool firstLine, RenderObject* startRenderer, RenderObject* endRenderer, int& startOverhang, int& endOverhang) const
     272{
     273    ASSERT(!needsLayout());
     274
     275    startOverhang = 0;
     276    endOverhang = 0;
     277
     278    RenderRubyBase* rubyBase = this->rubyBase();
     279    RenderRubyText* rubyText = this->rubyText();
     280
     281    if (!rubyBase || !rubyText)
     282        return;
     283
     284    if (!rubyBase->firstRootBox())
     285        return;
     286
     287    int logicalWidth = this->logicalWidth();
     288
     289    // No more than half a ruby is allowed to overhang.
     290    int logicalLeftOverhang = rubyText->style(firstLine)->fontSize() / 2;
     291    int logicalRightOverhang = logicalLeftOverhang;
     292
     293    for (RootInlineBox* rootInlineBox = rubyBase->firstRootBox(); rootInlineBox; rootInlineBox = rootInlineBox->nextRootBox()) {
     294        logicalLeftOverhang = min<int>(logicalLeftOverhang, rootInlineBox->logicalLeft());
     295        logicalRightOverhang = min<int>(logicalRightOverhang, logicalWidth - rootInlineBox->logicalRight());
     296    }
     297
     298    startOverhang = style()->isLeftToRightDirection() ? logicalLeftOverhang : logicalRightOverhang;
     299    endOverhang = style()->isLeftToRightDirection() ? logicalRightOverhang : logicalLeftOverhang;
     300
     301    if (!startRenderer || !startRenderer->isText() || startRenderer->style(firstLine)->fontSize() > rubyBase->style(firstLine)->fontSize())
     302        startOverhang = 0;
     303
     304    if (!endRenderer || !endRenderer->isText() || endRenderer->style(firstLine)->fontSize() > rubyBase->style(firstLine)->fontSize())
     305        endOverhang = 0;
     306}
     307
    271308} // namespace WebCore
  • trunk/Source/WebCore/rendering/RenderRubyRun.h

    r77984 r82903  
    6464    virtual void updateFirstLetter();
    6565
     66    void getOverhang(bool firstLine, RenderObject* startRenderer, RenderObject* endRenderer, int& startOverhang, int& endOverhang) const;
     67
    6668    static RenderRubyRun* staticCreateRubyRun(const RenderObject* parentRuby);
    6769
     
    7678};
    7779
     80inline RenderRubyRun* toRenderRubyRun(RenderObject* object)
     81{
     82    ASSERT(!object || object->isRubyRun());
     83    return static_cast<RenderRubyRun*>(object);
     84}
     85
     86inline const RenderRubyRun* toRenderRubyRun(const RenderObject* object)
     87{
     88    ASSERT(!object || object->isBox());
     89    return static_cast<const RenderRubyRun*>(object);
     90}
     91
     92void toRenderRubyRun(const RenderRubyRun*);
     93
    7894} // namespace WebCore
    7995
Note: See TracChangeset for help on using the changeset viewer.