rabbit-slide-kou-fukuoka-ruby-award-7 2015.01.23.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 +38 -0
- data/Rakefile +18 -0
- data/config.yaml +24 -0
- data/groonga-mruby.pdf +0 -0
- data/images/jit-evaluator.svg +1053 -0
- data/images/query-optimizer-example.svg +324 -0
- data/images/query-optimizer.svg +1019 -0
- data/mruby-embedded-groonga.rab +189 -0
- data/pdf/fukuoka-ruby-award-7-mruby-embedded-groonga.pdf +0 -0
- data/poster.svg +627 -0
- data/theme.rb +6 -0
- metadata +91 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: bb879dd196847c710ebce47160dd7bb3c6ed5b09
|
4
|
+
data.tar.gz: ea0883e67d99f4888277f47e6fe1769407583ac6
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: a42359c78f1aa2fa2dc5edb2c239a9c2ae3e5fe19ef0cafb9e453c34741739d874066d4c47cb0374d0ecb9944db571281cba980aba9a8a4c1c3f2806c2caab23
|
7
|
+
data.tar.gz: b4eb8704e73a3bf96a60bebc2ee2ece7e1e11e0094439bcce0985ec910143240e417b9ec114bf0b3ebf6e778a09893f259ed66f92d874f8386eff2a2b0d8a525
|
data/.rabbit
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
mruby-embedded-groonga.rab
|
data/README.rd
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
= 第7回フクオカRuby大賞本審査資料:全文検索エンジンGroongaへのmrubyの組み込み
|
2
|
+
|
3
|
+
第7回フクオカRuby大賞本審査用の資料です。「全文検索エンジンGroongaへのmrubyの組み込み」という応募の説明です。
|
4
|
+
|
5
|
+
次の3つの項目を含んでいます。
|
6
|
+
|
7
|
+
(1) 特徴を表現するもの
|
8
|
+
(2) Rubyを適用した箇所
|
9
|
+
(3) Rubyを活用したことによる効果、社会に及ぼす影響
|
10
|
+
|
11
|
+
== ライセンス
|
12
|
+
|
13
|
+
CC BY-SA 4.0
|
14
|
+
|
15
|
+
原著作者名は以下の通りです。
|
16
|
+
|
17
|
+
* 須藤功平(またはKouhei Sutou)
|
18
|
+
|
19
|
+
== 作者向け
|
20
|
+
|
21
|
+
=== 表示
|
22
|
+
|
23
|
+
rake
|
24
|
+
|
25
|
+
=== 公開
|
26
|
+
|
27
|
+
rake publish
|
28
|
+
|
29
|
+
== 閲覧者向け
|
30
|
+
|
31
|
+
=== インストール
|
32
|
+
|
33
|
+
gem install rabbit-slide-kou-fukuoka-ruby-award-7
|
34
|
+
|
35
|
+
=== 表示
|
36
|
+
|
37
|
+
rabbit rabbit-slide-kou-fukuoka-ruby-award-7.gem
|
38
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1,18 @@
|
|
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("poster.svg")
|
9
|
+
spec.files += Dir.glob("images/*.svg")
|
10
|
+
# spec.files -= Dir.glob("private/**/*.*")
|
11
|
+
spec.add_runtime_dependency("groonga")
|
12
|
+
end
|
13
|
+
|
14
|
+
desc "Tag #{spec.version}"
|
15
|
+
task :tag do
|
16
|
+
sh("git", "tag", "-a", spec.version.to_s, "-m", "Publish #{spec.version}")
|
17
|
+
sh("git", "push", "--tags")
|
18
|
+
end
|
data/config.yaml
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
---
|
2
|
+
id: fukuoka-ruby-award-7
|
3
|
+
base_name: mruby-embedded-groonga
|
4
|
+
tags:
|
5
|
+
- rabbit
|
6
|
+
- mruby
|
7
|
+
- groonga
|
8
|
+
- full-text-search
|
9
|
+
presentation_date: 2015-01-23
|
10
|
+
version: 2015.01.23.0
|
11
|
+
licenses:
|
12
|
+
- CC BY-SA 4.0
|
13
|
+
slideshare_id: fukuoka-ruby-award-7
|
14
|
+
speaker_deck_id: quan-wen-jian-suo-enzingroongahefalsemrubyfalsezu-miip-mi
|
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
|
data/groonga-mruby.pdf
ADDED
Binary file
|
@@ -0,0 +1,1053 @@
|
|
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="965.3681"
|
13
|
+
height="424.56488"
|
14
|
+
id="svg2"
|
15
|
+
version="1.1"
|
16
|
+
inkscape:version="0.48.5 r10040"
|
17
|
+
sodipodi:docname="jit-evaluator.svg">
|
18
|
+
<defs
|
19
|
+
id="defs4">
|
20
|
+
<marker
|
21
|
+
inkscape:stockid="Arrow1Mend"
|
22
|
+
orient="auto"
|
23
|
+
refY="0"
|
24
|
+
refX="0"
|
25
|
+
id="Arrow1Mend"
|
26
|
+
style="overflow:visible">
|
27
|
+
<path
|
28
|
+
id="path5276"
|
29
|
+
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
|
30
|
+
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
|
31
|
+
transform="matrix(-0.4,0,0,-0.4,-4,0)"
|
32
|
+
inkscape:connector-curvature="0" />
|
33
|
+
</marker>
|
34
|
+
<linearGradient
|
35
|
+
id="linearGradient5055"
|
36
|
+
spreadMethod="pad"
|
37
|
+
gradientTransform="matrix(37.39998,16.509,-16.509,37.39998,362.32275,-485.4917)"
|
38
|
+
gradientUnits="userSpaceOnUse"
|
39
|
+
y2="0"
|
40
|
+
x2="1"
|
41
|
+
y1="0"
|
42
|
+
x1="0">
|
43
|
+
<stop
|
44
|
+
id="stop5057"
|
45
|
+
offset="0"
|
46
|
+
style="stop-opacity:1;stop-color:#b31000" />
|
47
|
+
<stop
|
48
|
+
id="stop5059"
|
49
|
+
offset="0.44"
|
50
|
+
style="stop-opacity:1;stop-color:#910f08" />
|
51
|
+
<stop
|
52
|
+
id="stop5061"
|
53
|
+
offset="0.44"
|
54
|
+
style="stop-opacity:1;stop-color:#910f08" />
|
55
|
+
<stop
|
56
|
+
id="stop5063"
|
57
|
+
offset="0.99001"
|
58
|
+
style="stop-opacity:1;stop-color:#791c12" />
|
59
|
+
<stop
|
60
|
+
id="stop5065"
|
61
|
+
offset="1"
|
62
|
+
style="stop-opacity:1;stop-color:#791c12" />
|
63
|
+
</linearGradient>
|
64
|
+
<linearGradient
|
65
|
+
id="linearGradient5029"
|
66
|
+
spreadMethod="pad"
|
67
|
+
gradientTransform="matrix(-16.68208,-56.59695,56.59695,-16.68208,234.35107,-297.95117)"
|
68
|
+
gradientUnits="userSpaceOnUse"
|
69
|
+
y2="0"
|
70
|
+
x2="1"
|
71
|
+
y1="0"
|
72
|
+
x1="0">
|
73
|
+
<stop
|
74
|
+
id="stop5031"
|
75
|
+
offset="0"
|
76
|
+
style="stop-opacity:1;stop-color:#8b2114" />
|
77
|
+
<stop
|
78
|
+
id="stop5033"
|
79
|
+
offset="0.42999"
|
80
|
+
style="stop-opacity:1;stop-color:#9e100a" />
|
81
|
+
<stop
|
82
|
+
id="stop5035"
|
83
|
+
offset="0.42999"
|
84
|
+
style="stop-opacity:1;stop-color:#9e100a" />
|
85
|
+
<stop
|
86
|
+
id="stop5037"
|
87
|
+
offset="0.99001"
|
88
|
+
style="stop-opacity:1;stop-color:#b3100c" />
|
89
|
+
<stop
|
90
|
+
id="stop5039"
|
91
|
+
offset="1"
|
92
|
+
style="stop-opacity:1;stop-color:#b3100c" />
|
93
|
+
</linearGradient>
|
94
|
+
<radialGradient
|
95
|
+
id="radialGradient5005"
|
96
|
+
spreadMethod="pad"
|
97
|
+
gradientTransform="matrix(66.9469,0,0,66.9469,281.77002,-349.54004)"
|
98
|
+
gradientUnits="userSpaceOnUse"
|
99
|
+
r="1"
|
100
|
+
cy="0"
|
101
|
+
cx="0"
|
102
|
+
fy="0"
|
103
|
+
fx="0">
|
104
|
+
<stop
|
105
|
+
id="stop5007"
|
106
|
+
offset="0"
|
107
|
+
style="stop-opacity:1;stop-color:#a30c00" />
|
108
|
+
<stop
|
109
|
+
id="stop5009"
|
110
|
+
offset="0.99001"
|
111
|
+
style="stop-opacity:1;stop-color:#800e08" />
|
112
|
+
<stop
|
113
|
+
id="stop5011"
|
114
|
+
offset="0.99001"
|
115
|
+
style="stop-opacity:1;stop-color:#800e08" />
|
116
|
+
<stop
|
117
|
+
id="stop5013"
|
118
|
+
offset="1"
|
119
|
+
style="stop-opacity:1;stop-color:#800e08" />
|
120
|
+
</radialGradient>
|
121
|
+
<radialGradient
|
122
|
+
id="radialGradient4981"
|
123
|
+
spreadMethod="pad"
|
124
|
+
gradientTransform="matrix(50.36,0,0,50.36,351.50977,-415.8999)"
|
125
|
+
gradientUnits="userSpaceOnUse"
|
126
|
+
r="1"
|
127
|
+
cy="0"
|
128
|
+
cx="0"
|
129
|
+
fy="0"
|
130
|
+
fx="0">
|
131
|
+
<stop
|
132
|
+
id="stop4983"
|
133
|
+
offset="0"
|
134
|
+
style="stop-opacity:1;stop-color:#a80d00" />
|
135
|
+
<stop
|
136
|
+
id="stop4985"
|
137
|
+
offset="0.99001"
|
138
|
+
style="stop-opacity:1;stop-color:#7e0e08" />
|
139
|
+
<stop
|
140
|
+
id="stop4987"
|
141
|
+
offset="0.99001"
|
142
|
+
style="stop-opacity:1;stop-color:#7e0e08" />
|
143
|
+
<stop
|
144
|
+
id="stop4989"
|
145
|
+
offset="1"
|
146
|
+
style="stop-opacity:1;stop-color:#7e0e08" />
|
147
|
+
</radialGradient>
|
148
|
+
<linearGradient
|
149
|
+
id="linearGradient4955"
|
150
|
+
spreadMethod="pad"
|
151
|
+
gradientTransform="matrix(-20.47006,-21.88396,21.88396,-20.47006,401.30273,-447.35352)"
|
152
|
+
gradientUnits="userSpaceOnUse"
|
153
|
+
y2="0"
|
154
|
+
x2="1"
|
155
|
+
y1="0"
|
156
|
+
x1="0">
|
157
|
+
<stop
|
158
|
+
id="stop4957"
|
159
|
+
offset="0"
|
160
|
+
style="stop-opacity:1;stop-color:#79130d" />
|
161
|
+
<stop
|
162
|
+
id="stop4959"
|
163
|
+
offset="0.99001"
|
164
|
+
style="stop-opacity:1;stop-color:#9e120b" />
|
165
|
+
<stop
|
166
|
+
id="stop4961"
|
167
|
+
offset="0.99001"
|
168
|
+
style="stop-opacity:1;stop-color:#9e120b" />
|
169
|
+
<stop
|
170
|
+
id="stop4963"
|
171
|
+
offset="1"
|
172
|
+
style="stop-opacity:1;stop-color:#9e120b" />
|
173
|
+
</linearGradient>
|
174
|
+
<linearGradient
|
175
|
+
id="linearGradient4931"
|
176
|
+
spreadMethod="pad"
|
177
|
+
gradientTransform="matrix(-41.09381,-36.83124,36.83124,-41.09381,386.20557,-379.77637)"
|
178
|
+
gradientUnits="userSpaceOnUse"
|
179
|
+
y2="0"
|
180
|
+
x2="1"
|
181
|
+
y1="0"
|
182
|
+
x1="0">
|
183
|
+
<stop
|
184
|
+
id="stop4933"
|
185
|
+
offset="0"
|
186
|
+
style="stop-opacity:1;stop-color:#7e110b" />
|
187
|
+
<stop
|
188
|
+
id="stop4935"
|
189
|
+
offset="0.99001"
|
190
|
+
style="stop-opacity:1;stop-color:#9e0c00" />
|
191
|
+
<stop
|
192
|
+
id="stop4937"
|
193
|
+
offset="0.99001"
|
194
|
+
style="stop-opacity:1;stop-color:#9e0c00" />
|
195
|
+
<stop
|
196
|
+
id="stop4939"
|
197
|
+
offset="1"
|
198
|
+
style="stop-opacity:1;stop-color:#9e0c00" />
|
199
|
+
</linearGradient>
|
200
|
+
<linearGradient
|
201
|
+
id="linearGradient4905"
|
202
|
+
spreadMethod="pad"
|
203
|
+
gradientTransform="matrix(-46.25406,-11.41588,11.41588,-46.25406,306.75684,-324.25684)"
|
204
|
+
gradientUnits="userSpaceOnUse"
|
205
|
+
y2="0"
|
206
|
+
x2="1"
|
207
|
+
y1="0"
|
208
|
+
x1="0">
|
209
|
+
<stop
|
210
|
+
id="stop4907"
|
211
|
+
offset="0"
|
212
|
+
style="stop-opacity:1;stop-color:#8c0c01" />
|
213
|
+
<stop
|
214
|
+
id="stop4909"
|
215
|
+
offset="0.53999"
|
216
|
+
style="stop-opacity:1;stop-color:#990c00" />
|
217
|
+
<stop
|
218
|
+
id="stop4911"
|
219
|
+
offset="0.53999"
|
220
|
+
style="stop-opacity:1;stop-color:#990c00" />
|
221
|
+
<stop
|
222
|
+
id="stop4913"
|
223
|
+
offset="0.99001"
|
224
|
+
style="stop-opacity:1;stop-color:#a80d0e" />
|
225
|
+
<stop
|
226
|
+
id="stop4915"
|
227
|
+
offset="1"
|
228
|
+
style="stop-opacity:1;stop-color:#a80d0e" />
|
229
|
+
</linearGradient>
|
230
|
+
<linearGradient
|
231
|
+
id="linearGradient4869"
|
232
|
+
spreadMethod="pad"
|
233
|
+
gradientTransform="matrix(153.57416,-157.91714,157.91714,153.57416,189.11963,-340.18066)"
|
234
|
+
gradientUnits="userSpaceOnUse"
|
235
|
+
y2="0"
|
236
|
+
x2="1"
|
237
|
+
y1="0"
|
238
|
+
x1="0">
|
239
|
+
<stop
|
240
|
+
id="stop4871"
|
241
|
+
offset="0"
|
242
|
+
style="stop-opacity:1;stop-color:#bd0012" />
|
243
|
+
<stop
|
244
|
+
id="stop4873"
|
245
|
+
offset="0.07001"
|
246
|
+
style="stop-opacity:1;stop-color:#ffffff" />
|
247
|
+
<stop
|
248
|
+
id="stop4875"
|
249
|
+
offset="0.07001"
|
250
|
+
style="stop-opacity:1;stop-color:#ffffff" />
|
251
|
+
<stop
|
252
|
+
id="stop4877"
|
253
|
+
offset="0.27"
|
254
|
+
style="stop-opacity:1;stop-color:#c82f1c" />
|
255
|
+
<stop
|
256
|
+
id="stop4879"
|
257
|
+
offset="0.27"
|
258
|
+
style="stop-opacity:1;stop-color:#c82f1c" />
|
259
|
+
<stop
|
260
|
+
id="stop4881"
|
261
|
+
offset="0.33"
|
262
|
+
style="stop-opacity:1;stop-color:#820c01" />
|
263
|
+
<stop
|
264
|
+
id="stop4883"
|
265
|
+
offset="0.46001"
|
266
|
+
style="stop-opacity:1;stop-color:#a31601" />
|
267
|
+
<stop
|
268
|
+
id="stop4885"
|
269
|
+
offset="0.72"
|
270
|
+
style="stop-opacity:1;stop-color:#b31301" />
|
271
|
+
<stop
|
272
|
+
id="stop4887"
|
273
|
+
offset="0.99001"
|
274
|
+
style="stop-opacity:1;stop-color:#e82609" />
|
275
|
+
<stop
|
276
|
+
id="stop4889"
|
277
|
+
offset="1"
|
278
|
+
style="stop-opacity:1;stop-color:#e82609" />
|
279
|
+
</linearGradient>
|
280
|
+
<linearGradient
|
281
|
+
id="linearGradient4839"
|
282
|
+
spreadMethod="pad"
|
283
|
+
gradientTransform="matrix(3.26703,32.70995,-32.70995,3.26703,211.58398,-381.73486)"
|
284
|
+
gradientUnits="userSpaceOnUse"
|
285
|
+
y2="0"
|
286
|
+
x2="1"
|
287
|
+
y1="0"
|
288
|
+
x1="0">
|
289
|
+
<stop
|
290
|
+
id="stop4841"
|
291
|
+
offset="0"
|
292
|
+
style="stop-opacity:1;stop-color:#ffffff" />
|
293
|
+
<stop
|
294
|
+
id="stop4843"
|
295
|
+
offset="0.31"
|
296
|
+
style="stop-opacity:1;stop-color:#de4024" />
|
297
|
+
<stop
|
298
|
+
id="stop4845"
|
299
|
+
offset="0.31"
|
300
|
+
style="stop-opacity:1;stop-color:#de4024" />
|
301
|
+
<stop
|
302
|
+
id="stop4847"
|
303
|
+
offset="0.99001"
|
304
|
+
style="stop-opacity:1;stop-color:#bf190b" />
|
305
|
+
<stop
|
306
|
+
id="stop4849"
|
307
|
+
offset="1"
|
308
|
+
style="stop-opacity:1;stop-color:#bf190b" />
|
309
|
+
</linearGradient>
|
310
|
+
<linearGradient
|
311
|
+
id="linearGradient4813"
|
312
|
+
spreadMethod="pad"
|
313
|
+
gradientTransform="matrix(39.69395,-19.84702,19.84702,39.69394,326.65625,-483.74756)"
|
314
|
+
gradientUnits="userSpaceOnUse"
|
315
|
+
y2="0"
|
316
|
+
x2="1"
|
317
|
+
y1="0"
|
318
|
+
x1="0">
|
319
|
+
<stop
|
320
|
+
id="stop4815"
|
321
|
+
offset="0"
|
322
|
+
style="stop-opacity:1;stop-color:#ffffff" />
|
323
|
+
<stop
|
324
|
+
id="stop4817"
|
325
|
+
offset="0.53999"
|
326
|
+
style="stop-opacity:1;stop-color:#c81f11" />
|
327
|
+
<stop
|
328
|
+
id="stop4819"
|
329
|
+
offset="0.53999"
|
330
|
+
style="stop-opacity:1;stop-color:#c81f11" />
|
331
|
+
<stop
|
332
|
+
id="stop4821"
|
333
|
+
offset="0.99001"
|
334
|
+
style="stop-opacity:1;stop-color:#bf0905" />
|
335
|
+
<stop
|
336
|
+
id="stop4823"
|
337
|
+
offset="1"
|
338
|
+
style="stop-opacity:1;stop-color:#bf0905" />
|
339
|
+
</linearGradient>
|
340
|
+
<linearGradient
|
341
|
+
id="linearGradient4785"
|
342
|
+
spreadMethod="pad"
|
343
|
+
gradientTransform="matrix(9.21103,39.69502,-39.69502,9.21103,354.78418,-469.7666)"
|
344
|
+
gradientUnits="userSpaceOnUse"
|
345
|
+
y2="0"
|
346
|
+
x2="1"
|
347
|
+
y1="0"
|
348
|
+
x1="0">
|
349
|
+
<stop
|
350
|
+
id="stop4787"
|
351
|
+
offset="0"
|
352
|
+
style="stop-opacity:1;stop-color:#ffffff" />
|
353
|
+
<stop
|
354
|
+
id="stop4789"
|
355
|
+
offset="0.17999"
|
356
|
+
style="stop-opacity:1;stop-color:#e46342" />
|
357
|
+
<stop
|
358
|
+
id="stop4791"
|
359
|
+
offset="0.17999"
|
360
|
+
style="stop-opacity:1;stop-color:#e46342" />
|
361
|
+
<stop
|
362
|
+
id="stop4793"
|
363
|
+
offset="0.39999"
|
364
|
+
style="stop-opacity:1;stop-color:#c82410" />
|
365
|
+
<stop
|
366
|
+
id="stop4795"
|
367
|
+
offset="0.99001"
|
368
|
+
style="stop-opacity:1;stop-color:#a80d00" />
|
369
|
+
<stop
|
370
|
+
id="stop4797"
|
371
|
+
offset="1"
|
372
|
+
style="stop-opacity:1;stop-color:#a80d00" />
|
373
|
+
</linearGradient>
|
374
|
+
<linearGradient
|
375
|
+
id="linearGradient4757"
|
376
|
+
spreadMethod="pad"
|
377
|
+
gradientTransform="matrix(3.077,55.39,-55.39,3.077,303.8125,-418.5791)"
|
378
|
+
gradientUnits="userSpaceOnUse"
|
379
|
+
y2="0"
|
380
|
+
x2="1"
|
381
|
+
y1="0"
|
382
|
+
x1="0">
|
383
|
+
<stop
|
384
|
+
id="stop4759"
|
385
|
+
offset="0"
|
386
|
+
style="stop-opacity:1;stop-color:#ffffff" />
|
387
|
+
<stop
|
388
|
+
id="stop4761"
|
389
|
+
offset="0.23"
|
390
|
+
style="stop-opacity:1;stop-color:#e4714e" />
|
391
|
+
<stop
|
392
|
+
id="stop4763"
|
393
|
+
offset="0.23"
|
394
|
+
style="stop-opacity:1;stop-color:#e4714e" />
|
395
|
+
<stop
|
396
|
+
id="stop4765"
|
397
|
+
offset="0.56"
|
398
|
+
style="stop-opacity:1;stop-color:#be1a0d" />
|
399
|
+
<stop
|
400
|
+
id="stop4767"
|
401
|
+
offset="0.99001"
|
402
|
+
style="stop-opacity:1;stop-color:#a80d00" />
|
403
|
+
<stop
|
404
|
+
id="stop4769"
|
405
|
+
offset="1"
|
406
|
+
style="stop-opacity:1;stop-color:#a80d00" />
|
407
|
+
</linearGradient>
|
408
|
+
<linearGradient
|
409
|
+
id="linearGradient4729"
|
410
|
+
spreadMethod="pad"
|
411
|
+
gradientTransform="matrix(8.35098,54.27298,-54.27298,8.35098,246.37646,-367.89844)"
|
412
|
+
gradientUnits="userSpaceOnUse"
|
413
|
+
y2="0"
|
414
|
+
x2="1"
|
415
|
+
y1="0"
|
416
|
+
x1="0">
|
417
|
+
<stop
|
418
|
+
id="stop4731"
|
419
|
+
offset="0"
|
420
|
+
style="stop-opacity:1;stop-color:#ffffff" />
|
421
|
+
<stop
|
422
|
+
id="stop4733"
|
423
|
+
offset="0.23"
|
424
|
+
style="stop-opacity:1;stop-color:#e57252" />
|
425
|
+
<stop
|
426
|
+
id="stop4735"
|
427
|
+
offset="0.23"
|
428
|
+
style="stop-opacity:1;stop-color:#e57252" />
|
429
|
+
<stop
|
430
|
+
id="stop4737"
|
431
|
+
offset="0.46001"
|
432
|
+
style="stop-opacity:1;stop-color:#de3b20" />
|
433
|
+
<stop
|
434
|
+
id="stop4739"
|
435
|
+
offset="0.99001"
|
436
|
+
style="stop-opacity:1;stop-color:#a60003" />
|
437
|
+
<stop
|
438
|
+
id="stop4741"
|
439
|
+
offset="1"
|
440
|
+
style="stop-opacity:1;stop-color:#a60003" />
|
441
|
+
</linearGradient>
|
442
|
+
<linearGradient
|
443
|
+
id="linearGradient4705"
|
444
|
+
spreadMethod="pad"
|
445
|
+
gradientTransform="matrix(-53.86887,-36.14926,36.14926,-53.86887,359.47363,-277.50684)"
|
446
|
+
gradientUnits="userSpaceOnUse"
|
447
|
+
y2="0"
|
448
|
+
x2="1"
|
449
|
+
y1="0"
|
450
|
+
x1="0">
|
451
|
+
<stop
|
452
|
+
id="stop4707"
|
453
|
+
offset="0"
|
454
|
+
style="stop-opacity:1;stop-color:#871101" />
|
455
|
+
<stop
|
456
|
+
id="stop4709"
|
457
|
+
offset="0.99001"
|
458
|
+
style="stop-opacity:1;stop-color:#911209" />
|
459
|
+
<stop
|
460
|
+
id="stop4711"
|
461
|
+
offset="0.99001"
|
462
|
+
style="stop-opacity:1;stop-color:#911209" />
|
463
|
+
<stop
|
464
|
+
id="stop4713"
|
465
|
+
offset="1"
|
466
|
+
style="stop-opacity:1;stop-color:#911209" />
|
467
|
+
</linearGradient>
|
468
|
+
<linearGradient
|
469
|
+
id="linearGradient4681"
|
470
|
+
spreadMethod="pad"
|
471
|
+
gradientTransform="matrix(-53.86887,-36.14926,36.14926,-53.86887,402.57422,-341.73389)"
|
472
|
+
gradientUnits="userSpaceOnUse"
|
473
|
+
y2="0"
|
474
|
+
x2="1"
|
475
|
+
y1="0"
|
476
|
+
x1="0">
|
477
|
+
<stop
|
478
|
+
id="stop4683"
|
479
|
+
offset="0"
|
480
|
+
style="stop-opacity:1;stop-color:#871101" />
|
481
|
+
<stop
|
482
|
+
id="stop4685"
|
483
|
+
offset="0.99001"
|
484
|
+
style="stop-opacity:1;stop-color:#911209" />
|
485
|
+
<stop
|
486
|
+
id="stop4687"
|
487
|
+
offset="0.99001"
|
488
|
+
style="stop-opacity:1;stop-color:#911209" />
|
489
|
+
<stop
|
490
|
+
id="stop4689"
|
491
|
+
offset="1"
|
492
|
+
style="stop-opacity:1;stop-color:#911209" />
|
493
|
+
</linearGradient>
|
494
|
+
<linearGradient
|
495
|
+
id="linearGradient4655"
|
496
|
+
spreadMethod="pad"
|
497
|
+
gradientTransform="matrix(-41.8,-73.80005,73.80005,-41.8,381.75049,-279.74512)"
|
498
|
+
gradientUnits="userSpaceOnUse"
|
499
|
+
y2="0"
|
500
|
+
x2="1"
|
501
|
+
y1="0"
|
502
|
+
x1="0">
|
503
|
+
<stop
|
504
|
+
id="stop4657"
|
505
|
+
offset="0"
|
506
|
+
style="stop-opacity:1;stop-color:#fb7655" />
|
507
|
+
<stop
|
508
|
+
id="stop4659"
|
509
|
+
offset="0.41"
|
510
|
+
style="stop-opacity:1;stop-color:#e42b1e" />
|
511
|
+
<stop
|
512
|
+
id="stop4661"
|
513
|
+
offset="0.41"
|
514
|
+
style="stop-opacity:1;stop-color:#e42b1e" />
|
515
|
+
<stop
|
516
|
+
id="stop4663"
|
517
|
+
offset="0.99001"
|
518
|
+
style="stop-opacity:1;stop-color:#990000" />
|
519
|
+
<stop
|
520
|
+
id="stop4665"
|
521
|
+
offset="1"
|
522
|
+
style="stop-opacity:1;stop-color:#990000" />
|
523
|
+
</linearGradient>
|
524
|
+
</defs>
|
525
|
+
<sodipodi:namedview
|
526
|
+
id="base"
|
527
|
+
pagecolor="#ffffff"
|
528
|
+
bordercolor="#666666"
|
529
|
+
borderopacity="1.0"
|
530
|
+
inkscape:pageopacity="0.0"
|
531
|
+
inkscape:pageshadow="2"
|
532
|
+
inkscape:zoom="0.49497475"
|
533
|
+
inkscape:cx="600.37516"
|
534
|
+
inkscape:cy="62.769066"
|
535
|
+
inkscape:document-units="px"
|
536
|
+
inkscape:current-layer="layer1"
|
537
|
+
showgrid="false"
|
538
|
+
fit-margin-top="10"
|
539
|
+
fit-margin-left="10"
|
540
|
+
fit-margin-right="10"
|
541
|
+
fit-margin-bottom="10"
|
542
|
+
inkscape:window-width="1174"
|
543
|
+
inkscape:window-height="655"
|
544
|
+
inkscape:window-x="2375"
|
545
|
+
inkscape:window-y="345"
|
546
|
+
inkscape:window-maximized="0" />
|
547
|
+
<metadata
|
548
|
+
id="metadata7">
|
549
|
+
<rdf:RDF>
|
550
|
+
<cc:Work
|
551
|
+
rdf:about="">
|
552
|
+
<dc:format>image/svg+xml</dc:format>
|
553
|
+
<dc:type
|
554
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
555
|
+
<dc:title />
|
556
|
+
</cc:Work>
|
557
|
+
</rdf:RDF>
|
558
|
+
</metadata>
|
559
|
+
<g
|
560
|
+
inkscape:label="レイヤー 1"
|
561
|
+
inkscape:groupmode="layer"
|
562
|
+
id="layer1"
|
563
|
+
transform="translate(158.27202,-141.3078)">
|
564
|
+
<rect
|
565
|
+
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#c4a000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
566
|
+
id="rect2985"
|
567
|
+
width="166.98189"
|
568
|
+
height="66.342926"
|
569
|
+
x="-147.27202"
|
570
|
+
y="207.56161"
|
571
|
+
rx="10"
|
572
|
+
ry="10" />
|
573
|
+
<text
|
574
|
+
xml:space="preserve"
|
575
|
+
style="font-size:36px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
|
576
|
+
x="-136.56277"
|
577
|
+
y="252.00235"
|
578
|
+
id="text3755"
|
579
|
+
sodipodi:linespacing="125%"><tspan
|
580
|
+
sodipodi:role="line"
|
581
|
+
id="tspan3757"
|
582
|
+
x="-136.56277"
|
583
|
+
y="252.00235">クエリー</tspan></text>
|
584
|
+
<path
|
585
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Mend)"
|
586
|
+
d="m -30,286.6479 656.42858,0"
|
587
|
+
id="path5259"
|
588
|
+
inkscape:connector-curvature="0"
|
589
|
+
sodipodi:nodetypes="cc" />
|
590
|
+
<rect
|
591
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#204a87;stroke-width:5;stroke-miterlimit:4;stroke-dasharray:none"
|
592
|
+
id="rect3759"
|
593
|
+
width="305.85577"
|
594
|
+
height="123.23862"
|
595
|
+
x="48.284271"
|
596
|
+
y="258.38229"
|
597
|
+
ry="5"
|
598
|
+
rx="5" />
|
599
|
+
<text
|
600
|
+
xml:space="preserve"
|
601
|
+
style="font-size:36px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
|
602
|
+
x="65.619308"
|
603
|
+
y="365.92038"
|
604
|
+
id="text3761"
|
605
|
+
sodipodi:linespacing="125%"><tspan
|
606
|
+
sodipodi:role="line"
|
607
|
+
x="65.619308"
|
608
|
+
y="365.92038"
|
609
|
+
id="tspan4818">JITコンパイラー</tspan></text>
|
610
|
+
<text
|
611
|
+
xml:space="preserve"
|
612
|
+
style="font-size:36px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
|
613
|
+
x="105.14942"
|
614
|
+
y="220.63322"
|
615
|
+
id="text3767"
|
616
|
+
sodipodi:linespacing="125%"><tspan
|
617
|
+
sodipodi:role="line"
|
618
|
+
id="tspan3769"
|
619
|
+
x="105.14942"
|
620
|
+
y="220.63322">コンパイル</tspan></text>
|
621
|
+
<rect
|
622
|
+
ry="10"
|
623
|
+
rx="10"
|
624
|
+
y="152.3078"
|
625
|
+
x="366.85272"
|
626
|
+
height="116.85059"
|
627
|
+
width="237.41771"
|
628
|
+
id="rect3771"
|
629
|
+
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
630
|
+
<text
|
631
|
+
sodipodi:linespacing="125%"
|
632
|
+
id="text3773"
|
633
|
+
y="197.7587"
|
634
|
+
x="486.90616"
|
635
|
+
style="font-size:36px;font-style:normal;font-weight:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
|
636
|
+
xml:space="preserve"><tspan
|
637
|
+
y="197.7587"
|
638
|
+
x="486.90616"
|
639
|
+
sodipodi:role="line"
|
640
|
+
id="tspan3197">クエリー専用</tspan><tspan
|
641
|
+
y="242.7587"
|
642
|
+
x="486.90616"
|
643
|
+
sodipodi:role="line"
|
644
|
+
id="tspan4873">評価器</tspan></text>
|
645
|
+
<rect
|
646
|
+
y="389.56573"
|
647
|
+
x="644.987"
|
648
|
+
height="71.475769"
|
649
|
+
width="136.41266"
|
650
|
+
id="rect3797"
|
651
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#204a87;stroke-width:2" />
|
652
|
+
<text
|
653
|
+
sodipodi:linespacing="125%"
|
654
|
+
id="text3799"
|
655
|
+
y="272.49182"
|
656
|
+
x="712.44189"
|
657
|
+
style="font-size:36px;font-style:normal;font-weight:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
|
658
|
+
xml:space="preserve"><tspan
|
659
|
+
id="tspan3803"
|
660
|
+
y="272.49182"
|
661
|
+
x="712.44189"
|
662
|
+
sodipodi:role="line">評価器を</tspan><tspan
|
663
|
+
y="317.49182"
|
664
|
+
x="712.44189"
|
665
|
+
sodipodi:role="line"
|
666
|
+
id="tspan4896">実行</tspan></text>
|
667
|
+
<text
|
668
|
+
xml:space="preserve"
|
669
|
+
style="font-size:36px;font-style:normal;font-weight:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
|
670
|
+
x="706.98572"
|
671
|
+
y="500.13361"
|
672
|
+
id="text3807"
|
673
|
+
sodipodi:linespacing="125%"><tspan
|
674
|
+
sodipodi:role="line"
|
675
|
+
id="tspan3809"
|
676
|
+
x="706.98572"
|
677
|
+
y="500.13361">全文検索</tspan><tspan
|
678
|
+
sodipodi:role="line"
|
679
|
+
x="706.98572"
|
680
|
+
y="545.13361"
|
681
|
+
id="tspan3201">普通の検索</tspan></text>
|
682
|
+
<g
|
683
|
+
transform="matrix(0.33228149,0,0,-0.33228149,33.429668,413.56109)"
|
684
|
+
inkscape:label="ruby"
|
685
|
+
id="g4641">
|
686
|
+
<g
|
687
|
+
transform="scale(1,-1)"
|
688
|
+
id="g4643">
|
689
|
+
<g
|
690
|
+
id="g4645">
|
691
|
+
<g
|
692
|
+
id="g4651">
|
693
|
+
<g
|
694
|
+
id="g4653">
|
695
|
+
<path
|
696
|
+
id="path4667"
|
697
|
+
style="fill:url(#linearGradient4655);fill-rule:evenodd;stroke:none"
|
698
|
+
d="m 248.06006,-297.70996 c 0,0 146.46973,-9.93994 146.46973,-9.93994 0,0 11.28027,-147.68994 11.28027,-147.68994 0,0 -44.62988,90.45996 -44.62988,90.45996 0,0 -113.12012,67.16992 -113.12012,67.16992 z"
|
699
|
+
inkscape:connector-curvature="0" />
|
700
|
+
</g>
|
701
|
+
</g>
|
702
|
+
</g>
|
703
|
+
</g>
|
704
|
+
<g
|
705
|
+
transform="scale(1,-1)"
|
706
|
+
id="g4669">
|
707
|
+
<g
|
708
|
+
id="g4671">
|
709
|
+
<g
|
710
|
+
id="g4677">
|
711
|
+
<g
|
712
|
+
id="g4679">
|
713
|
+
<path
|
714
|
+
id="path4691"
|
715
|
+
style="fill:url(#linearGradient4681);fill-rule:evenodd;stroke:none"
|
716
|
+
d="m 347.89014,-349.35986 c 0,0 46.87988,41.60986 46.87988,41.60986 0,0 -12.58984,-86.89014 -12.58984,-86.89014 0,0 -34.29004,45.28028 -34.29004,45.28028 z"
|
717
|
+
inkscape:connector-curvature="0" />
|
718
|
+
</g>
|
719
|
+
</g>
|
720
|
+
</g>
|
721
|
+
</g>
|
722
|
+
<g
|
723
|
+
transform="scale(1,-1)"
|
724
|
+
id="g4693">
|
725
|
+
<g
|
726
|
+
id="g4695">
|
727
|
+
<g
|
728
|
+
id="g4701">
|
729
|
+
<g
|
730
|
+
id="g4703">
|
731
|
+
<path
|
732
|
+
id="path4715"
|
733
|
+
style="fill:url(#linearGradient4705);fill-rule:evenodd;stroke:none"
|
734
|
+
d="m 248.5498,-297.8999 c 0,0 146.39014,-9.8501 146.39014,-9.8501 0,0 -92.22998,-7.24023 -92.22998,-7.24023 0,0 -54.16016,17.09033 -54.16016,17.09033 z"
|
735
|
+
inkscape:connector-curvature="0" />
|
736
|
+
</g>
|
737
|
+
</g>
|
738
|
+
</g>
|
739
|
+
</g>
|
740
|
+
<g
|
741
|
+
transform="scale(1,-1)"
|
742
|
+
id="g4717">
|
743
|
+
<g
|
744
|
+
id="g4719">
|
745
|
+
<g
|
746
|
+
id="g4725">
|
747
|
+
<g
|
748
|
+
id="g4727">
|
749
|
+
<path
|
750
|
+
id="path4743"
|
751
|
+
style="fill:url(#linearGradient4729);fill-rule:evenodd;stroke:none"
|
752
|
+
d="m 221.02002,-362.52002 c 0,0 27.66016,64.64014 27.66016,64.64014 0,0 23.03955,-75.47998 23.03955,-75.47998 0,0 -50.69971,10.83984 -50.69971,10.83984 z"
|
753
|
+
inkscape:connector-curvature="0" />
|
754
|
+
</g>
|
755
|
+
</g>
|
756
|
+
</g>
|
757
|
+
</g>
|
758
|
+
<g
|
759
|
+
transform="scale(1,-1)"
|
760
|
+
id="g4745">
|
761
|
+
<g
|
762
|
+
id="g4747">
|
763
|
+
<g
|
764
|
+
id="g4753">
|
765
|
+
<g
|
766
|
+
id="g4755">
|
767
|
+
<path
|
768
|
+
id="path4771"
|
769
|
+
style="fill:url(#linearGradient4757);fill-rule:evenodd;stroke:none"
|
770
|
+
d="m 266.00977,-375.27979 c 0,0 81.87011,26.16993 81.87011,26.16993 0,0 -21.1997,-83.04004 -21.1997,-83.04004 0,0 -60.67041,56.87011 -60.67041,56.87011 z"
|
771
|
+
inkscape:connector-curvature="0" />
|
772
|
+
</g>
|
773
|
+
</g>
|
774
|
+
</g>
|
775
|
+
</g>
|
776
|
+
<g
|
777
|
+
transform="scale(1,-1)"
|
778
|
+
id="g4773">
|
779
|
+
<g
|
780
|
+
id="g4775">
|
781
|
+
<g
|
782
|
+
id="g4781">
|
783
|
+
<g
|
784
|
+
id="g4783">
|
785
|
+
<path
|
786
|
+
id="path4799"
|
787
|
+
style="fill:url(#linearGradient4785);fill-rule:evenodd;stroke:none"
|
788
|
+
d="m 327.68018,-426.18994 c 0,0 73.31982,-4.79004 73.31982,-4.79004 0,0 -57.3501,-46.83984 -57.3501,-46.83984 0,0 -15.96972,51.62988 -15.96972,51.62988 z"
|
789
|
+
inkscape:connector-curvature="0" />
|
790
|
+
</g>
|
791
|
+
</g>
|
792
|
+
</g>
|
793
|
+
</g>
|
794
|
+
<g
|
795
|
+
transform="scale(1,-1)"
|
796
|
+
id="g4801">
|
797
|
+
<g
|
798
|
+
id="g4803">
|
799
|
+
<g
|
800
|
+
id="g4809">
|
801
|
+
<g
|
802
|
+
id="g4811">
|
803
|
+
<path
|
804
|
+
id="path4825"
|
805
|
+
style="fill:url(#linearGradient4813);fill-rule:evenodd;stroke:none"
|
806
|
+
d="m 319.16992,-494.77002 c 0,0 55.01026,0.25 55.01026,0.25 0,0 -33.72998,18.64014 -33.72998,18.64014 0,0 -21.28028,-18.89014 -21.28028,-18.89014 z"
|
807
|
+
inkscape:connector-curvature="0" />
|
808
|
+
</g>
|
809
|
+
</g>
|
810
|
+
</g>
|
811
|
+
</g>
|
812
|
+
<g
|
813
|
+
transform="scale(1,-1)"
|
814
|
+
id="g4827">
|
815
|
+
<g
|
816
|
+
id="g4829">
|
817
|
+
<g
|
818
|
+
id="g4835">
|
819
|
+
<g
|
820
|
+
id="g4837">
|
821
|
+
<path
|
822
|
+
id="path4851"
|
823
|
+
style="fill:url(#linearGradient4839);fill-rule:evenodd;stroke:none"
|
824
|
+
d="m 210.37988,-393.66992 c 0,0 -2.6997,56.46972 -2.6997,56.46972 0,0 14.12988,-25.77001 14.12988,-25.77001 0,0 -11.43018,-30.69971 -11.43018,-30.69971 z"
|
825
|
+
inkscape:connector-curvature="0" />
|
826
|
+
</g>
|
827
|
+
</g>
|
828
|
+
</g>
|
829
|
+
</g>
|
830
|
+
<g
|
831
|
+
transform="scale(1,-1)"
|
832
|
+
id="g4853">
|
833
|
+
<path
|
834
|
+
id="path4855"
|
835
|
+
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
836
|
+
d="m 209.62012,-394.64014 c 0,0 11.5,32.62012 11.5,32.62012 0,0 49.96972,-11.20996 49.96972,-11.20996 0,0 57.0503,-53.02002 57.0503,-53.02002 0,0 16.10009,-51.14014 16.10009,-51.14014 0,0 -25.35009,-17.8999 -25.35009,-17.8999 0,0 -43.1001,16.12988 -43.1001,16.12988 -13.58008,12.63037 -39.93018,37.62012 -40.87988,38.09034 -0.93995,0.47998 -17.40039,31.58984 -25.29004,46.42968 z"
|
837
|
+
inkscape:connector-curvature="0" />
|
838
|
+
<g
|
839
|
+
id="g4857">
|
840
|
+
<g
|
841
|
+
id="g4859">
|
842
|
+
<g
|
843
|
+
id="g4865">
|
844
|
+
<g
|
845
|
+
id="g4867">
|
846
|
+
<path
|
847
|
+
id="path4891"
|
848
|
+
style="fill:url(#linearGradient4869);fill-rule:evenodd;stroke:none"
|
849
|
+
d="m 250,-453.24023 c 29.43018,-29.17969 67.37012,-46.41993 81.93018,-31.72998 14.5498,14.69042 -0.88038,50.39013 -30.31006,79.56005 -29.43018,29.16993 -66.89991,47.36036 -81.4502,32.66993 -14.56006,-14.67969 0.3999,-51.32959 29.83008,-80.5 z"
|
850
|
+
inkscape:connector-curvature="0" />
|
851
|
+
</g>
|
852
|
+
</g>
|
853
|
+
</g>
|
854
|
+
</g>
|
855
|
+
<g
|
856
|
+
id="g4893">
|
857
|
+
<g
|
858
|
+
id="g4895">
|
859
|
+
<g
|
860
|
+
id="g4901">
|
861
|
+
<g
|
862
|
+
id="g4903">
|
863
|
+
<path
|
864
|
+
id="path4917"
|
865
|
+
style="fill:url(#linearGradient4905);fill-rule:evenodd;stroke:none"
|
866
|
+
d="m 248.68018,-297.91016 c 0,0 22.85986,-75.71972 22.85986,-75.71972 0,0 75.91992,24.38965 75.91992,24.38965 -27.45019,25.74023 -57.97998,47.5 -98.77978,51.33007 z"
|
867
|
+
inkscape:connector-curvature="0" />
|
868
|
+
</g>
|
869
|
+
</g>
|
870
|
+
</g>
|
871
|
+
</g>
|
872
|
+
<g
|
873
|
+
id="g4919">
|
874
|
+
<g
|
875
|
+
id="g4921">
|
876
|
+
<g
|
877
|
+
id="g4927">
|
878
|
+
<g
|
879
|
+
id="g4929">
|
880
|
+
<path
|
881
|
+
id="path4941"
|
882
|
+
style="fill:url(#linearGradient4931);fill-rule:evenodd;stroke:none"
|
883
|
+
d="m 328.24023,-426.3999 c 0,0 19.48975,77.1997 19.48975,77.1997 22.93018,-24.10986 43.51025,-50.02978 53.58984,-82.08984 0,0 -73.07959,4.89014 -73.07959,4.89014 z"
|
884
|
+
inkscape:connector-curvature="0" />
|
885
|
+
</g>
|
886
|
+
</g>
|
887
|
+
</g>
|
888
|
+
</g>
|
889
|
+
<g
|
890
|
+
id="g4943">
|
891
|
+
<g
|
892
|
+
id="g4945">
|
893
|
+
<g
|
894
|
+
id="g4951">
|
895
|
+
<g
|
896
|
+
id="g4953">
|
897
|
+
<path
|
898
|
+
id="path4965"
|
899
|
+
style="fill:url(#linearGradient4955);fill-rule:evenodd;stroke:none"
|
900
|
+
d="m 401.12012,-430.8999 c 7.7998,-23.54004 9.59961,-57.31006 -27.18018,-63.58008 0,0 -30.18017,16.66992 -30.18017,16.66992 0,0 57.36035,46.91016 57.36035,46.91016 z"
|
901
|
+
inkscape:connector-curvature="0" />
|
902
|
+
</g>
|
903
|
+
</g>
|
904
|
+
</g>
|
905
|
+
</g>
|
906
|
+
<path
|
907
|
+
id="path4967"
|
908
|
+
style="fill:#9e1209;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
909
|
+
d="m 207.68018,-337.54004 c 1.07959,38.8501 29.10986,39.43018 41.0498,39.77002 0,0 -27.58008,-64.41016 -27.58008,-64.41016 0,0 -13.46972,24.64014 -13.46972,24.64014 z"
|
910
|
+
inkscape:connector-curvature="0" />
|
911
|
+
<g
|
912
|
+
id="g4969">
|
913
|
+
<g
|
914
|
+
id="g4971">
|
915
|
+
<g
|
916
|
+
id="g4977">
|
917
|
+
<g
|
918
|
+
id="g4979">
|
919
|
+
<path
|
920
|
+
id="path4991"
|
921
|
+
style="fill:url(#radialGradient4981);fill-rule:evenodd;stroke:none"
|
922
|
+
d="m 328.3501,-426.27979 c 17.61963,10.82959 53.12988,32.57959 53.8501,32.97999 1.11962,0.62988 15.30957,-23.93018 18.52978,-37.81006 0,0 -72.37988,4.83007 -72.37988,4.83007 z"
|
923
|
+
inkscape:connector-curvature="0" />
|
924
|
+
</g>
|
925
|
+
</g>
|
926
|
+
</g>
|
927
|
+
</g>
|
928
|
+
<g
|
929
|
+
id="g4993">
|
930
|
+
<g
|
931
|
+
id="g4995">
|
932
|
+
<g
|
933
|
+
id="g5001">
|
934
|
+
<g
|
935
|
+
id="g5003">
|
936
|
+
<path
|
937
|
+
id="path5015"
|
938
|
+
style="fill:url(#radialGradient5005);fill-rule:evenodd;stroke:none"
|
939
|
+
d="m 271.50977,-373.62988 c 0,0 30.56005,58.95996 30.56005,58.95996 18.07032,-9.80029 32.22022,-21.74024 45.18018,-34.53028 0,0 -75.74023,-24.42968 -75.74023,-24.42968 z"
|
940
|
+
inkscape:connector-curvature="0" />
|
941
|
+
</g>
|
942
|
+
</g>
|
943
|
+
</g>
|
944
|
+
</g>
|
945
|
+
<g
|
946
|
+
id="g5017">
|
947
|
+
<g
|
948
|
+
id="g5019">
|
949
|
+
<g
|
950
|
+
id="g5025">
|
951
|
+
<g
|
952
|
+
id="g5027">
|
953
|
+
<path
|
954
|
+
id="path5041"
|
955
|
+
style="fill:url(#linearGradient5029);fill-rule:evenodd;stroke:none"
|
956
|
+
d="m 221.02979,-362.1001 c 0,0 -4.32959,51.56006 -4.32959,51.56006 8.16992,11.16016 19.40966,12.12988 31.1997,11.26025 -8.52978,-21.22998 -25.56982,-63.68017 -26.87011,-62.82031 z"
|
957
|
+
inkscape:connector-curvature="0" />
|
958
|
+
</g>
|
959
|
+
</g>
|
960
|
+
</g>
|
961
|
+
</g>
|
962
|
+
<g
|
963
|
+
id="g5043">
|
964
|
+
<g
|
965
|
+
id="g5045">
|
966
|
+
<g
|
967
|
+
id="g5051">
|
968
|
+
<g
|
969
|
+
id="g5053">
|
970
|
+
<path
|
971
|
+
id="path5067"
|
972
|
+
style="fill:url(#linearGradient5055);fill-rule:evenodd;stroke:none"
|
973
|
+
d="m 343.58008,-477.68018 c 0,0 60.70996,8.52002 60.70996,8.52002 -3.24024,-13.72998 -13.18994,-22.58984 -30.1499,-25.35986 0,0 -30.56006,16.83984 -30.56006,16.83984 z"
|
974
|
+
inkscape:connector-curvature="0" />
|
975
|
+
</g>
|
976
|
+
</g>
|
977
|
+
</g>
|
978
|
+
</g>
|
979
|
+
</g>
|
980
|
+
</g>
|
981
|
+
<text
|
982
|
+
xml:space="preserve"
|
983
|
+
style="font-size:6px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
|
984
|
+
x="103.53558"
|
985
|
+
y="324.49069"
|
986
|
+
id="text5251"
|
987
|
+
sodipodi:linespacing="125%"><tspan
|
988
|
+
sodipodi:role="line"
|
989
|
+
id="tspan5253"
|
990
|
+
x="103.53558"
|
991
|
+
y="324.49069">by Yukihiro Matsumoto</tspan></text>
|
992
|
+
<path
|
993
|
+
sodipodi:nodetypes="cc"
|
994
|
+
inkscape:connector-curvature="0"
|
995
|
+
id="path5718"
|
996
|
+
d="m 627.92858,466.6479 -656.42858,0"
|
997
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Mend)" />
|
998
|
+
<rect
|
999
|
+
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#c4a000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
1000
|
+
id="rect5720"
|
1001
|
+
width="216.34808"
|
1002
|
+
height="66.850586"
|
1003
|
+
x="152.46402"
|
1004
|
+
y="488.02209"
|
1005
|
+
rx="10"
|
1006
|
+
ry="10" />
|
1007
|
+
<text
|
1008
|
+
xml:space="preserve"
|
1009
|
+
style="font-size:36px;font-style:normal;font-weight:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
|
1010
|
+
x="260.90045"
|
1011
|
+
y="533.47296"
|
1012
|
+
id="text5722"
|
1013
|
+
sodipodi:linespacing="125%"><tspan
|
1014
|
+
sodipodi:role="line"
|
1015
|
+
x="260.90045"
|
1016
|
+
y="533.47296"
|
1017
|
+
id="tspan5730">結果セット</tspan></text>
|
1018
|
+
<text
|
1019
|
+
sodipodi:linespacing="125%"
|
1020
|
+
id="text4820"
|
1021
|
+
y="298.63321"
|
1022
|
+
x="181.86371"
|
1023
|
+
style="font-size:36px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
|
1024
|
+
xml:space="preserve"><tspan
|
1025
|
+
y="298.63321"
|
1026
|
+
x="181.86371"
|
1027
|
+
id="tspan4822"
|
1028
|
+
sodipodi:role="line">+ LLVM</tspan></text>
|
1029
|
+
<text
|
1030
|
+
xml:space="preserve"
|
1031
|
+
style="font-size:36px;font-style:normal;font-weight:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
|
1032
|
+
x="710.44189"
|
1033
|
+
y="436.49182"
|
1034
|
+
id="text4898"
|
1035
|
+
sodipodi:linespacing="125%"><tspan
|
1036
|
+
id="tspan4902"
|
1037
|
+
sodipodi:role="line"
|
1038
|
+
x="710.44189"
|
1039
|
+
y="436.49182">API</tspan></text>
|
1040
|
+
<path
|
1041
|
+
sodipodi:nodetypes="cc"
|
1042
|
+
inkscape:connector-curvature="0"
|
1043
|
+
id="path4906"
|
1044
|
+
d="m 687.24856,332.0005 0,41.65477"
|
1045
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Mend)" />
|
1046
|
+
<path
|
1047
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Mend)"
|
1048
|
+
d="m 727.24856,375.15527 0,-41.65477"
|
1049
|
+
id="path4908"
|
1050
|
+
inkscape:connector-curvature="0"
|
1051
|
+
sodipodi:nodetypes="cc" />
|
1052
|
+
</g>
|
1053
|
+
</svg>
|