rabbit-slide-kou-cross-2015 2015.01.29.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 +65 -0
- data/Rakefile +25 -0
- data/config.yaml +25 -0
- data/groonga.rab +151 -0
- data/images/groonga-logo.svg +118 -0
- data/images/mroonga-logo.svg +106 -0
- data/images/rroonga-logo.svg +117 -0
- data/pdf/cross-2015-groonga.pdf +0 -0
- data/self-introduction.pdf +0 -0
- data/self-introduction.svg +189 -0
- metadata +84 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: f210594f2b338b3e858b88dde1d01f7e9892832d
|
4
|
+
data.tar.gz: 95641f046051442797de353b0eed4dbcb3b2d0e2
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 3752a1cc9480c49cefc2e98e919db5d604269c6a3da90a8a7faf200b6949d38233af84c3979ba8a7fd6df2b33fc5296d2f451e44c6d35eb0691fa7aa6b04c9c9
|
7
|
+
data.tar.gz: f675514842358503a49244cec6fc729bffbe0edf7c3e05368c5746b48508cd481e0ef9a42d31ef6eafcae3a0d92f84797f60ad602e7857c67e3af36d23d272d8
|
data/.rabbit
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
groonga.rab
|
data/README.rd
ADDED
@@ -0,0 +1,65 @@
|
|
1
|
+
= Groongaの特徴
|
2
|
+
|
3
|
+
CROSS 2015のセッション「全文検索エンジン群雄割拠〜あなたが使うべきはどれだ!〜」でGroongaと他の全文検索エンジンとの違いの説明です。
|
4
|
+
|
5
|
+
== ライセンス
|
6
|
+
|
7
|
+
=== 画像
|
8
|
+
|
9
|
+
==== Groonga関連プロジェクトの画像
|
10
|
+
|
11
|
+
images/以下にある以下のファイル。
|
12
|
+
|
13
|
+
* groonga-logo.svg
|
14
|
+
* mroonga-logo.svg
|
15
|
+
* rroonga-logo.svg
|
16
|
+
|
17
|
+
CC BY-SA 3.0
|
18
|
+
|
19
|
+
原著作者名は以下の通りです。
|
20
|
+
|
21
|
+
* Groongaプロジェクト
|
22
|
+
|
23
|
+
==== Groonga関連プロジェクトの画像を使った画像
|
24
|
+
|
25
|
+
images/以下にある以下のファイル。
|
26
|
+
|
27
|
+
* self-introduction.svg
|
28
|
+
|
29
|
+
CC BY-SA 3.0
|
30
|
+
|
31
|
+
原著作者名は以下の通りです。
|
32
|
+
|
33
|
+
* Groongaプロジェクト
|
34
|
+
* 須藤功平(またはKouhei Sutou)
|
35
|
+
|
36
|
+
=== その他
|
37
|
+
|
38
|
+
上述以外のファイルです。
|
39
|
+
|
40
|
+
CC BY-SA 4.0
|
41
|
+
|
42
|
+
原著作者名は以下の通りです。
|
43
|
+
|
44
|
+
* 須藤功平(またはKouhei Sutou)
|
45
|
+
|
46
|
+
== 作者向け
|
47
|
+
|
48
|
+
=== 表示
|
49
|
+
|
50
|
+
rake
|
51
|
+
|
52
|
+
=== 公開
|
53
|
+
|
54
|
+
rake publish
|
55
|
+
|
56
|
+
== 閲覧者向け
|
57
|
+
|
58
|
+
=== インストール
|
59
|
+
|
60
|
+
gem install rabbit-slide-kou-cross-2015
|
61
|
+
|
62
|
+
=== 表示
|
63
|
+
|
64
|
+
rabbit rabbit-slide-kou-cross-2015.gem
|
65
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1,25 @@
|
|
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("*.svg")
|
9
|
+
spec.files += Dir.glob("images/*.svg")
|
10
|
+
# spec.files -= Dir.glob("private/**/*.*")
|
11
|
+
spec.add_runtime_dependency("rabbit-slide-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
|
19
|
+
|
20
|
+
rule ".pdf" => ".svg" do |task|
|
21
|
+
sh("inkscape", "--export-pdf", task.name, task.source)
|
22
|
+
end
|
23
|
+
|
24
|
+
desc "Generate self introduction slide"
|
25
|
+
task "self-introduction" => "self-introduction.pdf"
|
data/config.yaml
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
---
|
2
|
+
id: cross-2015
|
3
|
+
base_name: groonga
|
4
|
+
tags:
|
5
|
+
- rabbit
|
6
|
+
- full-text-search
|
7
|
+
- cross2015
|
8
|
+
- groonga
|
9
|
+
presentation_date: 2015-01-29
|
10
|
+
version: 2015.01.29.0
|
11
|
+
licenses:
|
12
|
+
- CC BY-SA 3.0
|
13
|
+
- CC BY-SA 4.0
|
14
|
+
slideshare_id:
|
15
|
+
speaker_deck_id:
|
16
|
+
ustream_id:
|
17
|
+
vimeo_id:
|
18
|
+
youtube_id:
|
19
|
+
author:
|
20
|
+
markup_language: :rd
|
21
|
+
name: Kouhei Sutou
|
22
|
+
email: kou@clear-code.com
|
23
|
+
rubygems_user: kou
|
24
|
+
slideshare_user: kou
|
25
|
+
speaker_deck_user: kou
|
data/groonga.rab
ADDED
@@ -0,0 +1,151 @@
|
|
1
|
+
= Groongaの\n特徴
|
2
|
+
|
3
|
+
: author
|
4
|
+
須藤功平
|
5
|
+
: institution
|
6
|
+
クリアコード
|
7
|
+
: content-source
|
8
|
+
CROSS 2015
|
9
|
+
: date
|
10
|
+
2015-01-29
|
11
|
+
: allotted-time
|
12
|
+
7m
|
13
|
+
: theme
|
14
|
+
groonga
|
15
|
+
|
16
|
+
= 他のエンジンとの違い
|
17
|
+
|
18
|
+
* ((*既存システムとの連携*))
|
19
|
+
* 毎月肉の日リリース
|
20
|
+
* Java free
|
21
|
+
|
22
|
+
= 連携例:Mroonga
|
23
|
+
|
24
|
+
# image
|
25
|
+
# src = images/mroonga-logo.svg
|
26
|
+
# relative_height = 50
|
27
|
+
|
28
|
+
* Mroonga(('note:(むるんが)')) =\n
|
29
|
+
MySQL + Groonga(('note:(ぐるんが)'))
|
30
|
+
|
31
|
+
= MySQLと連携するメリット
|
32
|
+
|
33
|
+
* SQLを使える
|
34
|
+
* クライアントライブラリーが充実
|
35
|
+
* 既存の知識を使える
|
36
|
+
* 運用ノウハウを使える
|
37
|
+
* レプリケーションの仕方
|
38
|
+
* メトリックスの取り方
|
39
|
+
|
40
|
+
= Mroognaで索引作成
|
41
|
+
|
42
|
+
# coderay sql
|
43
|
+
|
44
|
+
-- ストレージエンジンを変更
|
45
|
+
ALTER TABLE table ENGINE=Mroonga;
|
46
|
+
-- 全文検索用索引を作成
|
47
|
+
ALTER TABLE table
|
48
|
+
ADD FULLTEXT INDEX (column);
|
49
|
+
|
50
|
+
= Mroognaで全文検索
|
51
|
+
|
52
|
+
# coderay sql
|
53
|
+
|
54
|
+
SELECT * FROM table
|
55
|
+
WHERE MATCH (column)
|
56
|
+
AGAINST ("+単語1 +単語2"
|
57
|
+
IN BOOLEAN MODE);
|
58
|
+
|
59
|
+
= Mroongaの事例
|
60
|
+
|
61
|
+
* livedoor Blog\n
|
62
|
+
(('note:http://www.slideshare.net/kazeburo/mroonga-in-ablogservice'))
|
63
|
+
* Yahoo! Japanさんの社内\n
|
64
|
+
(('note:「全文検索エンジンGroongaを囲む夕べ5」で紹介'))
|
65
|
+
* GMOメディアさんの\n
|
66
|
+
各種サービス\n
|
67
|
+
(('note:http://tech.gmo-media.jp/post/95690476544/data-migration-from-tritonn-to-mroonga'))
|
68
|
+
|
69
|
+
= 連携例:groonga-httpd
|
70
|
+
|
71
|
+
* Groonga用HTTPサーバー =\n
|
72
|
+
nginx + Groonga
|
73
|
+
* nginxのモジュールとして実装
|
74
|
+
|
75
|
+
= nginxと連携するメリット
|
76
|
+
|
77
|
+
* nginx提供のHTTP機能を使える
|
78
|
+
* gzip圧縮・HTTPS・認証・…
|
79
|
+
* 運用ノウハウを使える
|
80
|
+
* 設定方法
|
81
|
+
* チューニング方法(('note:(例:ワーカー数の設定)'))
|
82
|
+
* 無停止アップグレード
|
83
|
+
|
84
|
+
= groonga-httpdの設定
|
85
|
+
|
86
|
+
http {
|
87
|
+
server {
|
88
|
+
location /d/ {
|
89
|
+
groonga on;
|
90
|
+
}
|
91
|
+
}
|
92
|
+
}
|
93
|
+
|
94
|
+
= 連携例:Rroonga
|
95
|
+
|
96
|
+
# image
|
97
|
+
# src = images/rroonga-logo.svg
|
98
|
+
# relative_height = 50
|
99
|
+
|
100
|
+
* Rroonga(('note:(るるんが)')) =\n
|
101
|
+
Ruby + Groonga
|
102
|
+
* SQLite3のような手軽さで全文検索\n
|
103
|
+
(('note:(サーバーではなく、ライブラリーとして利用)'))
|
104
|
+
|
105
|
+
= Rubyと連携するメリット
|
106
|
+
|
107
|
+
* Rubyとその周辺の機能を使える
|
108
|
+
* 書きやすい
|
109
|
+
* ライブラリーを使ってデータ加工
|
110
|
+
* サーバーがいらない
|
111
|
+
* 小規模なシステムを手早く構築可能
|
112
|
+
|
113
|
+
= Rroongaでデータ登録
|
114
|
+
|
115
|
+
# coderay ruby
|
116
|
+
|
117
|
+
table = Groonga["table"]
|
118
|
+
table.add("key",
|
119
|
+
:value1 => "value1",
|
120
|
+
:value2 => "value2")
|
121
|
+
|
122
|
+
= Rroongaで全文検索
|
123
|
+
|
124
|
+
# coderay ruby
|
125
|
+
|
126
|
+
records = table.select do |record|
|
127
|
+
(record.value1 =~ "単語1") &
|
128
|
+
(record.value2 =~ "単語2")
|
129
|
+
end
|
130
|
+
|
131
|
+
= Rroongaの事例
|
132
|
+
|
133
|
+
* クラウドワークスさん\n
|
134
|
+
(('note:社員名簿・日報の全文検索で利用'))
|
135
|
+
* Milkode(('note:(ソースコード検索エンジン)'))\n
|
136
|
+
(('note:http://milkode.ongaeshi.me/'))
|
137
|
+
* るりまサーチ\n
|
138
|
+
(('note:(Rubyのリファレンスマニュアル検索システム)'))\n
|
139
|
+
(('note:http://docs.ruby-lang.org/ja/search/'))
|
140
|
+
|
141
|
+
= 連携例:その他
|
142
|
+
|
143
|
+
* PGroonga(('note:(ぴーじーるんが)')) =\n
|
144
|
+
PostgreSQL + Groonga
|
145
|
+
* ROMA(('note:(Ruby製の分散KVS)'))
|
146
|
+
|
147
|
+
= 他のエンジンとの違い
|
148
|
+
|
149
|
+
* ((*既存システムとの連携*))
|
150
|
+
* 毎月肉の日リリース
|
151
|
+
* Java free
|
@@ -0,0 +1,118 @@
|
|
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:xlink="http://www.w3.org/1999/xlink"
|
11
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
13
|
+
width="232.17999"
|
14
|
+
height="73.112274"
|
15
|
+
id="svg3635"
|
16
|
+
version="1.1"
|
17
|
+
inkscape:version="0.48.1 r9760"
|
18
|
+
sodipodi:docname="新規ドキュメント 1">
|
19
|
+
<defs
|
20
|
+
id="defs3637">
|
21
|
+
<linearGradient
|
22
|
+
gradientTransform="translate(-419.62671,208.8676)"
|
23
|
+
id="SVGID_1_"
|
24
|
+
gradientUnits="userSpaceOnUse"
|
25
|
+
x1="223.6167"
|
26
|
+
y1="76.3564"
|
27
|
+
x2="223.6167"
|
28
|
+
y2="137.38029">
|
29
|
+
<stop
|
30
|
+
offset="0"
|
31
|
+
style="stop-color:#3FA9F5"
|
32
|
+
id="stop160" />
|
33
|
+
<stop
|
34
|
+
offset="1"
|
35
|
+
style="stop-color:#0071BC"
|
36
|
+
id="stop162" />
|
37
|
+
</linearGradient>
|
38
|
+
<linearGradient
|
39
|
+
inkscape:collect="always"
|
40
|
+
xlink:href="#SVGID_1_"
|
41
|
+
id="linearGradient3693"
|
42
|
+
gradientUnits="userSpaceOnUse"
|
43
|
+
gradientTransform="translate(-419.62671,208.8676)"
|
44
|
+
x1="223.6167"
|
45
|
+
y1="76.3564"
|
46
|
+
x2="223.6167"
|
47
|
+
y2="137.38029" />
|
48
|
+
</defs>
|
49
|
+
<sodipodi:namedview
|
50
|
+
id="base"
|
51
|
+
pagecolor="#ffffff"
|
52
|
+
bordercolor="#666666"
|
53
|
+
borderopacity="1.0"
|
54
|
+
inkscape:pageopacity="0"
|
55
|
+
inkscape:pageshadow="2"
|
56
|
+
inkscape:zoom="1.4"
|
57
|
+
inkscape:cx="202.10766"
|
58
|
+
inkscape:cy="3.8593771"
|
59
|
+
inkscape:document-units="px"
|
60
|
+
inkscape:current-layer="layer1"
|
61
|
+
showgrid="false"
|
62
|
+
fit-margin-top="5"
|
63
|
+
fit-margin-left="5"
|
64
|
+
fit-margin-right="5"
|
65
|
+
fit-margin-bottom="5"
|
66
|
+
inkscape:window-width="902"
|
67
|
+
inkscape:window-height="442"
|
68
|
+
inkscape:window-x="2411"
|
69
|
+
inkscape:window-y="568"
|
70
|
+
inkscape:window-maximized="0" />
|
71
|
+
<metadata
|
72
|
+
id="metadata3640">
|
73
|
+
<rdf:RDF>
|
74
|
+
<cc:Work
|
75
|
+
rdf:about="">
|
76
|
+
<dc:format>image/svg+xml</dc:format>
|
77
|
+
<dc:type
|
78
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
79
|
+
<dc:title></dc:title>
|
80
|
+
</cc:Work>
|
81
|
+
</rdf:RDF>
|
82
|
+
</metadata>
|
83
|
+
<g
|
84
|
+
inkscape:label="レイヤー 1"
|
85
|
+
inkscape:groupmode="layer"
|
86
|
+
id="layer1"
|
87
|
+
transform="translate(-229.62429,-318.66319)">
|
88
|
+
<g
|
89
|
+
id="g3685"
|
90
|
+
transform="translate(520,37.142857)">
|
91
|
+
<path
|
92
|
+
id="path149"
|
93
|
+
d="m -228.72771,306.3346 c -1.336,-0.29 -2.281,-0.448 -3.442,-0.448 -2.847,0 -5.33,0.831 -7.391,2.468 -0.091,0.06 -0.192,0.14 -0.303,0.245 -0.231,0.197 -0.452,0.406 -0.668,0.621 -1.478,1.314 -2.76,1.952 -2.76,-1.235 v -0.666 c 0,-0.404 -0.327,-0.732 -0.732,-0.732 h -2.101 c -0.198,0 -0.388,0.081 -0.525,0.223 -0.139,0.143 -0.212,0.335 -0.206,0.532 0.105,3.333 0.215,6.778 0.215,9.621 v 18.75 c 0,0.404 0.328,0.731 0.732,0.731 h 2.209 c 0.404,0 0.732,-0.328 0.732,-0.731 v -9.914 c 0,-1.37 0.107,-3.805 0.309,-4.813 1.569,-7.797 4.982,-11.588 10.435,-11.588 0.979,0 1.881,0.165 2.874,0.363 0.048,0.011 0.096,0.015 0.144,0.015 0.148,0 0.294,-0.045 0.417,-0.131 0.163,-0.113 0.273,-0.288 0.306,-0.484 l 0.323,-1.994 c 0.062,-0.384 -0.187,-0.752 -0.568,-0.833 z"
|
94
|
+
inkscape:connector-curvature="0" />
|
95
|
+
<path
|
96
|
+
id="path151"
|
97
|
+
d="m -139.68071,307.9266 c -2.512,-1.774 -5.292,-2.04 -6.726,-2.04 -2.91,0 -5.648,0.912 -7.822,2.495 -0.005,0.004 -0.01,0.005 -0.014,0.009 -1.004,0.648 -2.627,0.909 -2.618,-0.625 l 0,-0.021 c 0.002,-0.107 -0.003,-0.199 -0.013,-0.277 l -0.008,-0.182 c -0.019,-0.391 -0.34,-0.698 -0.731,-0.698 h -2.102 c -0.203,0 -0.396,0.084 -0.535,0.232 -0.138,0.148 -0.209,0.347 -0.195,0.549 0.152,2.28 0.214,4.171 0.214,6.524 v 21.821 c 0,0.404 0.328,0.731 0.731,0.731 h 2.209 c 0.404,0 0.732,-0.328 0.732,-0.731 v -17.511 c 0,-0.813 0.253,-1.761 0.49,-2.377 0.004,-0.008 0.006,-0.018 0.01,-0.026 1.043,-3.042 4.224,-6.12 8.417,-6.475 3.236,0.002 8.327,2.358 9.024,8.226 0.016,0.15 0.03,0.299 0.042,0.444 0.004,0.049 0.008,0.099 0.011,0.149 0.005,0.07 0.009,0.139 0.014,0.209 0.009,0.19 0.015,0.384 0.015,0.582 0,0.335 0.006,0.638 0.017,0.911 v 15.869 c 0,0.404 0.328,0.731 0.733,0.731 h 2.208 c 0.404,0 0.732,-0.328 0.732,-0.731 v -16.272 c 0,-5.375 -1.627,-9.248 -4.835,-11.516 z"
|
98
|
+
inkscape:connector-curvature="0" />
|
99
|
+
<path
|
100
|
+
id="path153"
|
101
|
+
d="m -63.456714,333.2686 c -0.133,-0.113 -0.301,-0.174 -0.473,-0.174 -0.04,0 -0.08,0.003 -0.12,0.01 -0.587,0.098 -0.965,0.098 -1.442,0.098 -1.147,0 -2.177,-0.335 -2.177,-4.387 v -9.913 c 0,-2.343 -0.179,-5.368 -1.583,-7.972 -1.822,-3.382 -5.181,-5.098 -9.978,-5.098 -2.475,0 -6.217,0.516 -9.99,2.974 -0.315,0.205 -0.422,0.615 -0.25,0.949 l 0.861,1.67 c 0.098,0.189 0.272,0.326 0.478,0.375 0.058,0.014 0.116,0.021 0.173,0.021 0.151,0 0.299,-0.047 0.424,-0.135 2.314,-1.639 5.186,-2.504 8.305,-2.504 3.995,0 6.004,1.854 7,3.939 l 0,0 c 1.004,2.221 -0.561,4.404 -2.285,4.584 -0.085,0.005 -0.17,0.008 -0.254,0.013 -0.014,0 -0.028,0.001 -0.042,0 -0.055,-10e-4 -0.101,0.003 -0.143,0.009 -10.978,0.626 -16.538,4.313 -16.538,10.98 0,2.027 0.803,4.057 2.202,5.569 1.233,1.333 3.56,2.921 7.635,2.921 3.471,0 6.271,-1.112 8.325,-2.472 0.061,-0.031 0.13,-0.076 0.211,-0.141 0.023,-0.017 0.042,-0.031 0.064,-0.048 0.128,-0.088 0.256,-0.177 0.378,-0.268 1.275,-0.825 1.969,-0.351 2.623,0.504 0.002,0.002 0.006,0.005 0.008,0.007 0.84,1.14 2.161,1.718 3.962,1.718 0.846,0 1.591,-0.094 2.344,-0.294 0.32,-0.085 0.543,-0.375 0.543,-0.707 v -1.67 c -0.002,-0.214 -0.097,-0.419 -0.261,-0.558 z m -18.252,0.527 c -3.042,0 -6.111,-1.723 -6.111,-5.572 0,-4.863 5.936,-6.58 12.167,-7.043 2.32,-0.043 4.097,2.162 4.311,4.575 v 0.989 c -0.062,0.647 -0.246,1.289 -0.568,1.888 -0.162,0.263 -0.356,0.556 -0.589,0.864 -0.04,0.047 -0.075,0.093 -0.103,0.134 -1.442,1.848 -4.223,4.165 -9.107,4.165 z"
|
102
|
+
inkscape:connector-curvature="0" />
|
103
|
+
<path
|
104
|
+
id="path155"
|
105
|
+
d="m -257.43671,306.5866 h -2.047 c -0.392,0 -0.715,0.311 -0.731,0.703 -0.065,1.618 -0.892,1.836 -2.704,0.766 -0.01,-0.006 -0.018,-0.014 -0.026,-0.019 -0.178,-0.119 -0.361,-0.231 -0.545,-0.339 -0.011,-0.007 -0.021,-0.012 -0.032,-0.02 -0.088,-0.059 -0.169,-0.104 -0.245,-0.14 -1.982,-1.096 -4.306,-1.65 -6.923,-1.65 -3.739,0 -7.428,1.548 -10.122,4.25 -2.083,2.087 -4.564,5.826 -4.564,11.784 0,3.818 1.347,7.413 3.792,10.122 2.594,2.875 6.234,4.458 10.249,4.458 3.11,0 5.514,-0.819 7.334,-1.897 0.004,-0.002 0.008,-0.003 0.012,-0.005 1.953,-0.873 3.601,-2.182 3.135,2.232 -0.875,5.678 -4.519,8.765 -10.482,8.765 -4.175,0 -7.31,-1.404 -9.204,-2.583 -0.117,-0.072 -0.251,-0.11 -0.387,-0.11 -0.061,0 -0.122,0.008 -0.182,0.023 -0.193,0.049 -0.358,0.176 -0.456,0.35 l -0.969,1.725 c -0.189,0.336 -0.085,0.761 0.237,0.972 2.852,1.863 6.909,2.975 10.853,2.975 2.691,0 9.293,-0.625 12.494,-6.412 1.384,-2.481 2.03,-5.968 2.03,-10.968 v -17.457 c 0,-2.474 0.07,-4.679 0.214,-6.738 0.014,-0.202 -0.057,-0.402 -0.195,-0.549 -0.139,-0.153 -0.333,-0.238 -0.536,-0.238 z m -16.892,26.028 c -0.605,-0.24 -7.609,-3.216 -7.013,-11.811 0.551,-7.946 5.723,-10.459 6.518,-10.798 1.278,-0.5 2.7,-0.769 4.241,-0.769 1.664,0 3.112,0.327 4.354,0.873 6.846,3.871 7.696,16.453 0.885,21.467 -1.592,0.999 -3.437,1.573 -5.346,1.573 -1.342,0 -2.552,-0.194 -3.639,-0.535 z"
|
106
|
+
inkscape:connector-curvature="0" />
|
107
|
+
<path
|
108
|
+
id="path157"
|
109
|
+
d="m -99.588714,306.5866 h -2.046996 c -0.393,0 -0.716,0.311 -0.731,0.703 -0.066,1.618 -0.892,1.836 -2.703,0.766 -0.009,-0.005 -0.018,-0.014 -0.027,-0.019 -0.178,-0.119 -0.362,-0.231 -0.546,-0.339 -0.011,-0.008 -0.02,-0.014 -0.031,-0.02 -0.087,-0.059 -0.168,-0.104 -0.244,-0.139 -1.982,-1.097 -4.307,-1.651 -6.924,-1.651 -3.739,0 -7.429,1.548 -10.122,4.25 -2.082,2.087 -4.564,5.826 -4.564,11.784 0,3.818 1.346,7.413 3.792,10.122 2.595,2.875 6.234,4.458 10.248,4.458 3.111,0 5.514,-0.819 7.335,-1.897 0.004,-0.002 0.007,-0.003 0.012,-0.005 1.954,-0.874 3.603,-2.183 3.135,2.233 -0.875,5.678 -4.519,8.764 -10.482,8.764 -4.175,0 -7.31,-1.404 -9.204,-2.583 -0.118,-0.072 -0.251,-0.11 -0.387,-0.11 -0.06,0 -0.122,0.008 -0.182,0.023 -0.193,0.049 -0.358,0.176 -0.456,0.35 l -0.97,1.725 c -0.189,0.336 -0.085,0.761 0.237,0.972 2.853,1.863 6.91,2.975 10.854,2.975 2.689,0 9.293,-0.625 12.493,-6.412 1.384996,-2.481 2.030996,-5.968 2.030996,-10.968 v -17.457 c 0,-2.474 0.07,-4.679 0.214,-6.738 0.014,-0.202 -0.057,-0.402 -0.195,-0.549 -0.139,-0.153 -0.332,-0.238 -0.536,-0.238 z m -16.891996,26.028 c -0.605,-0.24 -7.609,-3.216 -7.013,-11.811 0.551,-7.94 5.716,-10.455 6.517,-10.798 1.278,-0.5 2.701,-0.769 4.242,-0.769 1.665,0 3.113,0.327 4.354,0.873 6.845,3.871 7.696,16.453 0.884,21.467 -1.592,1 -3.436,1.573 -5.345,1.573 -1.343,0 -2.553,-0.194 -3.639,-0.535 z"
|
110
|
+
inkscape:connector-curvature="0" />
|
111
|
+
<path
|
112
|
+
id="path164"
|
113
|
+
d="m -198.36371,292.3616 c -2.337,2.336 -4.109,5.342 -5.032,8.654 -6.076,-0.093 -12.171,2.273 -17.007,7.11 -8.142,8.141 -10.674,22.913 0.667,34.253 9.542,9.543 23.793,9.687 33.145,0.333 4.421,-4.424 7.236,-10.506 7.297,-16.94 3.14,-0.835 6.125,-2.507 8.67,-5.049 6.956,-6.959 9.086,-18.919 -0.311,-28.318 -7.833,-7.83 -19.626,-7.847 -27.429,-0.043 z m 25.622,20.422 c -1.335,1.338 -3.045,2.324 -4.932,2.864 -3.027,0.867 -4.657,0.777 -5.698,2.515 -1.041,1.735 -0.926,1.94 -0.88,5.194 0.056,3.689 -1.333,7.513 -4.813,10.995 -5.32,5.318 -15.14,6.504 -22.366,-0.721 -5.693,-5.694 -8.365,-15.278 -0.778,-22.865 2.816,-2.813 6.866,-4.477 11.124,-4.402 2.961,0.053 3.306,0.161 5.212,-0.704 1.909,-0.869 1.082,-2.799 2.222,-6.205 0.556,-1.66 1.545,-3.294 3.092,-4.844 4.126,-4.126 11.721,-5.072 17.285,0.491 4.533,4.535 6.455,11.759 0.532,17.682 z"
|
114
|
+
inkscape:connector-curvature="0"
|
115
|
+
style="fill:url(#linearGradient3693)" />
|
116
|
+
</g>
|
117
|
+
</g>
|
118
|
+
</svg>
|
@@ -0,0 +1,106 @@
|
|
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="247.32675"
|
13
|
+
height="73.113281"
|
14
|
+
id="svg4429"
|
15
|
+
version="1.1"
|
16
|
+
inkscape:version="0.48.1 r9760"
|
17
|
+
sodipodi:docname="新規ドキュメント 7">
|
18
|
+
<defs
|
19
|
+
id="defs4431">
|
20
|
+
<linearGradient
|
21
|
+
gradientTransform="translate(405.03952,235.75369)"
|
22
|
+
id="SVGID_2_"
|
23
|
+
gradientUnits="userSpaceOnUse"
|
24
|
+
x1="223.6167"
|
25
|
+
y1="166.2236"
|
26
|
+
x2="223.6167"
|
27
|
+
y2="228.2177">
|
28
|
+
<stop
|
29
|
+
offset="0"
|
30
|
+
style="stop-color:#F8BB5E"
|
31
|
+
id="stop3925" />
|
32
|
+
<stop
|
33
|
+
offset="1"
|
34
|
+
style="stop-color:#FF931E"
|
35
|
+
id="stop3927" />
|
36
|
+
</linearGradient>
|
37
|
+
</defs>
|
38
|
+
<sodipodi:namedview
|
39
|
+
id="base"
|
40
|
+
pagecolor="#ffffff"
|
41
|
+
bordercolor="#666666"
|
42
|
+
borderopacity="1.0"
|
43
|
+
inkscape:pageopacity="0.0"
|
44
|
+
inkscape:pageshadow="2"
|
45
|
+
inkscape:zoom="1.4"
|
46
|
+
inkscape:cx="-17.227243"
|
47
|
+
inkscape:cy="76.496767"
|
48
|
+
inkscape:document-units="px"
|
49
|
+
inkscape:current-layer="layer1"
|
50
|
+
showgrid="false"
|
51
|
+
fit-margin-top="5"
|
52
|
+
fit-margin-left="5.1"
|
53
|
+
fit-margin-right="5"
|
54
|
+
fit-margin-bottom="5"
|
55
|
+
inkscape:window-width="902"
|
56
|
+
inkscape:window-height="442"
|
57
|
+
inkscape:window-x="2109"
|
58
|
+
inkscape:window-y="329"
|
59
|
+
inkscape:window-maximized="0" />
|
60
|
+
<metadata
|
61
|
+
id="metadata4434">
|
62
|
+
<rdf:RDF>
|
63
|
+
<cc:Work
|
64
|
+
rdf:about="">
|
65
|
+
<dc:format>image/svg+xml</dc:format>
|
66
|
+
<dc:type
|
67
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
68
|
+
<dc:title></dc:title>
|
69
|
+
</cc:Work>
|
70
|
+
</rdf:RDF>
|
71
|
+
</metadata>
|
72
|
+
<g
|
73
|
+
inkscape:label="レイヤー 1"
|
74
|
+
inkscape:groupmode="layer"
|
75
|
+
id="layer1"
|
76
|
+
transform="translate(-519.14376,-395.80554)">
|
77
|
+
<g
|
78
|
+
id="g4460">
|
79
|
+
<path
|
80
|
+
id="path3916"
|
81
|
+
d="m 595.93852,420.61969 c -1.336,-0.291 -2.281,-0.448 -3.442,-0.448 -2.847,0 -5.33,0.831 -7.391,2.466 -0.091,0.062 -0.192,0.14 -0.303,0.247 -0.231,0.196 -0.452,0.406 -0.668,0.621 -1.478,1.313 -2.76,1.951 -2.76,-1.236 v -0.666 c 0,-0.405 -0.327,-0.732 -0.732,-0.732 h -2.101 c -0.198,0 -0.388,0.08 -0.525,0.223 -0.139,0.142 -0.212,0.334 -0.206,0.532 0.105,3.332 0.215,6.777 0.215,9.621 v 18.749 c 0,0.405 0.328,0.732 0.732,0.732 h 2.209 c 0.404,0 0.732,-0.327 0.732,-0.732 v -9.913 c 0,-1.37 0.107,-3.805 0.309,-4.813 1.569,-7.797 4.982,-11.588 10.435,-11.588 0.979,0 1.881,0.164 2.874,0.362 0.048,0.01 0.096,0.015 0.144,0.015 0.148,0 0.294,-0.045 0.417,-0.131 0.163,-0.112 0.273,-0.288 0.306,-0.484 l 0.323,-1.994 c 0.062,-0.383 -0.187,-0.749 -0.568,-0.831 z"
|
82
|
+
inkscape:connector-curvature="0" />
|
83
|
+
<path
|
84
|
+
id="path3918"
|
85
|
+
d="m 684.98552,422.21169 c -2.512,-1.776 -5.292,-2.04 -6.726,-2.04 -2.91,0 -5.648,0.912 -7.822,2.495 -0.005,0.003 -0.01,0.004 -0.014,0.008 -1.004,0.649 -2.627,0.91 -2.618,-0.625 l 0,-0.022 c 0.002,-0.105 -0.003,-0.197 -0.013,-0.276 l -0.008,-0.182 c -0.019,-0.391 -0.34,-0.698 -0.731,-0.698 h -2.102 c -0.203,0 -0.396,0.083 -0.535,0.231 -0.138,0.148 -0.209,0.347 -0.195,0.55 0.152,2.28 0.214,4.171 0.214,6.524 v 21.82 c 0,0.405 0.328,0.732 0.731,0.732 h 2.209 c 0.404,0 0.732,-0.327 0.732,-0.732 v -17.51 c 0,-0.813 0.253,-1.762 0.49,-2.378 0.004,-0.009 0.006,-0.016 0.01,-0.024 1.043,-3.043 4.224,-6.121 8.417,-6.475 3.236,0.002 8.327,2.358 9.024,8.226 0.016,0.15 0.03,0.299 0.042,0.443 0.004,0.049 0.008,0.099 0.011,0.149 0.005,0.07 0.009,0.14 0.014,0.208 0.009,0.192 0.015,0.386 0.015,0.583 0,0.335 0.006,0.637 0.017,0.91 v 15.868 c 0,0.405 0.328,0.732 0.733,0.732 h 2.208 c 0.404,0 0.732,-0.327 0.732,-0.732 v -16.271 c 0,-5.372 -1.627,-9.246 -4.835,-11.514 z"
|
86
|
+
inkscape:connector-curvature="0" />
|
87
|
+
<path
|
88
|
+
id="path3920"
|
89
|
+
d="m 761.20952,447.55369 c -0.133,-0.113 -0.301,-0.173 -0.473,-0.173 -0.04,0 -0.08,0.003 -0.12,0.01 -0.587,0.098 -0.965,0.098 -1.442,0.098 -1.147,0 -2.177,-0.336 -2.177,-4.387 v -9.913 c 0,-2.343 -0.179,-5.368 -1.583,-7.971 -1.822,-3.384 -5.181,-5.1 -9.978,-5.1 -2.475,0 -6.217,0.516 -9.99,2.975 -0.315,0.205 -0.422,0.615 -0.25,0.949 l 0.861,1.669 c 0.098,0.189 0.272,0.326 0.478,0.376 0.058,0.015 0.116,0.021 0.173,0.021 0.151,0 0.299,-0.046 0.424,-0.135 2.314,-1.639 5.186,-2.506 8.305,-2.506 3.995,0 6.004,1.854 7,3.94 v 0 c 1.004,2.22 -0.561,4.403 -2.285,4.584 -0.085,0.004 -0.17,0.008 -0.254,0.013 -0.014,-0.001 -0.028,10e-4 -0.042,0 -0.055,-0.001 -0.101,10e-4 -0.143,0.009 -10.978,0.626 -16.538,4.313 -16.538,10.98 0,2.028 0.803,4.057 2.202,5.568 1.233,1.334 3.56,2.922 7.635,2.922 3.471,0 6.271,-1.111 8.325,-2.472 0.061,-0.032 0.13,-0.077 0.211,-0.141 0.023,-0.018 0.042,-0.031 0.064,-0.048 0.128,-0.089 0.256,-0.177 0.378,-0.268 1.275,-0.824 1.969,-0.351 2.623,0.503 0.002,0.003 0.006,0.005 0.008,0.008 0.84,1.141 2.161,1.717 3.962,1.717 0.846,0 1.591,-0.093 2.344,-0.293 0.32,-0.085 0.543,-0.375 0.543,-0.708 v -1.669 c -0.002,-0.214 -0.097,-0.419 -0.261,-0.558 z m -18.252,0.527 c -3.042,0 -6.111,-1.722 -6.111,-5.572 0,-4.862 5.936,-6.58 12.167,-7.043 2.32,-0.043 4.097,2.161 4.311,4.575 v 0.989 c -0.062,0.647 -0.246,1.289 -0.568,1.888 -0.162,0.265 -0.356,0.557 -0.589,0.865 -0.04,0.048 -0.075,0.093 -0.103,0.133 -1.442,1.847 -4.223,4.165 -9.107,4.165 z"
|
90
|
+
inkscape:connector-curvature="0" />
|
91
|
+
<path
|
92
|
+
id="path3922"
|
93
|
+
d="m 725.07752,420.87269 h -2.047 c -0.393,0 -0.716,0.31 -0.731,0.703 -0.066,1.619 -0.892,1.836 -2.703,0.765 -0.009,-0.005 -0.018,-0.013 -0.027,-0.02 -0.178,-0.118 -0.362,-0.23 -0.546,-0.337 -0.011,-0.008 -0.02,-0.014 -0.031,-0.021 -0.087,-0.057 -0.168,-0.103 -0.244,-0.139 -1.982,-1.096 -4.307,-1.65 -6.924,-1.65 -3.739,0 -7.429,1.548 -10.122,4.249 -2.082,2.087 -4.564,5.827 -4.564,11.784 0,3.818 1.346,7.413 3.792,10.121 2.595,2.875 6.234,4.458 10.248,4.458 3.111,0 5.514,-0.819 7.335,-1.896 0.004,-0.002 0.007,-0.003 0.012,-0.005 1.954,-0.875 3.603,-2.184 3.135,2.233 -0.875,5.677 -4.519,8.764 -10.482,8.764 -4.175,0 -7.31,-1.405 -9.204,-2.584 -0.118,-0.073 -0.251,-0.109 -0.387,-0.109 -0.06,0 -0.122,0.006 -0.182,0.023 -0.193,0.049 -0.358,0.176 -0.456,0.35 l -0.97,1.724 c -0.189,0.336 -0.085,0.76 0.237,0.972 2.853,1.862 6.91,2.974 10.854,2.974 2.689,0 9.293,-0.625 12.493,-6.412 1.385,-2.481 2.031,-5.968 2.031,-10.969 v -17.456 c 0,-2.474 0.07,-4.678 0.214,-6.738 0.014,-0.203 -0.057,-0.401 -0.195,-0.55 -0.139,-0.151 -0.332,-0.234 -0.536,-0.234 z m -16.892,26.027 c -0.605,-0.24 -7.609,-3.216 -7.013,-11.812 0.551,-7.939 5.716,-10.454 6.517,-10.798 1.278,-0.5 2.701,-0.768 4.242,-0.768 1.665,0 3.113,0.327 4.354,0.873 6.845,3.871 7.696,16.452 0.884,21.467 -1.592,1 -3.436,1.572 -5.345,1.572 -1.343,0 -2.553,-0.192 -3.639,-0.534 z"
|
94
|
+
inkscape:connector-curvature="0" />
|
95
|
+
<path
|
96
|
+
id="path3929"
|
97
|
+
d="m 626.30252,406.64669 c -2.337,2.337 -4.109,5.343 -5.032,8.655 -6.076,-0.094 -12.171,2.272 -17.007,7.11 -8.142,8.141 -10.674,22.912 0.667,34.253 9.542,9.543 23.793,9.687 33.145,0.334 4.421,-4.424 7.236,-10.507 7.297,-16.941 3.14,-0.836 6.125,-2.507 8.67,-5.049 6.956,-6.959 9.086,-18.919 -0.311,-28.318 -7.833,-7.831 -19.626,-7.848 -27.429,-0.044 z m 25.622,20.423 c -1.335,1.336 -3.045,2.324 -4.932,2.862 -3.027,0.868 -4.657,0.778 -5.698,2.515 -1.041,1.736 -0.926,1.941 -0.88,5.194 0.056,3.689 -1.333,7.514 -4.813,10.996 -5.32,5.318 -15.14,6.504 -22.366,-0.722 -5.693,-5.695 -8.365,-15.278 -0.778,-22.865 2.816,-2.813 6.866,-4.477 11.124,-4.401 2.961,0.051 3.306,0.16 5.212,-0.704 1.909,-0.87 1.082,-2.8 2.222,-6.205 0.556,-1.66 1.545,-3.295 3.092,-4.844 4.126,-4.126 11.721,-5.072 17.285,0.49 4.533,4.535 6.455,11.76 0.532,17.684 z"
|
98
|
+
inkscape:connector-curvature="0"
|
99
|
+
style="fill:url(#SVGID_2_)" />
|
100
|
+
<path
|
101
|
+
id="path3965"
|
102
|
+
d="m 557.08552,420.17169 c -3.604,0 -5.78,1.055 -7.803,2.675 0,10e-4 -10e-4,10e-4 -10e-4,0.002 -2.14,1.482 -3.267,1.373 -5.033,0.007 -0.008,-0.007 -0.015,-0.009 -0.023,-0.015 -1.786,-1.704 -4.111,-2.669 -6.696,-2.669 -2.797,0 -5.133,0.737 -7.113,2.275 -0.042,0.029 -0.085,0.062 -0.129,0.102 -0.878,0.785 -2.285,1.01 -2.444,-0.238 l -0.015,-0.316 c 0,-0.087 -0.002,-0.167 -0.011,-0.234 l -0.009,-0.19 c -0.019,-0.391 -0.341,-0.697 -0.732,-0.697 h -2.1 c -0.204,0 -0.397,0.083 -0.536,0.232 -0.139,0.149 -0.209,0.347 -0.195,0.55 0.148,2.118 0.214,4.13 0.214,6.523 v 21.82 c 0,0.405 0.328,0.732 0.732,0.732 h 2.209 c 0.404,0 0.732,-0.327 0.732,-0.732 v -17.457 c 0,-1.086 0.264,-1.975 0.486,-2.529 1.183,-3.106 4.304,-6.436 8.371,-6.436 4.432,0 7.296,3.476 7.296,8.857 v 17.564 c 0,0.405 0.328,0.732 0.732,0.732 h 2.21 c 0.404,0 0.732,-0.327 0.732,-0.732 v -18.317 c 0,-1.093 0.288,-1.956 0.54,-2.585 1.117,-2.651 4.065,-5.519 7.887,-5.519 4.983,0 7.727,3.681 7.727,10.366 v 16.055 c 0,0.405 0.328,0.732 0.732,0.732 h 2.209 c 0.403,0 0.731,-0.327 0.731,-0.732 v -16.001 c 0,-12.828 -8.189,-13.825 -10.7,-13.825 z"
|
103
|
+
inkscape:connector-curvature="0" />
|
104
|
+
</g>
|
105
|
+
</g>
|
106
|
+
</svg>
|
@@ -0,0 +1,117 @@
|
|
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:xlink="http://www.w3.org/1999/xlink"
|
11
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
13
|
+
width="219.71234"
|
14
|
+
height="73.111534"
|
15
|
+
id="svg4616"
|
16
|
+
version="1.1"
|
17
|
+
inkscape:version="0.48.1 r9760"
|
18
|
+
sodipodi:docname="新規ドキュメント 13">
|
19
|
+
<defs
|
20
|
+
id="defs4618">
|
21
|
+
<linearGradient
|
22
|
+
gradientTransform="translate(279.85374,93.654148)"
|
23
|
+
id="SVGID_4_"
|
24
|
+
gradientUnits="userSpaceOnUse"
|
25
|
+
x1="223.6167"
|
26
|
+
y1="340.418"
|
27
|
+
x2="223.6167"
|
28
|
+
y2="403.2283">
|
29
|
+
<stop
|
30
|
+
offset="0"
|
31
|
+
style="stop-color:#AE0000"
|
32
|
+
id="stop3959" />
|
33
|
+
<stop
|
34
|
+
offset="1"
|
35
|
+
style="stop-color:#740000"
|
36
|
+
id="stop3961" />
|
37
|
+
</linearGradient>
|
38
|
+
<linearGradient
|
39
|
+
inkscape:collect="always"
|
40
|
+
xlink:href="#SVGID_4_"
|
41
|
+
id="linearGradient4655"
|
42
|
+
gradientUnits="userSpaceOnUse"
|
43
|
+
gradientTransform="translate(279.85374,93.654148)"
|
44
|
+
x1="223.6167"
|
45
|
+
y1="340.418"
|
46
|
+
x2="223.6167"
|
47
|
+
y2="403.2283" />
|
48
|
+
</defs>
|
49
|
+
<sodipodi:namedview
|
50
|
+
id="base"
|
51
|
+
pagecolor="#ffffff"
|
52
|
+
bordercolor="#666666"
|
53
|
+
borderopacity="1.0"
|
54
|
+
inkscape:pageopacity="0.0"
|
55
|
+
inkscape:pageshadow="2"
|
56
|
+
inkscape:zoom="0.35"
|
57
|
+
inkscape:cx="-46.572402"
|
58
|
+
inkscape:cy="-9.1585194"
|
59
|
+
inkscape:document-units="px"
|
60
|
+
inkscape:current-layer="layer1"
|
61
|
+
showgrid="false"
|
62
|
+
fit-margin-top="5"
|
63
|
+
fit-margin-left="5"
|
64
|
+
fit-margin-bottom="5"
|
65
|
+
fit-margin-right="5"
|
66
|
+
inkscape:window-width="902"
|
67
|
+
inkscape:window-height="442"
|
68
|
+
inkscape:window-x="2065"
|
69
|
+
inkscape:window-y="414"
|
70
|
+
inkscape:window-maximized="0" />
|
71
|
+
<metadata
|
72
|
+
id="metadata4621">
|
73
|
+
<rdf:RDF>
|
74
|
+
<cc:Work
|
75
|
+
rdf:about="">
|
76
|
+
<dc:format>image/svg+xml</dc:format>
|
77
|
+
<dc:type
|
78
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
79
|
+
<dc:title></dc:title>
|
80
|
+
</cc:Work>
|
81
|
+
</rdf:RDF>
|
82
|
+
</metadata>
|
83
|
+
<g
|
84
|
+
inkscape:label="レイヤー 1"
|
85
|
+
inkscape:groupmode="layer"
|
86
|
+
id="layer1"
|
87
|
+
transform="translate(-421.5724,-430.09213)">
|
88
|
+
<g
|
89
|
+
id="g4647">
|
90
|
+
<path
|
91
|
+
id="path3948"
|
92
|
+
d="m 470.75274,454.90715 c -1.336,-0.292 -2.281,-0.45 -3.442,-0.45 -2.847,0 -5.33,0.832 -7.391,2.467 -0.091,0.062 -0.192,0.142 -0.303,0.247 -0.231,0.197 -0.452,0.405 -0.668,0.621 -1.478,1.313 -2.76,1.95 -2.76,-1.235 v -0.666 c 0,-0.404 -0.327,-0.733 -0.732,-0.733 h -2.101 c -0.198,0 -0.388,0.081 -0.525,0.223 -0.139,0.143 -0.212,0.335 -0.206,0.533 0.105,3.333 0.215,6.778 0.215,9.622 v 18.749 c 0,0.403 0.328,0.731 0.732,0.731 h 2.209 c 0.404,0 0.732,-0.328 0.732,-0.731 v -9.913 c 0,-1.371 0.107,-3.805 0.309,-4.813 1.569,-7.798 4.982,-11.59 10.435,-11.59 0.979,0 1.881,0.164 2.874,0.364 0.048,0.01 0.096,0.013 0.144,0.013 0.148,0 0.294,-0.043 0.417,-0.129 0.163,-0.113 0.273,-0.288 0.306,-0.485 l 0.323,-1.993 c 0.062,-0.386 -0.187,-0.752 -0.568,-0.832 z"
|
93
|
+
inkscape:connector-curvature="0" />
|
94
|
+
<path
|
95
|
+
id="path3950"
|
96
|
+
d="m 444.70074,454.90715 c -1.337,-0.292 -2.281,-0.45 -3.442,-0.45 -2.847,0 -5.33,0.832 -7.391,2.467 -0.092,0.062 -0.192,0.142 -0.303,0.247 -0.231,0.197 -0.452,0.405 -0.668,0.621 -1.478,1.313 -2.759,1.95 -2.759,-1.235 v -0.666 c 0,-0.404 -0.327,-0.733 -0.732,-0.733 h -2.101 c -0.198,0 -0.388,0.081 -0.526,0.223 -0.138,0.143 -0.212,0.335 -0.206,0.533 0.105,3.333 0.215,6.778 0.215,9.622 v 18.749 c 0,0.403 0.327,0.731 0.732,0.731 h 2.209 c 0.404,0 0.732,-0.328 0.732,-0.731 v -9.913 c 0,-1.371 0.107,-3.805 0.309,-4.813 1.569,-7.798 4.983,-11.59 10.435,-11.59 0.979,0 1.881,0.164 2.874,0.364 0.048,0.01 0.096,0.013 0.144,0.013 0.148,0 0.294,-0.043 0.417,-0.129 0.163,-0.113 0.273,-0.288 0.306,-0.485 l 0.323,-1.993 c 0.061,-0.386 -0.188,-0.752 -0.568,-0.832 z"
|
97
|
+
inkscape:connector-curvature="0" />
|
98
|
+
<path
|
99
|
+
id="path3952"
|
100
|
+
d="m 559.79974,456.49815 c -2.512,-1.775 -5.292,-2.041 -6.726,-2.041 -2.91,0 -5.648,0.913 -7.822,2.496 -0.005,0.003 -0.01,0.003 -0.014,0.007 -1.004,0.649 -2.627,0.911 -2.618,-0.624 l 0,-0.021 c 0.002,-0.107 -0.003,-0.198 -0.013,-0.278 l -0.008,-0.181 c -0.019,-0.391 -0.34,-0.699 -0.731,-0.699 h -2.102 c -0.203,0 -0.396,0.086 -0.535,0.232 -0.138,0.148 -0.209,0.348 -0.195,0.549 0.152,2.282 0.214,4.17 0.214,6.526 v 21.819 c 0,0.403 0.328,0.731 0.731,0.731 h 2.209 c 0.404,0 0.732,-0.328 0.732,-0.731 v -17.51 c 0,-0.815 0.253,-1.763 0.49,-2.378 0.004,-0.01 0.006,-0.016 0.01,-0.026 1.043,-3.042 4.224,-6.118 8.417,-6.474 3.236,0 8.327,2.358 9.024,8.226 0.016,0.15 0.03,0.299 0.042,0.443 0.004,0.05 0.008,0.099 0.011,0.148 0.005,0.07 0.009,0.14 0.014,0.209 0.009,0.19 0.015,0.386 0.015,0.584 0,0.332 0.006,0.636 0.017,0.909 v 15.868 c 0,0.403 0.328,0.731 0.733,0.731 h 2.208 c 0.404,0 0.732,-0.328 0.732,-0.731 v -16.271 c 0,-5.372 -1.627,-9.246 -4.835,-11.513 z"
|
101
|
+
inkscape:connector-curvature="0" />
|
102
|
+
<path
|
103
|
+
id="path3954"
|
104
|
+
d="m 636.02374,481.83915 c -0.133,-0.111 -0.301,-0.173 -0.473,-0.173 -0.04,0 -0.08,0.005 -0.12,0.01 -0.587,0.097 -0.965,0.097 -1.442,0.097 -1.147,0 -2.177,-0.334 -2.177,-4.386 v -9.913 c 0,-2.344 -0.179,-5.367 -1.583,-7.971 -1.822,-3.384 -5.181,-5.099 -9.978,-5.099 -2.475,0 -6.217,0.516 -9.99,2.974 -0.315,0.205 -0.422,0.614 -0.25,0.949 l 0.861,1.67 c 0.098,0.188 0.272,0.325 0.478,0.377 0.058,0.013 0.116,0.019 0.173,0.019 0.151,0 0.299,-0.046 0.424,-0.133 2.314,-1.64 5.186,-2.506 8.305,-2.506 3.995,0 6.004,1.854 7,3.939 0,0 0,0 0,0.002 1.004,2.219 -0.561,4.402 -2.285,4.584 -0.085,0.005 -0.17,0.006 -0.254,0.012 -0.014,0 -0.028,0 -0.042,0 -0.055,-0.002 -0.101,0.002 -0.143,0.009 -10.978,0.628 -16.538,4.312 -16.538,10.98 0,2.028 0.803,4.057 2.202,5.569 1.233,1.332 3.56,2.92 7.635,2.92 3.471,0 6.271,-1.111 8.325,-2.472 0.061,-0.032 0.13,-0.076 0.211,-0.141 0.023,-0.017 0.042,-0.029 0.064,-0.047 0.128,-0.09 0.256,-0.18 0.378,-0.269 1.275,-0.825 1.969,-0.351 2.623,0.502 0.002,0.005 0.006,0.006 0.008,0.008 0.84,1.143 2.161,1.72 3.962,1.72 0.846,0 1.591,-0.094 2.344,-0.296 0.32,-0.086 0.543,-0.374 0.543,-0.706 v -1.672 c -0.002,-0.215 -0.097,-0.417 -0.261,-0.557 z m -18.252,0.529 c -3.042,0 -6.111,-1.725 -6.111,-5.573 0,-4.862 5.936,-6.58 12.167,-7.043 2.32,-0.043 4.097,2.161 4.311,4.575 v 0.988 c -0.062,0.647 -0.246,1.289 -0.568,1.889 -0.162,0.263 -0.356,0.556 -0.589,0.864 -0.04,0.048 -0.075,0.092 -0.103,0.134 -1.442,1.848 -4.223,4.166 -9.107,4.166 z"
|
105
|
+
inkscape:connector-curvature="0" />
|
106
|
+
<path
|
107
|
+
id="path3956"
|
108
|
+
d="m 599.89174,455.15715 h -2.047 c -0.393,0 -0.716,0.31 -0.731,0.704 -0.066,1.617 -0.892,1.835 -2.703,0.766 -0.009,-0.008 -0.018,-0.013 -0.027,-0.021 -0.178,-0.118 -0.362,-0.229 -0.546,-0.339 -0.011,-0.005 -0.02,-0.011 -0.031,-0.019 -0.087,-0.059 -0.168,-0.102 -0.244,-0.139 -1.982,-1.097 -4.307,-1.652 -6.924,-1.652 -3.739,0 -7.429,1.549 -10.122,4.249 -2.082,2.089 -4.564,5.828 -4.564,11.785 0,3.816 1.346,7.414 3.792,10.122 2.595,2.873 6.234,4.458 10.248,4.458 3.111,0 5.514,-0.822 7.335,-1.898 0.004,0 0.007,-0.003 0.012,-0.004 1.954,-0.874 3.603,-2.182 3.135,2.233 -0.875,5.677 -4.519,8.764 -10.482,8.764 -4.175,0 -7.31,-1.406 -9.204,-2.583 -0.118,-0.073 -0.251,-0.111 -0.387,-0.111 -0.06,0 -0.122,0.008 -0.182,0.022 -0.193,0.051 -0.358,0.177 -0.456,0.351 l -0.97,1.725 c -0.189,0.335 -0.085,0.763 0.237,0.972 2.853,1.864 6.91,2.976 10.854,2.976 2.689,0 9.293,-0.624 12.493,-6.413 1.385,-2.482 2.031,-5.968 2.031,-10.968 v -17.456 c 0,-2.476 0.07,-4.679 0.214,-6.738 0.014,-0.203 -0.057,-0.401 -0.195,-0.55 -0.139,-0.15 -0.332,-0.236 -0.536,-0.236 z m -16.892,26.028 c -0.605,-0.24 -7.609,-3.216 -7.013,-11.813 0.551,-7.939 5.716,-10.454 6.517,-10.796 1.278,-0.501 2.701,-0.77 4.242,-0.77 1.665,0 3.113,0.327 4.354,0.871 6.845,3.873 7.696,16.454 0.884,21.469 -1.592,1 -3.436,1.573 -5.345,1.573 -1.343,10e-4 -2.553,-0.192 -3.639,-0.534 z"
|
109
|
+
inkscape:connector-curvature="0" />
|
110
|
+
<path
|
111
|
+
id="path3963"
|
112
|
+
d="m 501.11674,440.93115 c -2.337,2.339 -4.109,5.342 -5.032,8.657 -6.076,-0.094 -12.171,2.271 -17.007,7.109 -8.142,8.141 -10.674,22.911 0.667,34.251 9.542,9.545 23.793,9.688 33.145,0.336 4.421,-4.424 7.236,-10.507 7.297,-16.94 3.14,-0.837 6.125,-2.508 8.67,-5.049 6.956,-6.959 9.086,-18.919 -0.311,-28.318 -7.833,-7.83 -19.626,-7.848 -27.429,-0.046 z m 25.622,20.423 c -1.335,1.339 -3.045,2.324 -4.932,2.864 -3.027,0.868 -4.657,0.776 -5.698,2.515 -1.041,1.736 -0.926,1.941 -0.88,5.193 0.056,3.689 -1.333,7.515 -4.813,10.996 -5.32,5.317 -15.14,6.504 -22.366,-0.722 -5.693,-5.693 -8.365,-15.278 -0.778,-22.864 2.816,-2.814 6.866,-4.479 11.124,-4.403 2.961,0.053 3.306,0.161 5.212,-0.703 1.909,-0.868 1.082,-2.799 2.222,-6.205 0.556,-1.66 1.545,-3.294 3.092,-4.844 4.126,-4.125 11.721,-5.071 17.285,0.491 4.533,4.535 6.455,11.76 0.532,17.682 z"
|
113
|
+
inkscape:connector-curvature="0"
|
114
|
+
style="fill:url(#linearGradient4655)" />
|
115
|
+
</g>
|
116
|
+
</g>
|
117
|
+
</svg>
|
Binary file
|
Binary file
|
@@ -0,0 +1,189 @@
|
|
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:xlink="http://www.w3.org/1999/xlink"
|
11
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
13
|
+
width="800"
|
14
|
+
height="600"
|
15
|
+
id="svg2"
|
16
|
+
version="1.1"
|
17
|
+
inkscape:version="0.48.5 r10040"
|
18
|
+
sodipodi:docname="self-introduction.svg">
|
19
|
+
<defs
|
20
|
+
id="defs4">
|
21
|
+
<linearGradient
|
22
|
+
y2="137.38029"
|
23
|
+
x2="223.6167"
|
24
|
+
y1="76.3564"
|
25
|
+
x1="223.6167"
|
26
|
+
gradientTransform="translate(-419.62671,208.8676)"
|
27
|
+
gradientUnits="userSpaceOnUse"
|
28
|
+
id="linearGradient3693"
|
29
|
+
xlink:href="#SVGID_1_"
|
30
|
+
inkscape:collect="always" />
|
31
|
+
<linearGradient
|
32
|
+
y2="137.38029"
|
33
|
+
x2="223.6167"
|
34
|
+
y1="76.3564"
|
35
|
+
x1="223.6167"
|
36
|
+
gradientUnits="userSpaceOnUse"
|
37
|
+
id="SVGID_1_"
|
38
|
+
gradientTransform="translate(-419.62671,208.8676)">
|
39
|
+
<stop
|
40
|
+
id="stop160"
|
41
|
+
style="stop-color:#3FA9F5"
|
42
|
+
offset="0" />
|
43
|
+
<stop
|
44
|
+
id="stop162"
|
45
|
+
style="stop-color:#0071BC"
|
46
|
+
offset="1" />
|
47
|
+
</linearGradient>
|
48
|
+
</defs>
|
49
|
+
<sodipodi:namedview
|
50
|
+
id="base"
|
51
|
+
pagecolor="#ffffff"
|
52
|
+
bordercolor="#666666"
|
53
|
+
borderopacity="1.0"
|
54
|
+
inkscape:pageopacity="1"
|
55
|
+
inkscape:pageshadow="2"
|
56
|
+
inkscape:zoom="0.49497475"
|
57
|
+
inkscape:cx="397.20588"
|
58
|
+
inkscape:cy="427.1505"
|
59
|
+
inkscape:document-units="px"
|
60
|
+
inkscape:current-layer="layer1"
|
61
|
+
showgrid="false"
|
62
|
+
inkscape:window-width="1282"
|
63
|
+
inkscape:window-height="894"
|
64
|
+
inkscape:window-x="2104"
|
65
|
+
inkscape:window-y="27"
|
66
|
+
inkscape:window-maximized="0" />
|
67
|
+
<metadata
|
68
|
+
id="metadata7">
|
69
|
+
<rdf:RDF>
|
70
|
+
<cc:Work
|
71
|
+
rdf:about="">
|
72
|
+
<dc:format>image/svg+xml</dc:format>
|
73
|
+
<dc:type
|
74
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
75
|
+
<dc:title />
|
76
|
+
</cc:Work>
|
77
|
+
</rdf:RDF>
|
78
|
+
</metadata>
|
79
|
+
<g
|
80
|
+
inkscape:label="レイヤー 1"
|
81
|
+
inkscape:groupmode="layer"
|
82
|
+
id="layer1"
|
83
|
+
transform="translate(0,-452.36218)">
|
84
|
+
<g
|
85
|
+
transform="matrix(3.336176,0,0,3.336176,-752.85525,-609.00193)"
|
86
|
+
id="layer1-6"
|
87
|
+
inkscape:label="レイヤー 1">
|
88
|
+
<g
|
89
|
+
transform="translate(520,37.142857)"
|
90
|
+
id="g3685">
|
91
|
+
<path
|
92
|
+
inkscape:connector-curvature="0"
|
93
|
+
d="m -228.72771,306.3346 c -1.336,-0.29 -2.281,-0.448 -3.442,-0.448 -2.847,0 -5.33,0.831 -7.391,2.468 -0.091,0.06 -0.192,0.14 -0.303,0.245 -0.231,0.197 -0.452,0.406 -0.668,0.621 -1.478,1.314 -2.76,1.952 -2.76,-1.235 v -0.666 c 0,-0.404 -0.327,-0.732 -0.732,-0.732 h -2.101 c -0.198,0 -0.388,0.081 -0.525,0.223 -0.139,0.143 -0.212,0.335 -0.206,0.532 0.105,3.333 0.215,6.778 0.215,9.621 v 18.75 c 0,0.404 0.328,0.731 0.732,0.731 h 2.209 c 0.404,0 0.732,-0.328 0.732,-0.731 v -9.914 c 0,-1.37 0.107,-3.805 0.309,-4.813 1.569,-7.797 4.982,-11.588 10.435,-11.588 0.979,0 1.881,0.165 2.874,0.363 0.048,0.011 0.096,0.015 0.144,0.015 0.148,0 0.294,-0.045 0.417,-0.131 0.163,-0.113 0.273,-0.288 0.306,-0.484 l 0.323,-1.994 c 0.062,-0.384 -0.187,-0.752 -0.568,-0.833 z"
|
94
|
+
id="path149" />
|
95
|
+
<path
|
96
|
+
inkscape:connector-curvature="0"
|
97
|
+
d="m -139.68071,307.9266 c -2.512,-1.774 -5.292,-2.04 -6.726,-2.04 -2.91,0 -5.648,0.912 -7.822,2.495 -0.005,0.004 -0.01,0.005 -0.014,0.009 -1.004,0.648 -2.627,0.909 -2.618,-0.625 l 0,-0.021 c 0.002,-0.107 -0.003,-0.199 -0.013,-0.277 l -0.008,-0.182 c -0.019,-0.391 -0.34,-0.698 -0.731,-0.698 h -2.102 c -0.203,0 -0.396,0.084 -0.535,0.232 -0.138,0.148 -0.209,0.347 -0.195,0.549 0.152,2.28 0.214,4.171 0.214,6.524 v 21.821 c 0,0.404 0.328,0.731 0.731,0.731 h 2.209 c 0.404,0 0.732,-0.328 0.732,-0.731 v -17.511 c 0,-0.813 0.253,-1.761 0.49,-2.377 0.004,-0.008 0.006,-0.018 0.01,-0.026 1.043,-3.042 4.224,-6.12 8.417,-6.475 3.236,0.002 8.327,2.358 9.024,8.226 0.016,0.15 0.03,0.299 0.042,0.444 0.004,0.049 0.008,0.099 0.011,0.149 0.005,0.07 0.009,0.139 0.014,0.209 0.009,0.19 0.015,0.384 0.015,0.582 0,0.335 0.006,0.638 0.017,0.911 v 15.869 c 0,0.404 0.328,0.731 0.733,0.731 h 2.208 c 0.404,0 0.732,-0.328 0.732,-0.731 v -16.272 c 0,-5.375 -1.627,-9.248 -4.835,-11.516 z"
|
98
|
+
id="path151" />
|
99
|
+
<path
|
100
|
+
inkscape:connector-curvature="0"
|
101
|
+
d="m -63.456714,333.2686 c -0.133,-0.113 -0.301,-0.174 -0.473,-0.174 -0.04,0 -0.08,0.003 -0.12,0.01 -0.587,0.098 -0.965,0.098 -1.442,0.098 -1.147,0 -2.177,-0.335 -2.177,-4.387 v -9.913 c 0,-2.343 -0.179,-5.368 -1.583,-7.972 -1.822,-3.382 -5.181,-5.098 -9.978,-5.098 -2.475,0 -6.217,0.516 -9.99,2.974 -0.315,0.205 -0.422,0.615 -0.25,0.949 l 0.861,1.67 c 0.098,0.189 0.272,0.326 0.478,0.375 0.058,0.014 0.116,0.021 0.173,0.021 0.151,0 0.299,-0.047 0.424,-0.135 2.314,-1.639 5.186,-2.504 8.305,-2.504 3.995,0 6.004,1.854 7,3.939 l 0,0 c 1.004,2.221 -0.561,4.404 -2.285,4.584 -0.085,0.005 -0.17,0.008 -0.254,0.013 -0.014,0 -0.028,0.001 -0.042,0 -0.055,-10e-4 -0.101,0.003 -0.143,0.009 -10.978,0.626 -16.538,4.313 -16.538,10.98 0,2.027 0.803,4.057 2.202,5.569 1.233,1.333 3.56,2.921 7.635,2.921 3.471,0 6.271,-1.112 8.325,-2.472 0.061,-0.031 0.13,-0.076 0.211,-0.141 0.023,-0.017 0.042,-0.031 0.064,-0.048 0.128,-0.088 0.256,-0.177 0.378,-0.268 1.275,-0.825 1.969,-0.351 2.623,0.504 0.002,0.002 0.006,0.005 0.008,0.007 0.84,1.14 2.161,1.718 3.962,1.718 0.846,0 1.591,-0.094 2.344,-0.294 0.32,-0.085 0.543,-0.375 0.543,-0.707 v -1.67 c -0.002,-0.214 -0.097,-0.419 -0.261,-0.558 z m -18.252,0.527 c -3.042,0 -6.111,-1.723 -6.111,-5.572 0,-4.863 5.936,-6.58 12.167,-7.043 2.32,-0.043 4.097,2.162 4.311,4.575 v 0.989 c -0.062,0.647 -0.246,1.289 -0.568,1.888 -0.162,0.263 -0.356,0.556 -0.589,0.864 -0.04,0.047 -0.075,0.093 -0.103,0.134 -1.442,1.848 -4.223,4.165 -9.107,4.165 z"
|
102
|
+
id="path153" />
|
103
|
+
<path
|
104
|
+
inkscape:connector-curvature="0"
|
105
|
+
d="m -257.43671,306.5866 h -2.047 c -0.392,0 -0.715,0.311 -0.731,0.703 -0.065,1.618 -0.892,1.836 -2.704,0.766 -0.01,-0.006 -0.018,-0.014 -0.026,-0.019 -0.178,-0.119 -0.361,-0.231 -0.545,-0.339 -0.011,-0.007 -0.021,-0.012 -0.032,-0.02 -0.088,-0.059 -0.169,-0.104 -0.245,-0.14 -1.982,-1.096 -4.306,-1.65 -6.923,-1.65 -3.739,0 -7.428,1.548 -10.122,4.25 -2.083,2.087 -4.564,5.826 -4.564,11.784 0,3.818 1.347,7.413 3.792,10.122 2.594,2.875 6.234,4.458 10.249,4.458 3.11,0 5.514,-0.819 7.334,-1.897 0.004,-0.002 0.008,-0.003 0.012,-0.005 1.953,-0.873 3.601,-2.182 3.135,2.232 -0.875,5.678 -4.519,8.765 -10.482,8.765 -4.175,0 -7.31,-1.404 -9.204,-2.583 -0.117,-0.072 -0.251,-0.11 -0.387,-0.11 -0.061,0 -0.122,0.008 -0.182,0.023 -0.193,0.049 -0.358,0.176 -0.456,0.35 l -0.969,1.725 c -0.189,0.336 -0.085,0.761 0.237,0.972 2.852,1.863 6.909,2.975 10.853,2.975 2.691,0 9.293,-0.625 12.494,-6.412 1.384,-2.481 2.03,-5.968 2.03,-10.968 v -17.457 c 0,-2.474 0.07,-4.679 0.214,-6.738 0.014,-0.202 -0.057,-0.402 -0.195,-0.549 -0.139,-0.153 -0.333,-0.238 -0.536,-0.238 z m -16.892,26.028 c -0.605,-0.24 -7.609,-3.216 -7.013,-11.811 0.551,-7.946 5.723,-10.459 6.518,-10.798 1.278,-0.5 2.7,-0.769 4.241,-0.769 1.664,0 3.112,0.327 4.354,0.873 6.846,3.871 7.696,16.453 0.885,21.467 -1.592,0.999 -3.437,1.573 -5.346,1.573 -1.342,0 -2.552,-0.194 -3.639,-0.535 z"
|
106
|
+
id="path155" />
|
107
|
+
<path
|
108
|
+
inkscape:connector-curvature="0"
|
109
|
+
d="m -99.588714,306.5866 h -2.046996 c -0.393,0 -0.716,0.311 -0.731,0.703 -0.066,1.618 -0.892,1.836 -2.703,0.766 -0.009,-0.005 -0.018,-0.014 -0.027,-0.019 -0.178,-0.119 -0.362,-0.231 -0.546,-0.339 -0.011,-0.008 -0.02,-0.014 -0.031,-0.02 -0.087,-0.059 -0.168,-0.104 -0.244,-0.139 -1.982,-1.097 -4.307,-1.651 -6.924,-1.651 -3.739,0 -7.429,1.548 -10.122,4.25 -2.082,2.087 -4.564,5.826 -4.564,11.784 0,3.818 1.346,7.413 3.792,10.122 2.595,2.875 6.234,4.458 10.248,4.458 3.111,0 5.514,-0.819 7.335,-1.897 0.004,-0.002 0.007,-0.003 0.012,-0.005 1.954,-0.874 3.603,-2.183 3.135,2.233 -0.875,5.678 -4.519,8.764 -10.482,8.764 -4.175,0 -7.31,-1.404 -9.204,-2.583 -0.118,-0.072 -0.251,-0.11 -0.387,-0.11 -0.06,0 -0.122,0.008 -0.182,0.023 -0.193,0.049 -0.358,0.176 -0.456,0.35 l -0.97,1.725 c -0.189,0.336 -0.085,0.761 0.237,0.972 2.853,1.863 6.91,2.975 10.854,2.975 2.689,0 9.293,-0.625 12.493,-6.412 1.384996,-2.481 2.030996,-5.968 2.030996,-10.968 v -17.457 c 0,-2.474 0.07,-4.679 0.214,-6.738 0.014,-0.202 -0.057,-0.402 -0.195,-0.549 -0.139,-0.153 -0.332,-0.238 -0.536,-0.238 z m -16.891996,26.028 c -0.605,-0.24 -7.609,-3.216 -7.013,-11.811 0.551,-7.94 5.716,-10.455 6.517,-10.798 1.278,-0.5 2.701,-0.769 4.242,-0.769 1.665,0 3.113,0.327 4.354,0.873 6.845,3.871 7.696,16.453 0.884,21.467 -1.592,1 -3.436,1.573 -5.345,1.573 -1.343,0 -2.553,-0.194 -3.639,-0.535 z"
|
110
|
+
id="path157" />
|
111
|
+
<path
|
112
|
+
style="fill:url(#linearGradient3693)"
|
113
|
+
inkscape:connector-curvature="0"
|
114
|
+
d="m -198.36371,292.3616 c -2.337,2.336 -4.109,5.342 -5.032,8.654 -6.076,-0.093 -12.171,2.273 -17.007,7.11 -8.142,8.141 -10.674,22.913 0.667,34.253 9.542,9.543 23.793,9.687 33.145,0.333 4.421,-4.424 7.236,-10.506 7.297,-16.94 3.14,-0.835 6.125,-2.507 8.67,-5.049 6.956,-6.959 9.086,-18.919 -0.311,-28.318 -7.833,-7.83 -19.626,-7.847 -27.429,-0.043 z m 25.622,20.422 c -1.335,1.338 -3.045,2.324 -4.932,2.864 -3.027,0.867 -4.657,0.777 -5.698,2.515 -1.041,1.735 -0.926,1.94 -0.88,5.194 0.056,3.689 -1.333,7.513 -4.813,10.995 -5.32,5.318 -15.14,6.504 -22.366,-0.721 -5.693,-5.694 -8.365,-15.278 -0.778,-22.865 2.816,-2.813 6.866,-4.477 11.124,-4.402 2.961,0.053 3.306,0.161 5.212,-0.704 1.909,-0.869 1.082,-2.799 2.222,-6.205 0.556,-1.66 1.545,-3.294 3.092,-4.844 4.126,-4.126 11.721,-5.072 17.285,0.491 4.533,4.535 6.455,11.759 0.532,17.682 z"
|
115
|
+
id="path164" />
|
116
|
+
</g>
|
117
|
+
</g>
|
118
|
+
<text
|
119
|
+
xml:space="preserve"
|
120
|
+
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
|
121
|
+
x="552.85712"
|
122
|
+
y="704.36218"
|
123
|
+
id="text3102"
|
124
|
+
sodipodi:linespacing="125%"><tspan
|
125
|
+
sodipodi:role="line"
|
126
|
+
id="tspan3104"
|
127
|
+
x="552.85712"
|
128
|
+
y="704.36218">by Groongaプロジェクト</tspan></text>
|
129
|
+
<text
|
130
|
+
xml:space="preserve"
|
131
|
+
style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
|
132
|
+
x="35.714287"
|
133
|
+
y="763.38574"
|
134
|
+
id="text3106"
|
135
|
+
sodipodi:linespacing="125%"><tspan
|
136
|
+
sodipodi:role="line"
|
137
|
+
id="tspan3108"
|
138
|
+
x="35.714287"
|
139
|
+
y="763.38574">須藤功平</tspan></text>
|
140
|
+
<text
|
141
|
+
sodipodi:linespacing="125%"
|
142
|
+
id="text3110"
|
143
|
+
y="847.21936"
|
144
|
+
x="101.33267"
|
145
|
+
style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
|
146
|
+
xml:space="preserve"><tspan
|
147
|
+
y="847.21936"
|
148
|
+
x="101.33267"
|
149
|
+
id="tspan3112"
|
150
|
+
sodipodi:role="line">Groonga開発者の1人</tspan></text>
|
151
|
+
<text
|
152
|
+
sodipodi:linespacing="125%"
|
153
|
+
id="text3118"
|
154
|
+
y="914.36218"
|
155
|
+
x="102.61267"
|
156
|
+
style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
|
157
|
+
xml:space="preserve"><tspan
|
158
|
+
y="914.36218"
|
159
|
+
x="102.61267"
|
160
|
+
id="tspan3120"
|
161
|
+
sodipodi:role="line">Mroonga・Rroonga・Droonga・PGroongaなど</tspan><tspan
|
162
|
+
y="958.06146"
|
163
|
+
x="102.61267"
|
164
|
+
sodipodi:role="line"
|
165
|
+
id="tspan3142">関連プロダクトの開発にも関わっている</tspan></text>
|
166
|
+
<text
|
167
|
+
sodipodi:linespacing="125%"
|
168
|
+
id="text3134"
|
169
|
+
y="751.91699"
|
170
|
+
x="284.85715"
|
171
|
+
style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
|
172
|
+
xml:space="preserve"><tspan
|
173
|
+
y="751.91699"
|
174
|
+
x="284.85715"
|
175
|
+
sodipodi:role="line"
|
176
|
+
id="tspan3138">(株式会社クリアコード)</tspan></text>
|
177
|
+
<text
|
178
|
+
xml:space="preserve"
|
179
|
+
style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
|
180
|
+
x="82.173927"
|
181
|
+
y="1015.917"
|
182
|
+
id="text3144"
|
183
|
+
sodipodi:linespacing="125%"><tspan
|
184
|
+
id="tspan3146"
|
185
|
+
sodipodi:role="line"
|
186
|
+
x="82.173927"
|
187
|
+
y="1015.917">(「リーダブルコード」の「解説」の著者)</tspan></text>
|
188
|
+
</g>
|
189
|
+
</svg>
|
metadata
ADDED
@@ -0,0 +1,84 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rabbit-slide-kou-cross-2015
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2015.01.29.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Kouhei Sutou
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-01-28 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rabbit
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 2.0.2
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 2.0.2
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rabbit-slide-groonga
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
description: CROSS 2015のセッション「全文検索エンジン群雄割拠〜あなたが使うべきはどれだ!〜」でGroongaと他の全文検索エンジンとの違いの説明です。
|
42
|
+
email:
|
43
|
+
- kou@clear-code.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- ".rabbit"
|
49
|
+
- README.rd
|
50
|
+
- Rakefile
|
51
|
+
- config.yaml
|
52
|
+
- groonga.rab
|
53
|
+
- images/groonga-logo.svg
|
54
|
+
- images/mroonga-logo.svg
|
55
|
+
- images/rroonga-logo.svg
|
56
|
+
- pdf/cross-2015-groonga.pdf
|
57
|
+
- self-introduction.pdf
|
58
|
+
- self-introduction.svg
|
59
|
+
homepage: http://slide.rabbit-shocker.org/authors/kou/cross-2015/
|
60
|
+
licenses:
|
61
|
+
- CC BY-SA 3.0
|
62
|
+
- CC BY-SA 4.0
|
63
|
+
metadata: {}
|
64
|
+
post_install_message:
|
65
|
+
rdoc_options: []
|
66
|
+
require_paths:
|
67
|
+
- lib
|
68
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
69
|
+
requirements:
|
70
|
+
- - ">="
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
version: '0'
|
73
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
74
|
+
requirements:
|
75
|
+
- - ">="
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '0'
|
78
|
+
requirements: []
|
79
|
+
rubyforge_project:
|
80
|
+
rubygems_version: 2.2.2
|
81
|
+
signing_key:
|
82
|
+
specification_version: 4
|
83
|
+
summary: Groongaの特徴
|
84
|
+
test_files: []
|