rabbit-slide-kou-postgresql-conference-2015 2015.11.27.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.rabbit +1 -0
- data/README.rd +46 -0
- data/Rakefile +17 -0
- data/config.yaml +24 -0
- data/images/inverted-index.svg +885 -0
- data/images/read-while-write-gin.svg +364 -0
- data/images/read-while-write-groonga.svg +325 -0
- data/images/read-while-write-pgroonga.svg +325 -0
- data/images/reference-lock-free-idea.svg +547 -0
- data/images/search-with-inverted-index.svg +1021 -0
- data/pdf/postgresql-conference-2015-pgroonga-implementation.pdf +0 -0
- data/pgroonga-implementation.rab +661 -0
- data/theme.rb +5 -0
- metadata +88 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: e83b60a19293c25386cc384270a4af081a126520
|
4
|
+
data.tar.gz: 6761159955392218b72587305c246876c73b80ad
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: d0add079e24c32a3e0721a875a46380a104cc172c78625a4de9a23a2913779148541d1a4500225cb6dbf68532b4b3eb158a069de5a0e5a5d0b7e73cbb380da70
|
7
|
+
data.tar.gz: 3310f47b0511264d9bfd5e4f6b536245dfd63c7c431aba95b19311b03e695da51e298462c3fdfbeff1e00cd859fb1ecf6652addf365f197306767831a974b110
|
data/.rabbit
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
pgroonga-implementation.rab
|
data/README.rd
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
= PGroongaの実装
|
2
|
+
|
3
|
+
PGroongaはPostgreSQLに日本語全文検索機能を追加する拡張機能で、インデックスアクセスメソッドとして実装されています。インデックスアクセスメソッドの拡張機能は少なく、どのように実装すればよいか知らない人が多いでしょう。
|
4
|
+
|
5
|
+
PGroonga の実装を紹介することでインデックスアクセスメソッドをどのように実装すればよいかを説明します。
|
6
|
+
|
7
|
+
== ライセンス
|
8
|
+
|
9
|
+
=== スライド
|
10
|
+
|
11
|
+
CC BY-SA 4.0
|
12
|
+
|
13
|
+
原著作者名は以下の通りです。
|
14
|
+
|
15
|
+
* 須藤功平(またはKouhei Sutou)
|
16
|
+
|
17
|
+
=== 画像
|
18
|
+
|
19
|
+
==== PGroongaのロゴ
|
20
|
+
|
21
|
+
CC BY 3.0
|
22
|
+
|
23
|
+
原著作者名は以下の通りです。
|
24
|
+
|
25
|
+
* Groongaプロジェクト
|
26
|
+
|
27
|
+
== 作者向け
|
28
|
+
|
29
|
+
=== 表示
|
30
|
+
|
31
|
+
rake
|
32
|
+
|
33
|
+
=== 公開
|
34
|
+
|
35
|
+
rake publish
|
36
|
+
|
37
|
+
== 閲覧者向け
|
38
|
+
|
39
|
+
=== インストール
|
40
|
+
|
41
|
+
gem install rabbit-slide-rabbit-postgresql-conference-2015
|
42
|
+
|
43
|
+
=== 表示
|
44
|
+
|
45
|
+
rabbit rabbit-slide-rabbit-postgresql-conference-2015.gem
|
46
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
require "rabbit/task/slide"
|
2
|
+
|
3
|
+
# Edit ./config.yaml to customize meta data
|
4
|
+
|
5
|
+
spec = nil
|
6
|
+
Rabbit::Task::Slide.new do |task|
|
7
|
+
spec = task.spec
|
8
|
+
spec.files += Dir.glob("images/**/*.*")
|
9
|
+
# spec.files -= Dir.glob("private/**/*.*")
|
10
|
+
spec.add_runtime_dependency("rabbit-theme-groonga")
|
11
|
+
end
|
12
|
+
|
13
|
+
desc "Tag #{spec.version}"
|
14
|
+
task :tag do
|
15
|
+
sh("git", "tag", "-a", spec.version.to_s, "-m", "Publish #{spec.version}")
|
16
|
+
sh("git", "push", "--tags")
|
17
|
+
end
|
data/config.yaml
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
---
|
2
|
+
id: postgresql-conference-2015
|
3
|
+
base_name: pgroonga-implementation
|
4
|
+
tags:
|
5
|
+
- rabbit
|
6
|
+
- pgroonga
|
7
|
+
- postgresql
|
8
|
+
- groonga
|
9
|
+
presentation_date: 2015-11-27
|
10
|
+
version: 2015.11.27.0
|
11
|
+
licenses:
|
12
|
+
- CC BY-SA 4.0
|
13
|
+
slideshare_id: postgresql-conference-2015
|
14
|
+
speaker_deck_id:
|
15
|
+
ustream_id:
|
16
|
+
vimeo_id:
|
17
|
+
youtube_id:
|
18
|
+
author:
|
19
|
+
markup_language: :rd
|
20
|
+
name: Kouhei Sutou
|
21
|
+
email: kou@clear-code.com
|
22
|
+
rubygems_user: kou
|
23
|
+
slideshare_user: kou
|
24
|
+
speaker_deck_user: kou
|
@@ -0,0 +1,885 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
3
|
+
|
4
|
+
<svg
|
5
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
6
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
7
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
8
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
10
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
12
|
+
width="226.69334mm"
|
13
|
+
height="133.75217mm"
|
14
|
+
viewBox="0 0 803.24416 473.925"
|
15
|
+
id="svg2"
|
16
|
+
version="1.1"
|
17
|
+
inkscape:version="0.91 r13725"
|
18
|
+
sodipodi:docname="normal-inverted-index.svg">
|
19
|
+
<defs
|
20
|
+
id="defs4">
|
21
|
+
<marker
|
22
|
+
inkscape:isstock="true"
|
23
|
+
style="overflow:visible"
|
24
|
+
id="marker5129"
|
25
|
+
refX="0"
|
26
|
+
refY="0"
|
27
|
+
orient="auto"
|
28
|
+
inkscape:stockid="Arrow1Lend">
|
29
|
+
<path
|
30
|
+
inkscape:connector-curvature="0"
|
31
|
+
transform="matrix(-0.8,0,0,-0.8,-10,0)"
|
32
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
33
|
+
d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
|
34
|
+
id="path5131" />
|
35
|
+
</marker>
|
36
|
+
<marker
|
37
|
+
inkscape:isstock="true"
|
38
|
+
style="overflow:visible"
|
39
|
+
id="marker4866"
|
40
|
+
refX="0"
|
41
|
+
refY="0"
|
42
|
+
orient="auto"
|
43
|
+
inkscape:stockid="Arrow1Lend">
|
44
|
+
<path
|
45
|
+
transform="matrix(-0.8,0,0,-0.8,-10,0)"
|
46
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
47
|
+
d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
|
48
|
+
id="path4868"
|
49
|
+
inkscape:connector-curvature="0" />
|
50
|
+
</marker>
|
51
|
+
<marker
|
52
|
+
inkscape:stockid="Arrow1Lend"
|
53
|
+
orient="auto"
|
54
|
+
refY="0"
|
55
|
+
refX="0"
|
56
|
+
id="Arrow1Lend"
|
57
|
+
style="overflow:visible"
|
58
|
+
inkscape:isstock="true"
|
59
|
+
inkscape:collect="always">
|
60
|
+
<path
|
61
|
+
id="path4573"
|
62
|
+
d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
|
63
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
64
|
+
transform="matrix(-0.8,0,0,-0.8,-10,0)"
|
65
|
+
inkscape:connector-curvature="0" />
|
66
|
+
</marker>
|
67
|
+
</defs>
|
68
|
+
<sodipodi:namedview
|
69
|
+
id="base"
|
70
|
+
pagecolor="#ffffff"
|
71
|
+
bordercolor="#666666"
|
72
|
+
borderopacity="1.0"
|
73
|
+
inkscape:pageopacity="0.0"
|
74
|
+
inkscape:pageshadow="2"
|
75
|
+
inkscape:zoom="0.7"
|
76
|
+
inkscape:cx="1032.636"
|
77
|
+
inkscape:cy="258.4901"
|
78
|
+
inkscape:document-units="px"
|
79
|
+
inkscape:current-layer="layer1"
|
80
|
+
showgrid="false"
|
81
|
+
inkscape:window-width="1920"
|
82
|
+
inkscape:window-height="1016"
|
83
|
+
inkscape:window-x="1920"
|
84
|
+
inkscape:window-y="27"
|
85
|
+
inkscape:window-maximized="1"
|
86
|
+
fit-margin-top="5"
|
87
|
+
fit-margin-left="5"
|
88
|
+
fit-margin-right="5"
|
89
|
+
fit-margin-bottom="5" />
|
90
|
+
<metadata
|
91
|
+
id="metadata7">
|
92
|
+
<rdf:RDF>
|
93
|
+
<cc:Work
|
94
|
+
rdf:about="">
|
95
|
+
<dc:format>image/svg+xml</dc:format>
|
96
|
+
<dc:type
|
97
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
98
|
+
<dc:title></dc:title>
|
99
|
+
</cc:Work>
|
100
|
+
</rdf:RDF>
|
101
|
+
</metadata>
|
102
|
+
<g
|
103
|
+
inkscape:label="レイヤー 1"
|
104
|
+
inkscape:groupmode="layer"
|
105
|
+
id="layer1"
|
106
|
+
transform="translate(121.69387,-2.7022001)">
|
107
|
+
<rect
|
108
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000100;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
109
|
+
id="rect5329"
|
110
|
+
width="218.02829"
|
111
|
+
height="129.15594"
|
112
|
+
x="-102.97733"
|
113
|
+
y="60.259766"
|
114
|
+
rx="5"
|
115
|
+
ry="5" />
|
116
|
+
<text
|
117
|
+
xml:space="preserve"
|
118
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
119
|
+
x="-53.115719"
|
120
|
+
y="141.16978"
|
121
|
+
id="text4144"
|
122
|
+
sodipodi:linespacing="125%"><tspan
|
123
|
+
sodipodi:role="line"
|
124
|
+
id="tspan4146"
|
125
|
+
x="-53.115719"
|
126
|
+
y="141.16978">全文検索</tspan></text>
|
127
|
+
<text
|
128
|
+
sodipodi:linespacing="125%"
|
129
|
+
id="text4439"
|
130
|
+
y="179.74121"
|
131
|
+
x="-53.115719"
|
132
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
133
|
+
xml:space="preserve"><tspan
|
134
|
+
y="179.74121"
|
135
|
+
x="-53.115719"
|
136
|
+
id="tspan4441"
|
137
|
+
sodipodi:role="line">全文を検索</tspan></text>
|
138
|
+
<text
|
139
|
+
xml:space="preserve"
|
140
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#4e9a06;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
141
|
+
x="-98.811127"
|
142
|
+
y="138.66978"
|
143
|
+
id="text4443"
|
144
|
+
sodipodi:linespacing="125%"><tspan
|
145
|
+
sodipodi:role="line"
|
146
|
+
id="tspan4445"
|
147
|
+
x="-98.811127"
|
148
|
+
y="138.66978">10</tspan></text>
|
149
|
+
<text
|
150
|
+
sodipodi:linespacing="125%"
|
151
|
+
id="text4447"
|
152
|
+
y="177.27246"
|
153
|
+
x="-96.668266"
|
154
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#ce5c00;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
155
|
+
xml:space="preserve"><tspan
|
156
|
+
y="177.27246"
|
157
|
+
x="-96.668266"
|
158
|
+
id="tspan4449"
|
159
|
+
sodipodi:role="line">20</tspan></text>
|
160
|
+
<text
|
161
|
+
xml:space="preserve"
|
162
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
163
|
+
x="-101.07652"
|
164
|
+
y="47.324986"
|
165
|
+
id="text4451"
|
166
|
+
sodipodi:linespacing="125%"><tspan
|
167
|
+
sodipodi:role="line"
|
168
|
+
id="tspan4453"
|
169
|
+
x="-101.07652"
|
170
|
+
y="47.324986">文書</tspan></text>
|
171
|
+
<text
|
172
|
+
xml:space="preserve"
|
173
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
174
|
+
x="198.51608"
|
175
|
+
y="48.363388"
|
176
|
+
id="text4455"
|
177
|
+
sodipodi:linespacing="125%"><tspan
|
178
|
+
sodipodi:role="line"
|
179
|
+
x="198.51608"
|
180
|
+
y="48.363388"
|
181
|
+
id="tspan5327">完全転置索引</tspan></text>
|
182
|
+
<rect
|
183
|
+
ry="5"
|
184
|
+
rx="5"
|
185
|
+
y="60.259766"
|
186
|
+
x="197.73695"
|
187
|
+
height="165.31584"
|
188
|
+
width="465.0968"
|
189
|
+
id="rect6036"
|
190
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000100;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
191
|
+
<text
|
192
|
+
xml:space="preserve"
|
193
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
194
|
+
x="202.33287"
|
195
|
+
y="137.22856"
|
196
|
+
id="text4459"
|
197
|
+
sodipodi:linespacing="125%"><tspan
|
198
|
+
sodipodi:role="line"
|
199
|
+
id="tspan4461"
|
200
|
+
x="202.33287"
|
201
|
+
y="137.22856">全文</tspan></text>
|
202
|
+
<text
|
203
|
+
xml:space="preserve"
|
204
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
205
|
+
x="202.33287"
|
206
|
+
y="178.68535"
|
207
|
+
id="text4463"
|
208
|
+
sodipodi:linespacing="125%"><tspan
|
209
|
+
sodipodi:role="line"
|
210
|
+
id="tspan4465"
|
211
|
+
x="202.33287"
|
212
|
+
y="178.68535">検索</tspan></text>
|
213
|
+
<text
|
214
|
+
xml:space="preserve"
|
215
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
216
|
+
x="200.23912"
|
217
|
+
y="218.12692"
|
218
|
+
id="text4467"
|
219
|
+
sodipodi:linespacing="125%"><tspan
|
220
|
+
sodipodi:role="line"
|
221
|
+
id="tspan4469"
|
222
|
+
x="200.23912"
|
223
|
+
y="218.12692">を</tspan></text>
|
224
|
+
<text
|
225
|
+
xml:space="preserve"
|
226
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
227
|
+
x="-97.407928"
|
228
|
+
y="93.014954"
|
229
|
+
id="text4471"
|
230
|
+
sodipodi:linespacing="125%"><tspan
|
231
|
+
sodipodi:role="line"
|
232
|
+
id="tspan4473"
|
233
|
+
x="-97.407928"
|
234
|
+
y="93.014954">ID</tspan></text>
|
235
|
+
<text
|
236
|
+
xml:space="preserve"
|
237
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
238
|
+
x="-12.09209"
|
239
|
+
y="92.241203"
|
240
|
+
id="text4475"
|
241
|
+
sodipodi:linespacing="125%"><tspan
|
242
|
+
sodipodi:role="line"
|
243
|
+
id="tspan4477"
|
244
|
+
x="-12.09209"
|
245
|
+
y="92.241203">内容</tspan></text>
|
246
|
+
<text
|
247
|
+
xml:space="preserve"
|
248
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
249
|
+
x="201.6223"
|
250
|
+
y="94.758621"
|
251
|
+
id="text4479"
|
252
|
+
sodipodi:linespacing="125%"><tspan
|
253
|
+
sodipodi:role="line"
|
254
|
+
id="tspan4481"
|
255
|
+
x="201.6223"
|
256
|
+
y="94.758621">キーワード</tspan></text>
|
257
|
+
<text
|
258
|
+
xml:space="preserve"
|
259
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.00000381px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
260
|
+
x="516.59399"
|
261
|
+
y="93.793068"
|
262
|
+
id="text4483"
|
263
|
+
sodipodi:linespacing="125%"><tspan
|
264
|
+
sodipodi:role="line"
|
265
|
+
x="516.59399"
|
266
|
+
y="93.793068"
|
267
|
+
id="tspan5317">ポスティングリスト</tspan></text>
|
268
|
+
<text
|
269
|
+
xml:space="preserve"
|
270
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
271
|
+
x="371.26498"
|
272
|
+
y="134.75981"
|
273
|
+
id="text4487"
|
274
|
+
sodipodi:linespacing="125%"><tspan
|
275
|
+
sodipodi:role="line"
|
276
|
+
id="tspan4489"
|
277
|
+
x="371.26498"
|
278
|
+
y="134.75981"><tspan
|
279
|
+
style="fill:#4e9a06"
|
280
|
+
id="tspan6059">10</tspan>:<tspan
|
281
|
+
style="fill:#204a87"
|
282
|
+
id="tspan6069">1</tspan>,<tspan
|
283
|
+
style="fill:#ce5c00"
|
284
|
+
id="tspan6063">20</tspan>:<tspan
|
285
|
+
style="fill:#5c3566"
|
286
|
+
id="tspan6071">1</tspan></tspan></text>
|
287
|
+
<text
|
288
|
+
xml:space="preserve"
|
289
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
290
|
+
x="371.26498"
|
291
|
+
y="176.24785"
|
292
|
+
id="text4491"
|
293
|
+
sodipodi:linespacing="125%"><tspan
|
294
|
+
sodipodi:role="line"
|
295
|
+
id="tspan4493"
|
296
|
+
x="371.26498"
|
297
|
+
y="176.24785"><tspan
|
298
|
+
style="fill:#4e9a06"
|
299
|
+
id="tspan6061">10</tspan>:<tspan
|
300
|
+
style="fill:#204a87"
|
301
|
+
id="tspan6073">2</tspan>,<tspan
|
302
|
+
style="fill:#ce5c00"
|
303
|
+
id="tspan6065">20</tspan>:<tspan
|
304
|
+
style="fill:#5c3566"
|
305
|
+
id="tspan6075">3</tspan></tspan></text>
|
306
|
+
<text
|
307
|
+
xml:space="preserve"
|
308
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
309
|
+
x="373.42123"
|
310
|
+
y="216.22067"
|
311
|
+
id="text4495"
|
312
|
+
sodipodi:linespacing="125%"><tspan
|
313
|
+
sodipodi:role="line"
|
314
|
+
id="tspan4497"
|
315
|
+
x="373.42123"
|
316
|
+
y="216.22067"><tspan
|
317
|
+
style="fill:#ce5c00"
|
318
|
+
id="tspan6067">20</tspan>:<tspan
|
319
|
+
style="fill:#5c3566"
|
320
|
+
id="tspan6077">2</tspan></tspan></text>
|
321
|
+
<path
|
322
|
+
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Lend)"
|
323
|
+
d="m -24.60367,198.51101 0,63.43656"
|
324
|
+
id="path4556"
|
325
|
+
inkscape:connector-curvature="0"
|
326
|
+
sodipodi:nodetypes="cc" />
|
327
|
+
<g
|
328
|
+
id="g5507"
|
329
|
+
transform="translate(25.000002,21.428571)">
|
330
|
+
<text
|
331
|
+
sodipodi:linespacing="125%"
|
332
|
+
id="text4558"
|
333
|
+
y="277.1691"
|
334
|
+
x="-105.25858"
|
335
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
336
|
+
xml:space="preserve"><tspan
|
337
|
+
id="tspan4562"
|
338
|
+
y="277.1691"
|
339
|
+
x="-105.25858"
|
340
|
+
sodipodi:role="line">全文|検索</tspan></text>
|
341
|
+
<text
|
342
|
+
sodipodi:linespacing="125%"
|
343
|
+
id="text4846"
|
344
|
+
y="312.24121"
|
345
|
+
x="-82.126602"
|
346
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#204a87;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
347
|
+
xml:space="preserve"><tspan
|
348
|
+
y="312.24121"
|
349
|
+
x="-82.126602"
|
350
|
+
id="tspan4848"
|
351
|
+
sodipodi:role="line">1</tspan></text>
|
352
|
+
<text
|
353
|
+
sodipodi:linespacing="125%"
|
354
|
+
id="text4850"
|
355
|
+
y="312.27246"
|
356
|
+
x="-0.54935455"
|
357
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#204a87;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
358
|
+
xml:space="preserve"><tspan
|
359
|
+
y="312.27246"
|
360
|
+
x="-0.54935455"
|
361
|
+
id="tspan4852"
|
362
|
+
sodipodi:role="line">2</tspan></text>
|
363
|
+
</g>
|
364
|
+
<text
|
365
|
+
xml:space="preserve"
|
366
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
367
|
+
x="207.08127"
|
368
|
+
y="275.5549"
|
369
|
+
id="text4854"
|
370
|
+
sodipodi:linespacing="125%"><tspan
|
371
|
+
sodipodi:role="line"
|
372
|
+
id="tspan4856"
|
373
|
+
x="207.08127"
|
374
|
+
y="275.5549"></tspan></text>
|
375
|
+
<g
|
376
|
+
id="g5515"
|
377
|
+
transform="translate(25.000002,-11.428574)">
|
378
|
+
<text
|
379
|
+
xml:space="preserve"
|
380
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
381
|
+
x="-105.25858"
|
382
|
+
y="389.01248"
|
383
|
+
id="text4948"
|
384
|
+
sodipodi:linespacing="125%"><tspan
|
385
|
+
sodipodi:role="line"
|
386
|
+
x="-105.25858"
|
387
|
+
y="389.01248"
|
388
|
+
id="tspan4950">全文|を|検索</tspan></text>
|
389
|
+
<text
|
390
|
+
xml:space="preserve"
|
391
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#a40000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
392
|
+
x="-84.983742"
|
393
|
+
y="426.52695"
|
394
|
+
id="text4952"
|
395
|
+
sodipodi:linespacing="125%"><tspan
|
396
|
+
sodipodi:role="line"
|
397
|
+
id="tspan4954"
|
398
|
+
x="-84.983742"
|
399
|
+
y="426.52695">1</tspan></text>
|
400
|
+
<text
|
401
|
+
xml:space="preserve"
|
402
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#a40000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
403
|
+
x="-17.303522"
|
404
|
+
y="426.5582"
|
405
|
+
id="text4956"
|
406
|
+
sodipodi:linespacing="125%"><tspan
|
407
|
+
sodipodi:role="line"
|
408
|
+
id="tspan4958"
|
409
|
+
x="-17.303522"
|
410
|
+
y="426.5582">2</tspan></text>
|
411
|
+
<text
|
412
|
+
sodipodi:linespacing="125%"
|
413
|
+
id="text4960"
|
414
|
+
y="426.52695"
|
415
|
+
x="46.336098"
|
416
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#a40000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
417
|
+
xml:space="preserve"><tspan
|
418
|
+
y="426.52695"
|
419
|
+
x="46.336098"
|
420
|
+
id="tspan4962"
|
421
|
+
sodipodi:role="line">3</tspan></text>
|
422
|
+
</g>
|
423
|
+
<path
|
424
|
+
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#marker4866)"
|
425
|
+
d="m 117.58529,282.0937 58.63045,-99.10406"
|
426
|
+
id="path4964"
|
427
|
+
inkscape:connector-curvature="0"
|
428
|
+
sodipodi:nodetypes="cc" />
|
429
|
+
<text
|
430
|
+
xml:space="preserve"
|
431
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
432
|
+
x="-6.8446212"
|
433
|
+
y="240.44116"
|
434
|
+
id="text5088"
|
435
|
+
sodipodi:linespacing="125%"><tspan
|
436
|
+
sodipodi:role="line"
|
437
|
+
id="tspan5090"
|
438
|
+
x="-6.8446212"
|
439
|
+
y="240.44116">分解</tspan></text>
|
440
|
+
<path
|
441
|
+
inkscape:connector-curvature="0"
|
442
|
+
id="path5127"
|
443
|
+
d="m 121.81514,350.43745 54.54824,0"
|
444
|
+
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#marker5129)"
|
445
|
+
sodipodi:nodetypes="cc" />
|
446
|
+
<text
|
447
|
+
sodipodi:linespacing="125%"
|
448
|
+
id="text5323"
|
449
|
+
y="48.363388"
|
450
|
+
x="392.07343"
|
451
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
452
|
+
xml:space="preserve"><tspan
|
453
|
+
y="48.363388"
|
454
|
+
x="392.07343"
|
455
|
+
id="tspan5325"
|
456
|
+
sodipodi:role="line">(文書ID+位置)</tspan></text>
|
457
|
+
<path
|
458
|
+
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
459
|
+
d="m -59.179276,61.269917 0,128.268343"
|
460
|
+
id="path5331"
|
461
|
+
inkscape:connector-curvature="0"
|
462
|
+
sodipodi:nodetypes="cc" />
|
463
|
+
<path
|
464
|
+
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
465
|
+
d="m -102.55891,101.86974 217.49999,0"
|
466
|
+
id="path5335"
|
467
|
+
inkscape:connector-curvature="0"
|
468
|
+
sodipodi:nodetypes="cc" />
|
469
|
+
<path
|
470
|
+
sodipodi:nodetypes="cc"
|
471
|
+
inkscape:connector-curvature="0"
|
472
|
+
id="path6038"
|
473
|
+
d="m 197.4564,103.68955 464.60695,0"
|
474
|
+
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
475
|
+
<path
|
476
|
+
sodipodi:nodetypes="cc"
|
477
|
+
inkscape:connector-curvature="0"
|
478
|
+
id="path6042"
|
479
|
+
d="m 367.96358,61.269917 0,163.678053"
|
480
|
+
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
481
|
+
<rect
|
482
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000100;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
483
|
+
id="rect6083"
|
484
|
+
width="465.0968"
|
485
|
+
height="165.31584"
|
486
|
+
x="197.73695"
|
487
|
+
y="60.259766"
|
488
|
+
rx="5"
|
489
|
+
ry="5" />
|
490
|
+
<text
|
491
|
+
sodipodi:linespacing="125%"
|
492
|
+
id="text6085"
|
493
|
+
y="137.22856"
|
494
|
+
x="202.33287"
|
495
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
496
|
+
xml:space="preserve"><tspan
|
497
|
+
y="137.22856"
|
498
|
+
x="202.33287"
|
499
|
+
id="tspan6087"
|
500
|
+
sodipodi:role="line">全文</tspan></text>
|
501
|
+
<text
|
502
|
+
sodipodi:linespacing="125%"
|
503
|
+
id="text6089"
|
504
|
+
y="178.68535"
|
505
|
+
x="202.33287"
|
506
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
507
|
+
xml:space="preserve"><tspan
|
508
|
+
y="178.68535"
|
509
|
+
x="202.33287"
|
510
|
+
id="tspan6091"
|
511
|
+
sodipodi:role="line">検索</tspan></text>
|
512
|
+
<text
|
513
|
+
sodipodi:linespacing="125%"
|
514
|
+
id="text6093"
|
515
|
+
y="218.12692"
|
516
|
+
x="200.23912"
|
517
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
518
|
+
xml:space="preserve"><tspan
|
519
|
+
y="218.12692"
|
520
|
+
x="200.23912"
|
521
|
+
id="tspan6095"
|
522
|
+
sodipodi:role="line">を</tspan></text>
|
523
|
+
<text
|
524
|
+
sodipodi:linespacing="125%"
|
525
|
+
id="text6097"
|
526
|
+
y="94.758621"
|
527
|
+
x="201.6223"
|
528
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
529
|
+
xml:space="preserve"><tspan
|
530
|
+
y="94.758621"
|
531
|
+
x="201.6223"
|
532
|
+
id="tspan6099"
|
533
|
+
sodipodi:role="line">キーワード</tspan></text>
|
534
|
+
<text
|
535
|
+
sodipodi:linespacing="125%"
|
536
|
+
id="text6101"
|
537
|
+
y="93.793068"
|
538
|
+
x="516.59399"
|
539
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.00000381px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
540
|
+
xml:space="preserve"><tspan
|
541
|
+
id="tspan6103"
|
542
|
+
y="93.793068"
|
543
|
+
x="516.59399"
|
544
|
+
sodipodi:role="line">ポスティングリスト</tspan></text>
|
545
|
+
<text
|
546
|
+
sodipodi:linespacing="125%"
|
547
|
+
id="text6105"
|
548
|
+
y="134.75981"
|
549
|
+
x="371.26498"
|
550
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
551
|
+
xml:space="preserve"><tspan
|
552
|
+
y="134.75981"
|
553
|
+
x="371.26498"
|
554
|
+
id="tspan6107"
|
555
|
+
sodipodi:role="line"><tspan
|
556
|
+
id="tspan6109"
|
557
|
+
style="fill:#4e9a06">10</tspan>:<tspan
|
558
|
+
id="tspan6111"
|
559
|
+
style="fill:#204a87">1</tspan>,<tspan
|
560
|
+
id="tspan6113"
|
561
|
+
style="fill:#ce5c00">20</tspan>:<tspan
|
562
|
+
id="tspan6115"
|
563
|
+
style="fill:#a40000">1</tspan></tspan></text>
|
564
|
+
<text
|
565
|
+
sodipodi:linespacing="125%"
|
566
|
+
id="text6117"
|
567
|
+
y="176.24785"
|
568
|
+
x="371.26498"
|
569
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
570
|
+
xml:space="preserve"><tspan
|
571
|
+
y="176.24785"
|
572
|
+
x="371.26498"
|
573
|
+
id="tspan6119"
|
574
|
+
sodipodi:role="line"><tspan
|
575
|
+
id="tspan6121"
|
576
|
+
style="fill:#4e9a06">10</tspan>:<tspan
|
577
|
+
id="tspan6123"
|
578
|
+
style="fill:#204a87">2</tspan>,<tspan
|
579
|
+
id="tspan6125"
|
580
|
+
style="fill:#ce5c00">20</tspan>:<tspan
|
581
|
+
id="tspan6127"
|
582
|
+
style="fill:#a40000">3</tspan></tspan></text>
|
583
|
+
<text
|
584
|
+
sodipodi:linespacing="125%"
|
585
|
+
id="text6129"
|
586
|
+
y="216.22067"
|
587
|
+
x="373.42123"
|
588
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
589
|
+
xml:space="preserve"><tspan
|
590
|
+
y="216.22067"
|
591
|
+
x="373.42123"
|
592
|
+
id="tspan6131"
|
593
|
+
sodipodi:role="line"><tspan
|
594
|
+
id="tspan6133"
|
595
|
+
style="fill:#ce5c00">20</tspan>:<tspan
|
596
|
+
id="tspan6135"
|
597
|
+
style="fill:#a40000">2</tspan></tspan></text>
|
598
|
+
<path
|
599
|
+
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
600
|
+
d="m 197.4564,103.68955 464.60695,0"
|
601
|
+
id="path6141"
|
602
|
+
inkscape:connector-curvature="0"
|
603
|
+
sodipodi:nodetypes="cc" />
|
604
|
+
<path
|
605
|
+
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
606
|
+
d="m 367.96358,61.269917 0,163.678053"
|
607
|
+
id="path6143"
|
608
|
+
inkscape:connector-curvature="0"
|
609
|
+
sodipodi:nodetypes="cc" />
|
610
|
+
<rect
|
611
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000100;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
612
|
+
id="rect6178"
|
613
|
+
width="465.0968"
|
614
|
+
height="165.31584"
|
615
|
+
x="197.73695"
|
616
|
+
y="292.59485"
|
617
|
+
rx="5"
|
618
|
+
ry="5" />
|
619
|
+
<text
|
620
|
+
sodipodi:linespacing="125%"
|
621
|
+
id="text6180"
|
622
|
+
y="369.56366"
|
623
|
+
x="202.33287"
|
624
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
625
|
+
xml:space="preserve"><tspan
|
626
|
+
y="369.56366"
|
627
|
+
x="202.33287"
|
628
|
+
id="tspan6182"
|
629
|
+
sodipodi:role="line">全文</tspan></text>
|
630
|
+
<text
|
631
|
+
sodipodi:linespacing="125%"
|
632
|
+
id="text6184"
|
633
|
+
y="411.02045"
|
634
|
+
x="202.33287"
|
635
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
636
|
+
xml:space="preserve"><tspan
|
637
|
+
y="411.02045"
|
638
|
+
x="202.33287"
|
639
|
+
id="tspan6186"
|
640
|
+
sodipodi:role="line">検索</tspan></text>
|
641
|
+
<text
|
642
|
+
sodipodi:linespacing="125%"
|
643
|
+
id="text6188"
|
644
|
+
y="450.46201"
|
645
|
+
x="200.23912"
|
646
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
647
|
+
xml:space="preserve"><tspan
|
648
|
+
y="450.46201"
|
649
|
+
x="200.23912"
|
650
|
+
id="tspan6190"
|
651
|
+
sodipodi:role="line">を</tspan></text>
|
652
|
+
<text
|
653
|
+
sodipodi:linespacing="125%"
|
654
|
+
id="text6192"
|
655
|
+
y="327.09372"
|
656
|
+
x="201.6223"
|
657
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
658
|
+
xml:space="preserve"><tspan
|
659
|
+
y="327.09372"
|
660
|
+
x="201.6223"
|
661
|
+
id="tspan6194"
|
662
|
+
sodipodi:role="line">キーワード</tspan></text>
|
663
|
+
<text
|
664
|
+
sodipodi:linespacing="125%"
|
665
|
+
id="text6196"
|
666
|
+
y="326.12814"
|
667
|
+
x="516.59399"
|
668
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.00000381px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
669
|
+
xml:space="preserve"><tspan
|
670
|
+
id="tspan6198"
|
671
|
+
y="326.12814"
|
672
|
+
x="516.59399"
|
673
|
+
sodipodi:role="line">ポスティングリスト</tspan></text>
|
674
|
+
<text
|
675
|
+
sodipodi:linespacing="125%"
|
676
|
+
id="text6200"
|
677
|
+
y="367.09491"
|
678
|
+
x="371.26498"
|
679
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
680
|
+
xml:space="preserve"><tspan
|
681
|
+
y="367.09491"
|
682
|
+
x="371.26498"
|
683
|
+
id="tspan6202"
|
684
|
+
sodipodi:role="line"><tspan
|
685
|
+
id="tspan6204"
|
686
|
+
style="fill:#4e9a06">10</tspan>:<tspan
|
687
|
+
id="tspan6206"
|
688
|
+
style="fill:#204a87">1</tspan>,<tspan
|
689
|
+
id="tspan6208"
|
690
|
+
style="fill:#ce5c00">20</tspan>:<tspan
|
691
|
+
id="tspan6210"
|
692
|
+
style="fill:#5c3566">1</tspan></tspan></text>
|
693
|
+
<text
|
694
|
+
sodipodi:linespacing="125%"
|
695
|
+
id="text6212"
|
696
|
+
y="408.58295"
|
697
|
+
x="371.26498"
|
698
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
699
|
+
xml:space="preserve"><tspan
|
700
|
+
y="408.58295"
|
701
|
+
x="371.26498"
|
702
|
+
id="tspan6214"
|
703
|
+
sodipodi:role="line"><tspan
|
704
|
+
id="tspan6216"
|
705
|
+
style="fill:#4e9a06">10</tspan>:<tspan
|
706
|
+
id="tspan6218"
|
707
|
+
style="fill:#204a87">2</tspan>,<tspan
|
708
|
+
id="tspan6220"
|
709
|
+
style="fill:#ce5c00">20</tspan>:<tspan
|
710
|
+
id="tspan6222"
|
711
|
+
style="fill:#5c3566">3</tspan></tspan></text>
|
712
|
+
<text
|
713
|
+
sodipodi:linespacing="125%"
|
714
|
+
id="text6224"
|
715
|
+
y="448.55576"
|
716
|
+
x="373.42123"
|
717
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
718
|
+
xml:space="preserve"><tspan
|
719
|
+
y="448.55576"
|
720
|
+
x="373.42123"
|
721
|
+
id="tspan6226"
|
722
|
+
sodipodi:role="line"><tspan
|
723
|
+
id="tspan6228"
|
724
|
+
style="fill:#ce5c00">20</tspan>:<tspan
|
725
|
+
id="tspan6230"
|
726
|
+
style="fill:#5c3566">2</tspan></tspan></text>
|
727
|
+
<text
|
728
|
+
xml:space="preserve"
|
729
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
730
|
+
x="392.07343"
|
731
|
+
y="280.69849"
|
732
|
+
id="text6232"
|
733
|
+
sodipodi:linespacing="125%"><tspan
|
734
|
+
sodipodi:role="line"
|
735
|
+
id="tspan6234"
|
736
|
+
x="392.07343"
|
737
|
+
y="280.69849">(文書IDのみ)</tspan></text>
|
738
|
+
<path
|
739
|
+
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
740
|
+
d="m 197.4564,336.02464 464.60695,0"
|
741
|
+
id="path6236"
|
742
|
+
inkscape:connector-curvature="0"
|
743
|
+
sodipodi:nodetypes="cc" />
|
744
|
+
<path
|
745
|
+
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
746
|
+
d="m 367.96358,293.605 0,163.67806"
|
747
|
+
id="path6238"
|
748
|
+
inkscape:connector-curvature="0"
|
749
|
+
sodipodi:nodetypes="cc" />
|
750
|
+
<text
|
751
|
+
xml:space="preserve"
|
752
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
753
|
+
x="198.51608"
|
754
|
+
y="280.69849"
|
755
|
+
id="text6240"
|
756
|
+
sodipodi:linespacing="125%"><tspan
|
757
|
+
sodipodi:role="line"
|
758
|
+
x="198.51608"
|
759
|
+
y="280.69849"
|
760
|
+
id="tspan6242">転置索引</tspan></text>
|
761
|
+
<rect
|
762
|
+
ry="5"
|
763
|
+
rx="5"
|
764
|
+
y="292.59485"
|
765
|
+
x="197.73695"
|
766
|
+
height="165.31584"
|
767
|
+
width="465.0968"
|
768
|
+
id="rect6244"
|
769
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000100;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
770
|
+
<text
|
771
|
+
xml:space="preserve"
|
772
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
773
|
+
x="202.33287"
|
774
|
+
y="369.56366"
|
775
|
+
id="text6246"
|
776
|
+
sodipodi:linespacing="125%"><tspan
|
777
|
+
sodipodi:role="line"
|
778
|
+
id="tspan6248"
|
779
|
+
x="202.33287"
|
780
|
+
y="369.56366">全文</tspan></text>
|
781
|
+
<text
|
782
|
+
xml:space="preserve"
|
783
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
784
|
+
x="202.33287"
|
785
|
+
y="411.02045"
|
786
|
+
id="text6250"
|
787
|
+
sodipodi:linespacing="125%"><tspan
|
788
|
+
sodipodi:role="line"
|
789
|
+
id="tspan6252"
|
790
|
+
x="202.33287"
|
791
|
+
y="411.02045">検索</tspan></text>
|
792
|
+
<text
|
793
|
+
xml:space="preserve"
|
794
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
795
|
+
x="200.23912"
|
796
|
+
y="450.46201"
|
797
|
+
id="text6254"
|
798
|
+
sodipodi:linespacing="125%"><tspan
|
799
|
+
sodipodi:role="line"
|
800
|
+
id="tspan6256"
|
801
|
+
x="200.23912"
|
802
|
+
y="450.46201">を</tspan></text>
|
803
|
+
<text
|
804
|
+
xml:space="preserve"
|
805
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
806
|
+
x="201.6223"
|
807
|
+
y="327.09372"
|
808
|
+
id="text6258"
|
809
|
+
sodipodi:linespacing="125%"><tspan
|
810
|
+
sodipodi:role="line"
|
811
|
+
id="tspan6260"
|
812
|
+
x="201.6223"
|
813
|
+
y="327.09372">キーワード</tspan></text>
|
814
|
+
<text
|
815
|
+
xml:space="preserve"
|
816
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.00000381px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
817
|
+
x="516.59399"
|
818
|
+
y="326.12814"
|
819
|
+
id="text6262"
|
820
|
+
sodipodi:linespacing="125%"><tspan
|
821
|
+
sodipodi:role="line"
|
822
|
+
x="516.59399"
|
823
|
+
y="326.12814"
|
824
|
+
id="tspan6264">ポスティングリスト</tspan></text>
|
825
|
+
<text
|
826
|
+
xml:space="preserve"
|
827
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
828
|
+
x="371.26498"
|
829
|
+
y="367.09491"
|
830
|
+
id="text6266"
|
831
|
+
sodipodi:linespacing="125%"><tspan
|
832
|
+
sodipodi:role="line"
|
833
|
+
id="tspan6268"
|
834
|
+
x="371.26498"
|
835
|
+
y="367.09491"><tspan
|
836
|
+
style="fill:#4e9a06"
|
837
|
+
id="tspan6270">10</tspan>,<tspan
|
838
|
+
style="fill:#ce5c00"
|
839
|
+
id="tspan6274">20</tspan><tspan
|
840
|
+
style="fill:#5c3566"
|
841
|
+
id="tspan6276" /></tspan></text>
|
842
|
+
<text
|
843
|
+
xml:space="preserve"
|
844
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
845
|
+
x="371.26498"
|
846
|
+
y="408.58295"
|
847
|
+
id="text6278"
|
848
|
+
sodipodi:linespacing="125%"><tspan
|
849
|
+
sodipodi:role="line"
|
850
|
+
id="tspan6280"
|
851
|
+
x="371.26498"
|
852
|
+
y="408.58295"><tspan
|
853
|
+
style="fill:#4e9a06"
|
854
|
+
id="tspan6282">10</tspan>,<tspan
|
855
|
+
style="fill:#ce5c00"
|
856
|
+
id="tspan6286">20</tspan></tspan></text>
|
857
|
+
<text
|
858
|
+
xml:space="preserve"
|
859
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
860
|
+
x="373.42123"
|
861
|
+
y="448.55576"
|
862
|
+
id="text6290"
|
863
|
+
sodipodi:linespacing="125%"><tspan
|
864
|
+
sodipodi:role="line"
|
865
|
+
id="tspan6292"
|
866
|
+
x="373.42123"
|
867
|
+
y="448.55576"><tspan
|
868
|
+
style="fill:#ce5c00"
|
869
|
+
id="tspan6294">20</tspan><tspan
|
870
|
+
style="fill:#5c3566"
|
871
|
+
id="tspan6296" /></tspan></text>
|
872
|
+
<path
|
873
|
+
sodipodi:nodetypes="cc"
|
874
|
+
inkscape:connector-curvature="0"
|
875
|
+
id="path6302"
|
876
|
+
d="m 197.4564,336.02464 464.60695,0"
|
877
|
+
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
878
|
+
<path
|
879
|
+
sodipodi:nodetypes="cc"
|
880
|
+
inkscape:connector-curvature="0"
|
881
|
+
id="path6304"
|
882
|
+
d="m 367.96358,293.605 0,163.67806"
|
883
|
+
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
884
|
+
</g>
|
885
|
+
</svg>
|