rabbit-slide-kou-nagoya-rubykaigi-03 2017.2.11.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (39) hide show
  1. checksums.yaml +7 -0
  2. data/.rabbit +1 -0
  3. data/README.rd +81 -0
  4. data/Rakefile +18 -0
  5. data/apache-arrow-gi-based-ruby-bindings.rab +766 -0
  6. data/config.yaml +27 -0
  7. data/data/hebi.svg +1108 -0
  8. data/data/hebi_blue.svg +1110 -0
  9. data/data/panda_kotatsu.svg +78 -0
  10. data/examples/data/bow.data.tf.filtered +0 -0
  11. data/examples/data/bow.data.tf.raw +0 -0
  12. data/examples/data/bow.data.tfidf.filtered +0 -0
  13. data/examples/data/bow.data.tfidf.raw +0 -0
  14. data/examples/data/bow.metadata.tf.filtered +1 -0
  15. data/examples/data/bow.metadata.tf.raw +1 -0
  16. data/examples/data/bow.metadata.tfidf.filtered +1 -0
  17. data/examples/data/bow.metadata.tfidf.raw +1 -0
  18. data/examples/data/topics.tf.filtered +0 -0
  19. data/examples/data/topics.tf.raw +0 -0
  20. data/examples/data/topics.tfidf.filtered +0 -0
  21. data/examples/data/topics.tfidf.raw +0 -0
  22. data/examples/estimate-topics.py +72 -0
  23. data/examples/raw-show-related-terms.rb +38 -0
  24. data/examples/raw-write-bow.rb +124 -0
  25. data/examples/read.rb +30 -0
  26. data/examples/run.sh +33 -0
  27. data/examples/show-related-terms.rb +39 -0
  28. data/examples/show.sh +20 -0
  29. data/examples/write-bow.rb +96 -0
  30. data/examples/write.py +15 -0
  31. data/images/clear-code.svg +161 -0
  32. data/images/copy-data-between-system.png +0 -0
  33. data/images/groonga-logo.svg +118 -0
  34. data/images/rroonga-logo.svg +117 -0
  35. data/images/share-data-between-system.png +0 -0
  36. data/images/system-with-ruby.png +0 -0
  37. data/pdf/nagoya-rubykaigi-03-apache-arrow-gi-based-ruby-bindings.pdf +0 -0
  38. data/theme.rb +6 -0
  39. metadata +113 -0
@@ -0,0 +1,20 @@
1
+ #!/bin/sh
2
+
3
+ export LD_LIBRARY_PATH=/tmp/local/lib:$LD_LIBRARY_PATH
4
+ export GI_TYPELIB_PATH=/tmp/local/lib/girepository-1.0:$GI_TYPELIB_PATH
5
+
6
+ base_dir=$(dirname $0)
7
+ data_dir=$base_dir/data
8
+
9
+ for score in tf tfidf; do
10
+ for filter in raw filtered; do
11
+ echo "$score/$filter"
12
+ ruby \
13
+ -I ~/work/ruby/rarrow/lib \
14
+ -I ~/work/ruby/rroonga/lib \
15
+ -I ~/work/ruby/rroonga/ext/groonga \
16
+ $base_dir/show-related-terms.rb \
17
+ ~/work/ruby/rurema-search/groonga-database/bitclust.db \
18
+ $data_dir/topics.$score.$filter
19
+ done
20
+ done
@@ -0,0 +1,96 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "groonga"
4
+ require "arrow"
5
+
6
+ db_path = ARGV[0]
7
+ metadata_output_path = ARGV[1]
8
+ data_output_path = ARGV[2]
9
+ use_tfidf = (ARGV[3] != "tf")
10
+ use_filter = (ARGV[4] != "raw")
11
+
12
+ Groonga::Database.open(db_path)
13
+
14
+ Groonga::Schema.define do |schema|
15
+ schema.create_table("Words",
16
+ :type => :patricia_trie,
17
+ :key_type => "ShortText",
18
+ :default_tokenizer => "TokenMecab",
19
+ :normalizer => "NormalizerAuto") do |table|
20
+ table.index("Entries.document")
21
+ end
22
+ end
23
+
24
+ entries = Groonga["Entries"]
25
+ total_n_entries = entries.size
26
+ target_entries = entries.select do |record|
27
+ if use_filter
28
+ (record.version == "2.4.0") -
29
+ (record.document =~ "@todo")
30
+ else
31
+ record.version == "2.4.0"
32
+ end
33
+ end
34
+ n_entries = target_entries.size
35
+ too_many_threshold = n_entries * 0.9
36
+ too_less_threshold = n_entries * 0.01
37
+
38
+ bow = {}
39
+ index = Groonga["Words.Entries_document"]
40
+ max_term_id = 0
41
+ index.table.open_cursor(:order_by => :id) do |table_cursor|
42
+ table_cursor.each do |term|
43
+ n_match_documents = index.estimate_size(term)
44
+ # p [term.key, n_match_documents, (n_match_documents / n_entries.to_f)]
45
+ if use_filter
46
+ if n_match_documents <= too_less_threshold
47
+ p [:skip, :too_less, term.key, n_match_documents]
48
+ next
49
+ end
50
+ if n_match_documents >= too_many_threshold
51
+ p [:skip, :too_many, term.key, n_match_documents]
52
+ next
53
+ end
54
+ end
55
+ max_term_id = [max_term_id, term.id].max
56
+ df = Math.log(total_n_entries.to_f / n_match_documents)
57
+ index.open_cursor(term.id,
58
+ :with_position => false) do |index_cursor|
59
+ index_cursor.each(:reuse_posting_object => true) do |posting|
60
+ if target_entries[posting.record_id].nil?
61
+ next
62
+ end
63
+ bow[posting.record_id] ||= []
64
+ if use_tfidf
65
+ score = posting.term_frequency / df
66
+ else
67
+ score = posting.term_frequency
68
+ end
69
+ bow[posting.record_id] << [posting.term_id, score]
70
+ end
71
+ end
72
+ end
73
+ end
74
+
75
+ File.open(metadata_output_path, "w") do |metadata_file|
76
+ metadata_file.puts({
77
+ "n_documents" => bow.size,
78
+ "n_features" => max_term_id,
79
+ }.to_json)
80
+ end
81
+
82
+ Arrow::IO::FileOutputStream.open(data_output_path, false) do |output_stream|
83
+ term_id_field = Arrow::Field.new("term_id", :uint32)
84
+ score_field = Arrow::Field.new("score", :double)
85
+ schema = Arrow::Schema.new([term_id_field, score_field])
86
+ Arrow::IPC::StreamWriter.open(output_stream, schema) do |writer|
87
+ bow.each do |record_id, words|
88
+ term_ids = Arrow::UInt32Array.new(words.collect(&:first))
89
+ scores = Arrow::DoubleArray.new(words.collect(&:last))
90
+ record_batch = Arrow::RecordBatch.new(schema,
91
+ words.size,
92
+ [term_ids, scores])
93
+ writer.write_record_batch(record_batch)
94
+ end
95
+ end
96
+ end
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env python
2
+
3
+ import sys
4
+ sys.path.append("/home/kou/work/cpp/arrow/python")
5
+
6
+ import pandas as pd
7
+ import numpy as np
8
+ import pyarrow as A
9
+
10
+ df = pd.DataFrame({'foo': [1.5, 3.0]})
11
+ batch = A.RecordBatch.from_pandas(df)
12
+ sink = A.io.OSFile("/tmp/xxx", "w")
13
+ writer = A.ipc.FileWriter(sink, batch.schema)
14
+ writer.write_batch(batch)
15
+ writer.close()
@@ -0,0 +1,161 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
4
+ <!ENTITY ns_svg "http://www.w3.org/2000/svg">
5
+ <!ENTITY ns_xlink "http://www.w3.org/1999/xlink">
6
+ ]>
7
+ <svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="393.746" height="64.625"
8
+ viewBox="0 0 393.746 64.625" overflow="visible" enable-background="new 0 0 393.746 64.625" xml:space="preserve">
9
+ <g>
10
+ <linearGradient id="XMLID_20_" gradientUnits="userSpaceOnUse" x1="179.6377" y1="37.624" x2="179.6377" y2="108.6575">
11
+ <stop offset="0" style="stop-color:#008CFF"/>
12
+ <stop offset="1" style="stop-color:#FFFFFF"/>
13
+ </linearGradient>
14
+ <path fill="url(#XMLID_20_)" d="M175.268,37.465c-0.168-3.205,0.662-6.361,2.492-9.469c1.828-3.107,5.662-4.773,11.498-4.996v-5.25
15
+ c-4.145,0.057-7.289,0.893-9.43,2.508c-2.143,1.615-3.787,3.773-4.936,6.473v-7.855h-4.875V63h5.25V37.465z"/>
16
+ <linearGradient id="XMLID_21_" gradientUnits="userSpaceOnUse" x1="142.4102" y1="37.626" x2="142.4102" y2="108.6586">
17
+ <stop offset="0" style="stop-color:#008CFF"/>
18
+ <stop offset="1" style="stop-color:#FFFFFF"/>
19
+ </linearGradient>
20
+ <path fill="url(#XMLID_21_)" d="M152.643,33.941c-0.07,0.672-0.242,1.188-0.52,1.551c-1.15,0.84-3.303,1.391-6.459,1.656
21
+ s-6.563,0.699-10.223,1.301c-3.66,0.602-6.808,1.859-9.445,3.773c-2.637,1.916-4.012,4.957-4.123,9.121
22
+ c0.027,3.66,1.287,6.678,3.779,9.053s6.076,3.615,10.751,3.729c4.389-0.168,7.918-1.063,10.588-2.682
23
+ c2.668-1.619,4.688-3.211,6.059-4.775c-0.168,2.195,0.285,3.854,1.361,4.979s2.719,1.701,4.928,1.729
24
+ c1.033-0.057,1.844-0.141,2.432-0.25c0.586-0.111,0.979-0.166,1.174-0.166V59.25c-0.225,0-0.49,0.021-0.797,0.063
25
+ c-0.309,0.043-0.588,0.063-0.838,0.063c-1.326-0.027-2.217-0.246-2.672-0.656c-0.457-0.41-0.67-0.883-0.641-1.422V29.791
26
+ c0.027-3.232-1.27-6.02-3.891-8.361c-2.621-2.34-6.775-3.566-12.463-3.68c-6.094,0.168-10.542,1.693-13.351,4.58
27
+ s-4.197,6.127-4.17,9.725h5c0.082-2.602,1.074-4.865,2.973-6.791c1.899-1.926,5.166-2.93,9.8-3.014
28
+ c5.592,0.277,8.869,1.607,9.83,3.986c0.961,2.381,1.301,4.082,1.021,5.105C152.748,32.404,152.713,33.271,152.643,33.941z
29
+ M152.748,47.568c-0.168,3.727-1.793,6.66-4.875,8.801c-3.082,2.143-6.682,3.229-10.799,3.256
30
+ c-3.358-0.084-5.859-0.918-7.496-2.502c-1.637-1.582-2.455-3.467-2.455-5.654c0.055-2.766,0.986-4.807,2.793-6.121
31
+ s4.077-2.23,6.806-2.748c2.73-0.516,5.537-0.928,8.422-1.236c2.883-0.307,5.418-0.781,7.604-1.426V47.568z"/>
32
+ <linearGradient id="XMLID_22_" gradientUnits="userSpaceOnUse" x1="25.689" y1="37.625" x2="25.689" y2="108.6543">
33
+ <stop offset="0" style="stop-color:#008CFF"/>
34
+ <stop offset="1" style="stop-color:#FFFFFF"/>
35
+ </linearGradient>
36
+ <path fill="url(#XMLID_22_)" d="M27.327,64.625c8.059-0.309,14.08-2.654,18.068-7.041s5.982-9.234,5.982-14.543h-5.5
37
+ c-0.057,4.674-1.707,8.613-4.953,11.818s-7.695,4.877-13.348,5.016c-8.227-0.363-13.957-3.355-17.188-8.979
38
+ c-3.232-5.623-4.777-11.764-4.637-18.422c0.055-8.557,1.924-15.254,5.604-20.092S20.288,5.084,27.116,5
39
+ c6.338,0.254,10.953,1.969,13.844,5.148s4.32,6.34,4.293,9.477h5.625c0.027-4.51-1.855-8.838-5.646-12.984
40
+ C41.438,2.494,35.499,0.281,27.411,0C18.862,0.084,12.178,2.959,7.358,8.623s-7.271,13.531-7.355,23.6
41
+ c-0.086,8.748,2.023,16.252,6.326,22.51C10.629,60.992,17.629,64.289,27.327,64.625z"/>
42
+ <linearGradient id="XMLID_23_" gradientUnits="userSpaceOnUse" x1="64.1553" y1="37.624" x2="64.1553" y2="108.6556">
43
+ <stop offset="0" style="stop-color:#008CFF"/>
44
+ <stop offset="1" style="stop-color:#FFFFFF"/>
45
+ </linearGradient>
46
+ <rect x="61.655" y="1.75" fill="url(#XMLID_23_)" width="5" height="61.25"/>
47
+ <linearGradient id="XMLID_24_" gradientUnits="userSpaceOnUse" x1="95.7114" y1="37.626" x2="95.7114" y2="108.6586">
48
+ <stop offset="0" style="stop-color:#008CFF"/>
49
+ <stop offset="1" style="stop-color:#FFFFFF"/>
50
+ </linearGradient>
51
+ <path fill="url(#XMLID_24_)" d="M95.96,64.125c6.076-0.281,10.648-1.998,13.715-5.154s4.6-6.301,4.6-9.43h-5.125
52
+ c-0.029,2.445-1.174,4.744-3.436,6.896s-5.373,3.299-9.334,3.438c-5.107-0.168-8.846-2.002-11.217-5.504s-3.541-7.668-3.514-12.496
53
+ h33.25c0-4.883-0.453-8.795-1.359-11.74c-0.906-2.943-2.279-5.281-4.119-7.012c-1.063-1.166-2.678-2.332-4.844-3.498
54
+ c-2.168-1.166-4.984-1.791-8.449-1.875c-5.988,0.027-10.732,2.037-14.23,6.029c-3.5,3.992-5.291,9.783-5.373,17.375
55
+ c-0.057,6.094,1.434,11.383,4.471,15.867C84.031,61.506,89.019,63.873,95.96,64.125z M85.708,26.959
56
+ c2.482-3,5.871-4.568,10.168-4.709c4.451,0.084,7.832,1.578,10.141,4.48s3.479,6.617,3.508,11.145H81.9
57
+ C81.955,33.598,83.224,29.959,85.708,26.959z"/>
58
+ <linearGradient id="XMLID_25_" gradientUnits="userSpaceOnUse" x1="374.5576" y1="37.626" x2="374.5576" y2="108.6586">
59
+ <stop offset="0" style="stop-color:#008CFF"/>
60
+ <stop offset="1" style="stop-color:#FFFFFF"/>
61
+ </linearGradient>
62
+ <path fill="url(#XMLID_25_)" d="M392.387,30.135c-0.906-2.943-2.279-5.281-4.119-7.012c-1.063-1.166-2.678-2.332-4.844-3.498
63
+ c-2.168-1.166-4.984-1.791-8.449-1.875c-5.988,0.027-10.732,2.037-14.23,6.029c-3.5,3.992-5.291,9.783-5.373,17.375
64
+ c-0.057,6.094,1.434,11.383,4.471,15.867c3.035,4.484,8.023,6.852,14.965,7.104c6.076-0.281,10.648-1.998,13.715-5.154
65
+ s4.6-6.301,4.6-9.43h-5.125c-0.029,2.445-1.174,4.744-3.436,6.896s-5.373,3.299-9.334,3.438c-5.107-0.168-8.846-2.002-11.217-5.504
66
+ s-3.541-7.668-3.514-12.496h33.25C393.746,36.992,393.293,33.08,392.387,30.135z M360.746,37.875
67
+ c0.055-4.277,1.324-7.916,3.809-10.916c2.482-3,5.871-4.568,10.168-4.709c4.451,0.084,7.832,1.578,10.141,4.48
68
+ s3.479,6.617,3.508,11.145H360.746z"/>
69
+ <linearGradient id="XMLID_26_" gradientUnits="userSpaceOnUse" x1="325.7422" y1="37.6221" x2="325.7422" y2="108.6547">
70
+ <stop offset="0" style="stop-color:#008CFF"/>
71
+ <stop offset="1" style="stop-color:#FFFFFF"/>
72
+ </linearGradient>
73
+ <path fill="url(#XMLID_26_)" d="M340.742,26.563c-1.004-2.145-2.74-4.121-5.209-5.93s-5.654-2.77-9.557-2.883
74
+ c-6.898,0.141-12.004,2.381-15.313,6.721s-4.949,9.846-4.922,16.516c0.055,7.127,1.773,12.736,5.152,16.83s8.07,6.195,14.074,6.309
75
+ c4.238-0.113,7.621-1.014,10.145-2.701c2.523-1.689,4.4-3.666,5.629-5.93V63h5V1.75h-5V26.563z M336.967,55.227
76
+ c-2.711,3.043-6.375,4.551-10.99,4.523c-5.527-0.223-9.428-2.24-11.701-6.053c-2.273-3.811-3.369-8.02-3.283-12.627
77
+ c-0.057-5.34,1.107-9.777,3.492-13.311s6.342-5.369,11.869-5.51c4.754,0.057,8.395,1.727,10.926,5.008
78
+ c2.531,3.283,3.811,7.916,3.838,13.896C341.061,47.494,339.678,52.184,336.967,55.227z"/>
79
+ <linearGradient id="XMLID_27_" gradientUnits="userSpaceOnUse" x1="278.2129" y1="37.626" x2="278.2129" y2="108.6586">
80
+ <stop offset="0" style="stop-color:#008CFF"/>
81
+ <stop offset="1" style="stop-color:#FFFFFF"/>
82
+ </linearGradient>
83
+ <path fill="url(#XMLID_27_)" d="M278.195,17.75c-7.473,0.223-12.756,2.609-15.848,7.16s-4.596,9.881-4.512,15.992
84
+ c-0.111,6.094,1.371,11.424,4.449,15.992c3.078,4.57,8.381,6.979,15.91,7.23c7.803-0.309,13.188-2.807,16.152-7.502
85
+ s4.377-9.936,4.238-15.721c0.082-6.363-1.455-11.764-4.615-16.201S285.551,17.945,278.195,17.75z M289.791,54.326
86
+ c-2.391,3.504-6.256,5.313-11.596,5.424c-5.289-0.111-9.135-1.926-11.541-5.445c-2.406-3.518-3.596-8.014-3.568-13.486
87
+ c-0.027-5.367,1.203-9.777,3.693-13.227s6.379-5.23,11.668-5.342c5.367,0.168,9.205,2.039,11.512,5.613s3.432,7.949,3.377,13.123
88
+ C293.363,46.377,292.182,50.822,289.791,54.326z"/>
89
+ <g>
90
+ <linearGradient id="XMLID_28_" gradientUnits="userSpaceOnUse" x1="223.7988" y1="37.6279" x2="223.7988" y2="108.6677">
91
+ <stop offset="0" style="stop-color:#008CFF"/>
92
+ <stop offset="1" style="stop-color:#FFFFFF"/>
93
+ </linearGradient>
94
+ <path fill="url(#XMLID_28_)" d="M224.074,0.081c-7.198,0.132-13.027,1.608-17.498,4.417h34.445
95
+ C236.807,1.706,231.174,0.219,224.074,0.081z"/>
96
+ <linearGradient id="XMLID_29_" gradientUnits="userSpaceOnUse" x1="223.5742" y1="37.624" x2="223.5742" y2="108.6555">
97
+ <stop offset="0" style="stop-color:#008CFF"/>
98
+ <stop offset="1" style="stop-color:#FFFFFF"/>
99
+ </linearGradient>
100
+ <path fill="url(#XMLID_29_)" d="M224.074,11.206c2.342,0.06,4.392,0.409,6.167,1.032h17.711c-1.063-2.07-2.484-3.979-4.31-5.706
101
+ c-0.344-0.325-0.725-0.616-1.095-0.917h-37.586c-1.46,1.111-2.755,2.385-3.874,3.831c-0.688,0.889-1.308,1.827-1.893,2.792h18.388
102
+ C219.465,11.614,221.628,11.27,224.074,11.206z"/>
103
+ <linearGradient id="XMLID_30_" gradientUnits="userSpaceOnUse" x1="205.4512" y1="37.624" x2="205.4512" y2="108.6555">
104
+ <stop offset="0" style="stop-color:#008CFF"/>
105
+ <stop offset="1" style="stop-color:#FFFFFF"/>
106
+ </linearGradient>
107
+ <path fill="url(#XMLID_30_)" d="M210.559,17.624c1.113-1.815,2.637-3.224,4.523-4.27h-16.517
108
+ c-1.128,2.052-2.058,4.249-2.746,6.623h13.511C209.701,19.163,210.101,18.371,210.559,17.624z"/>
109
+ <linearGradient id="XMLID_31_" gradientUnits="userSpaceOnUse" x1="241.376" y1="37.624" x2="241.376" y2="108.6555">
110
+ <stop offset="0" style="stop-color:#008CFF"/>
111
+ <stop offset="1" style="stop-color:#FFFFFF"/>
112
+ </linearGradient>
113
+ <path fill="url(#XMLID_31_)" d="M234.299,14.542c1.841,1.619,2.979,3.432,3.426,5.436h12.385
114
+ c-0.186-2.364-0.716-4.574-1.607-6.623h-15.859C233.235,13.709,233.795,14.099,234.299,14.542z"/>
115
+ <linearGradient id="XMLID_32_" gradientUnits="userSpaceOnUse" x1="201.6338" y1="37.624" x2="201.6338" y2="108.6555">
116
+ <stop offset="0" style="stop-color:#008CFF"/>
117
+ <stop offset="1" style="stop-color:#FFFFFF"/>
118
+ </linearGradient>
119
+ <path fill="url(#XMLID_32_)" d="M208.844,21.094h-13.303c-0.535,2.088-0.907,4.297-1.117,6.623h12.797
120
+ C207.518,25.32,208.053,23.107,208.844,21.094z"/>
121
+ <linearGradient id="XMLID_33_" gradientUnits="userSpaceOnUse" x1="200.6426" y1="37.623" x2="200.6426" y2="108.6546">
122
+ <stop offset="0" style="stop-color:#008CFF"/>
123
+ <stop offset="1" style="stop-color:#FFFFFF"/>
124
+ </linearGradient>
125
+ <path fill="url(#XMLID_33_)" d="M206.945,33.017c-0.026-1.452,0.026-2.843,0.146-4.183h-12.77
126
+ c-0.087,1.306-0.139,2.637-0.127,4.015c-0.006,0.89,0.031,1.751,0.07,2.608h12.757C206.972,34.664,206.941,33.854,206.945,33.017z
127
+ "/>
128
+ <linearGradient id="XMLID_34_" gradientUnits="userSpaceOnUse" x1="201.4766" y1="37.623" x2="201.4766" y2="108.6546">
129
+ <stop offset="0" style="stop-color:#008CFF"/>
130
+ <stop offset="1" style="stop-color:#FFFFFF"/>
131
+ </linearGradient>
132
+ <path fill="url(#XMLID_34_)" d="M207.121,36.574h-12.798c0.164,2.328,0.509,4.531,1.017,6.623h13.29
133
+ C207.859,41.203,207.36,38.992,207.121,36.574z"/>
134
+ <linearGradient id="XMLID_35_" gradientUnits="userSpaceOnUse" x1="205.0684" y1="37.624" x2="205.0684" y2="108.6555">
135
+ <stop offset="0" style="stop-color:#008CFF"/>
136
+ <stop offset="1" style="stop-color:#FFFFFF"/>
137
+ </linearGradient>
138
+ <path fill="url(#XMLID_35_)" d="M211.018,47.634c-0.744-1.022-1.377-2.134-1.917-3.319h-13.467
139
+ c0.655,2.361,1.525,4.574,2.636,6.623h16.233C213.156,50.062,211.988,48.969,211.018,47.634z"/>
140
+ <linearGradient id="XMLID_36_" gradientUnits="userSpaceOnUse" x1="241.373" y1="37.624" x2="241.373" y2="108.6555">
141
+ <stop offset="0" style="stop-color:#008CFF"/>
142
+ <stop offset="1" style="stop-color:#FFFFFF"/>
143
+ </linearGradient>
144
+ <path fill="url(#XMLID_36_)" d="M234.182,49.733c-0.498,0.445-1.038,0.839-1.598,1.204h15.771c0.94-2.024,1.542-4.232,1.808-6.623
145
+ h-12.31C237.302,46.224,236.084,48.031,234.182,49.733z"/>
146
+ <linearGradient id="XMLID_37_" gradientUnits="userSpaceOnUse" x1="223.3477" y1="37.624" x2="223.3477" y2="108.6555">
147
+ <stop offset="0" style="stop-color:#008CFF"/>
148
+ <stop offset="1" style="stop-color:#FFFFFF"/>
149
+ </linearGradient>
150
+ <path fill="url(#XMLID_37_)" d="M242.689,58.161c2.159-1.782,3.833-3.827,5.077-6.106h-17.263
151
+ c-1.959,0.846-4.209,1.32-6.766,1.401c-2.716-0.053-5.084-0.53-7.129-1.401h-17.682c0.683,1.137,1.413,2.241,2.244,3.276
152
+ c1,1.245,2.135,2.355,3.39,3.347H242C242.228,58.502,242.468,58.344,242.689,58.161z"/>
153
+ <linearGradient id="XMLID_38_" gradientUnits="userSpaceOnUse" x1="223.2773" y1="37.627" x2="223.2773" y2="108.6514">
154
+ <stop offset="0" style="stop-color:#008CFF"/>
155
+ <stop offset="1" style="stop-color:#FFFFFF"/>
156
+ </linearGradient>
157
+ <path fill="url(#XMLID_38_)" d="M240.446,59.795h-34.339c4.486,2.947,10.359,4.504,17.631,4.661
158
+ C230.331,64.336,235.895,62.775,240.446,59.795z"/>
159
+ </g>
160
+ </g>
161
+ </svg>
@@ -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,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>