opencpu 0.7.8 → 0.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 91ab69a97467f159a5a6018302613af63998f946
4
- data.tar.gz: 7647ea4ce4c706bddf6da7dbff5c469b7743233f
3
+ metadata.gz: 72a194d76d0462e2be22c3af5e13090efa1b1fe1
4
+ data.tar.gz: e18e8d530f29f46169751ad0d0824af3e9179847
5
5
  SHA512:
6
- metadata.gz: 58cba3b05650ed512b5461f617804928f79ea6ecb06630f425a170822dd8db2516084ef27f3d4ed36d8eb779ffff7badcf01fdb57086162dfaf792fa52a07c77
7
- data.tar.gz: 52f2e0b64e1e73d4ccc19b40ffeca4a38a7549935d3c70f60a4f862c9f0523710a9036b177763d740f3c9e9a34cb4bd7e77c15996efea8e26ad9d0a44ea1c686
6
+ metadata.gz: 7f44aba6e5d8b562700f689b0269c60fd7f1a808e293f0a0c4c04bfc949435a3e3c7645373118b191762219ae629d581bbb6ee990b53f498de00a4c1f4a6847d
7
+ data.tar.gz: effaa6604bbc45cf88e7c277b89245202ca6728f43ad8eceb1ccf01611d71bf6c20f7a94c6d83a734089232eff503afc5956be9fbfdd620f0677aedcd51a8703
@@ -1,3 +1,9 @@
1
+ # 0.8.0
2
+
3
+ * BREAKING CHANGE: verify ssl of opencpu server by default again.
4
+ * Added configuration option verify_ssl so you can disable it.
5
+ * Added format: :urlencoded for sending R-code and file parameters.
6
+
1
7
  # 0.7.8
2
8
 
3
9
  * Fixed gem by forcing json again (will add format option in 0.8)
data/README.md CHANGED
@@ -27,6 +27,7 @@ Or install it yourself as:
27
27
  OpenCPU.configure do |config|
28
28
  config.endpoint_url = 'https://public.opencpu.org/ocpu'
29
29
  config.timeout = 30 # Timeout in seconds
30
+ config.verify_ssl = true # set to false for opencpu server with self-signed certificates.
30
31
  end
31
32
  ```
32
33
 
@@ -36,6 +37,16 @@ end
36
37
  client = OpenCPU.client
37
38
  ```
38
39
 
40
+ ### Formats
41
+
42
+ By default we send data using the json format. This format is efficient and safe, but only supports strings and numeric parameters (see [opencpu page](https://www.opencpu.org/api.html#api-arguments))
43
+
44
+ If you want to send R code argument, you'll need to specify format: :urlencoded in your request. Note that you need to enclose your string parameters in quotes in that case, since they will be seen as variables otherwise:
45
+
46
+ ```Ruby
47
+ client.execute :digest, :hmac, data: { key: "'foo'", object: "'bar'"" }, format: :urlencoded
48
+ ```
49
+
39
50
  ### One-step call
40
51
 
41
52
  One-step call always returns a JSON result from OpenCPU. This is a preferred
@@ -144,10 +155,10 @@ calculations.info
144
155
 
145
156
  **Multipart requests with files**
146
157
 
147
- If you want to send one or more files along, you can pass in a File object as data:
158
+ If you want to send one or more files along, you can pass in a File object as data, but only when using the urlencoded format.
148
159
 
149
160
  ```Ruby
150
- client.execute :foo, :bar, user: :johndoe, data: {file: File.new('/tmp/test.foo')}
161
+ client.execute :foo, :bar, user: :johndoe, data: {file: File.new('/tmp/test.foo')}, format: :urlencoded
151
162
  ```
152
163
 
153
164
  ## Testing
@@ -8,9 +8,10 @@ module OpenCPU
8
8
  end
9
9
 
10
10
  def execute(package, function, options = {})
11
- user = options.fetch :user, :system
12
- data = options.fetch :data, {}
13
- process_query package_url(package, function, user, :json), data do |response|
11
+ user = options.fetch :user, :system
12
+ data = options.fetch :data, {}
13
+ format = options.fetch :format, :json
14
+ process_query package_url(package, function, user, :json), data, format do |response|
14
15
  JSON.parse(response.body)
15
16
  end
16
17
  end
@@ -18,7 +19,8 @@ module OpenCPU
18
19
  def prepare(package, function, options = {})
19
20
  user = options.fetch :user, :system
20
21
  data = options.fetch :data, {}
21
- process_query package_url(package, function, user), data do |response|
22
+ format = options.fetch :format, :json
23
+ process_query package_url(package, function, user), data, format do |response|
22
24
  location = response.headers['location']
23
25
  resources = response.body.split(/\n/)
24
26
  OpenCPU::DelayedCalculation.new(location, resources)
@@ -27,20 +29,10 @@ module OpenCPU
27
29
 
28
30
  private
29
31
 
30
- def process_query(url, data, &block)
32
+ def process_query(url, data, format, &block)
31
33
  return fake_response_for(url) if OpenCPU.test_mode?
32
- options = {
33
- body: data.to_json,
34
- headers: {"Content-Type" => 'application/json'},
35
- verify: false
36
- }
37
34
 
38
- if OpenCPU.configuration.username && OpenCPU.configuration.password
39
- options[:basic_auth] = {
40
- username: OpenCPU.configuration.username, password: OpenCPU.configuration.password
41
- }
42
- end
43
- response = self.class.post(url, options)
35
+ response = self.class.post(url, request_options(data, format))
44
36
 
45
37
  case response.code
46
38
  when 200..201
@@ -52,6 +44,27 @@ module OpenCPU
52
44
  end
53
45
  end
54
46
 
47
+ def request_options(data, format)
48
+ options = {
49
+ verify: OpenCPU.configuration.verify_ssl
50
+ }
51
+
52
+ case format
53
+ when :json
54
+ options[:body] = data.to_json
55
+ options[:headers] = {"Content-Type" => 'application/json'}
56
+ when :urlencoded
57
+ options[:query] = data
58
+ end
59
+
60
+ if OpenCPU.configuration.username && OpenCPU.configuration.password
61
+ options[:basic_auth] = {
62
+ username: OpenCPU.configuration.username, password: OpenCPU.configuration.password
63
+ }
64
+ end
65
+ options
66
+ end
67
+
55
68
  def package_url(package, function, user = :system, format = nil)
56
69
  return ['', 'library', package, 'R', function, format.to_s].join('/') if user == :system
57
70
  return ['', 'user', user, 'library', package, 'R', function, format.to_s].join('/')
@@ -6,9 +6,11 @@ module OpenCPU
6
6
  attr_accessor :password
7
7
  attr_accessor :mode
8
8
  attr_accessor :fake_responses
9
+ attr_accessor :verify_ssl
9
10
 
10
11
  def initialize
11
12
  @fake_responses = {}
13
+ @verify_ssl = true
12
14
  end
13
15
 
14
16
  def add_fake_response(key, response)
@@ -25,6 +27,7 @@ module OpenCPU
25
27
  @username = nil
26
28
  @password = nil
27
29
  @mode = nil
30
+ @verify_ssl = true
28
31
  @fake_responses = {}
29
32
  end
30
33
  end
@@ -1,6 +1,6 @@
1
1
  module OpenCPU
2
2
  MAJOR = 0
3
- MINOR = 7
4
- TINY = 8
3
+ MINOR = 8
4
+ TINY = 0
5
5
  VERSION = [MAJOR, MINOR, TINY].join('.')
6
6
  end
@@ -0,0 +1,3 @@
1
+ "head1", "head2", "head3"
2
+ 1, 2, 3
3
+ 4, 5, 6
@@ -1993,4 +1993,1015 @@ http_interactions:
1993
1993
  string: "{\n\t\"freq\" : [\n\t\t0.56,\n\t\t0.44\n\t],\n\t\"nmax\" : [\n\t\t50\n\t]\n}\n"
1994
1994
  http_version:
1995
1995
  recorded_at: Thu, 01 May 2014 14:34:21 GMT
1996
- recorded_with: VCR 2.9.0
1996
+ - request:
1997
+ method: post
1998
+ uri: https://public.opencpu.org/ocpu/library/animation/R/flip.coin/
1999
+ body:
2000
+ encoding: UTF-8
2001
+ string: "{}"
2002
+ headers:
2003
+ Content-Type:
2004
+ - application/json
2005
+ response:
2006
+ status:
2007
+ code: 201
2008
+ message: Created
2009
+ headers:
2010
+ Server:
2011
+ - nginx/1.4.6 (Ubuntu)
2012
+ Date:
2013
+ - Tue, 14 Oct 2014 18:50:51 GMT
2014
+ Content-Type:
2015
+ - text/plain; charset=utf-8
2016
+ Location:
2017
+ - https://public.opencpu.org/ocpu/tmp/x0340b06b1b/
2018
+ Transfer-Encoding:
2019
+ - chunked
2020
+ Connection:
2021
+ - keep-alive
2022
+ Cache-Control:
2023
+ - max-age=300, public
2024
+ X-Ocpu-Session:
2025
+ - x0340b06b1b
2026
+ Access-Control-Allow-Origin:
2027
+ - "*"
2028
+ Access-Control-Allow-Headers:
2029
+ - Origin, Content-Type, Accept, Accept-Encoding, Cache-Control
2030
+ Access-Control-Expose-Headers:
2031
+ - Location, X-ocpu-session, Content-Type, Cache-Control
2032
+ X-Ocpu-R:
2033
+ - R version 3.1.1 (2014-07-10)
2034
+ X-Ocpu-Locale:
2035
+ - en_US.UTF-8
2036
+ X-Ocpu-Time:
2037
+ - 2014-10-14 11:46:05 PDT
2038
+ X-Ocpu-Version:
2039
+ - 1.4.4
2040
+ X-Ocpu-Server:
2041
+ - rApache
2042
+ X-Ocpu-Cache:
2043
+ - HIT
2044
+ body:
2045
+ encoding: UTF-8
2046
+ string: |
2047
+ /ocpu/tmp/x0340b06b1b/R/.val
2048
+ /ocpu/tmp/x0340b06b1b/graphics/1
2049
+ /ocpu/tmp/x0340b06b1b/graphics/2
2050
+ /ocpu/tmp/x0340b06b1b/graphics/3
2051
+ /ocpu/tmp/x0340b06b1b/graphics/4
2052
+ /ocpu/tmp/x0340b06b1b/graphics/5
2053
+ /ocpu/tmp/x0340b06b1b/graphics/6
2054
+ /ocpu/tmp/x0340b06b1b/graphics/7
2055
+ /ocpu/tmp/x0340b06b1b/graphics/8
2056
+ /ocpu/tmp/x0340b06b1b/graphics/9
2057
+ /ocpu/tmp/x0340b06b1b/graphics/10
2058
+ /ocpu/tmp/x0340b06b1b/graphics/11
2059
+ /ocpu/tmp/x0340b06b1b/graphics/12
2060
+ /ocpu/tmp/x0340b06b1b/graphics/13
2061
+ /ocpu/tmp/x0340b06b1b/graphics/14
2062
+ /ocpu/tmp/x0340b06b1b/graphics/15
2063
+ /ocpu/tmp/x0340b06b1b/graphics/16
2064
+ /ocpu/tmp/x0340b06b1b/graphics/17
2065
+ /ocpu/tmp/x0340b06b1b/graphics/18
2066
+ /ocpu/tmp/x0340b06b1b/graphics/19
2067
+ /ocpu/tmp/x0340b06b1b/graphics/20
2068
+ /ocpu/tmp/x0340b06b1b/graphics/21
2069
+ /ocpu/tmp/x0340b06b1b/graphics/22
2070
+ /ocpu/tmp/x0340b06b1b/graphics/23
2071
+ /ocpu/tmp/x0340b06b1b/graphics/24
2072
+ /ocpu/tmp/x0340b06b1b/graphics/25
2073
+ /ocpu/tmp/x0340b06b1b/graphics/26
2074
+ /ocpu/tmp/x0340b06b1b/graphics/27
2075
+ /ocpu/tmp/x0340b06b1b/graphics/28
2076
+ /ocpu/tmp/x0340b06b1b/graphics/29
2077
+ /ocpu/tmp/x0340b06b1b/graphics/30
2078
+ /ocpu/tmp/x0340b06b1b/graphics/31
2079
+ /ocpu/tmp/x0340b06b1b/graphics/32
2080
+ /ocpu/tmp/x0340b06b1b/graphics/33
2081
+ /ocpu/tmp/x0340b06b1b/graphics/34
2082
+ /ocpu/tmp/x0340b06b1b/graphics/35
2083
+ /ocpu/tmp/x0340b06b1b/graphics/36
2084
+ /ocpu/tmp/x0340b06b1b/graphics/37
2085
+ /ocpu/tmp/x0340b06b1b/graphics/38
2086
+ /ocpu/tmp/x0340b06b1b/graphics/39
2087
+ /ocpu/tmp/x0340b06b1b/graphics/40
2088
+ /ocpu/tmp/x0340b06b1b/graphics/41
2089
+ /ocpu/tmp/x0340b06b1b/graphics/42
2090
+ /ocpu/tmp/x0340b06b1b/graphics/43
2091
+ /ocpu/tmp/x0340b06b1b/graphics/44
2092
+ /ocpu/tmp/x0340b06b1b/graphics/45
2093
+ /ocpu/tmp/x0340b06b1b/graphics/46
2094
+ /ocpu/tmp/x0340b06b1b/graphics/47
2095
+ /ocpu/tmp/x0340b06b1b/graphics/48
2096
+ /ocpu/tmp/x0340b06b1b/graphics/49
2097
+ /ocpu/tmp/x0340b06b1b/graphics/50
2098
+ /ocpu/tmp/x0340b06b1b/source
2099
+ /ocpu/tmp/x0340b06b1b/console
2100
+ /ocpu/tmp/x0340b06b1b/info
2101
+ /ocpu/tmp/x0340b06b1b/files/DESCRIPTION
2102
+ http_version:
2103
+ recorded_at: Tue, 14 Oct 2014 18:50:51 GMT
2104
+ - request:
2105
+ method: get
2106
+ uri: https://public.opencpu.org/ocpu/tmp/x0340b06b1b/graphics/1/svg
2107
+ body:
2108
+ encoding: US-ASCII
2109
+ string: ''
2110
+ headers: {}
2111
+ response:
2112
+ status:
2113
+ code: 200
2114
+ message: OK
2115
+ headers:
2116
+ Server:
2117
+ - nginx/1.4.6 (Ubuntu)
2118
+ Date:
2119
+ - Tue, 14 Oct 2014 18:50:52 GMT
2120
+ Content-Type:
2121
+ - image/svg+xml
2122
+ Transfer-Encoding:
2123
+ - chunked
2124
+ Connection:
2125
+ - keep-alive
2126
+ Cache-Control:
2127
+ - max-age=86400, public
2128
+ Access-Control-Allow-Origin:
2129
+ - "*"
2130
+ Access-Control-Allow-Headers:
2131
+ - Origin, Content-Type, Accept, Accept-Encoding, Cache-Control
2132
+ Access-Control-Expose-Headers:
2133
+ - Location, X-ocpu-session, Content-Type, Cache-Control
2134
+ X-Ocpu-R:
2135
+ - R version 3.1.1 (2014-07-10)
2136
+ X-Ocpu-Locale:
2137
+ - en_US.UTF-8
2138
+ X-Ocpu-Time:
2139
+ - 2014-10-14 11:46:08 PDT
2140
+ X-Ocpu-Version:
2141
+ - 1.4.4
2142
+ X-Ocpu-Server:
2143
+ - rApache
2144
+ X-Ocpu-Cache:
2145
+ - HIT
2146
+ body:
2147
+ encoding: UTF-8
2148
+ string: |
2149
+ <?xml version="1.0" encoding="UTF-8"?>
2150
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="841pt" height="595pt" viewBox="0 0 841 595" version="1.1">
2151
+ <defs>
2152
+ <g>
2153
+ <symbol overflow="visible" id="glyph0-0">
2154
+ <path style="stroke:none;" d=""/>
2155
+ </symbol>
2156
+ <symbol overflow="visible" id="glyph0-1">
2157
+ <path style="stroke:none;" d="M 4.296875 -0.125 L 4.296875 -8.765625 L 3.359375 -8.765625 C 2.953125 -7.328125 2.859375 -7.28125 1.078125 -7.0625 L 1.078125 -6.0625 L 2.96875 -6.0625 L 2.96875 0 L 4.296875 0 Z M 4.296875 -0.125 "/>
2158
+ </symbol>
2159
+ <symbol overflow="visible" id="glyph0-2">
2160
+ <path style="stroke:none;" d="M 6.265625 -6.140625 C 6.265625 -7.578125 5.015625 -8.765625 3.40625 -8.765625 C 1.671875 -8.765625 0.515625 -7.75 0.453125 -5.5625 L 1.78125 -5.5625 C 1.875 -7.109375 2.328125 -7.578125 3.375 -7.578125 C 4.328125 -7.578125 4.90625 -7.03125 4.90625 -6.125 C 4.90625 -5.453125 4.546875 -4.96875 3.796875 -4.53125 L 2.6875 -3.90625 C 0.90625 -2.90625 0.359375 -2 0.25 0 L 6.203125 0 L 6.203125 -1.3125 L 1.75 -1.3125 C 1.84375 -1.875 2.1875 -2.21875 3.234375 -2.828125 L 4.421875 -3.484375 C 5.609375 -4.109375 6.265625 -5.09375 6.265625 -6.140625 Z M 6.265625 -6.140625 "/>
2161
+ </symbol>
2162
+ <symbol overflow="visible" id="glyph0-3">
2163
+ <path style="stroke:none;" d=""/>
2164
+ </symbol>
2165
+ <symbol overflow="visible" id="glyph0-4">
2166
+ <path style="stroke:none;" d="M 3.59375 2.3125 C 2.53125 0.59375 1.984375 -1.3125 1.984375 -3.234375 C 1.984375 -5.140625 2.53125 -7.078125 3.734375 -9.015625 L 2.765625 -9.015625 C 1.53125 -7.40625 0.734375 -5.125 0.734375 -3.234375 C 0.734375 -1.34375 1.53125 0.9375 2.765625 2.546875 L 3.734375 2.546875 Z M 3.59375 2.3125 "/>
2167
+ </symbol>
2168
+ <symbol overflow="visible" id="glyph0-5">
2169
+ <path style="stroke:none;" d="M 6.21875 -4.21875 C 6.21875 -7.171875 5.140625 -8.765625 3.296875 -8.765625 C 1.46875 -8.765625 0.375 -7.15625 0.375 -4.296875 C 0.375 -1.421875 1.46875 0.1875 3.296875 0.1875 C 5.09375 0.1875 6.21875 -1.421875 6.21875 -4.21875 Z M 4.859375 -4.3125 C 4.859375 -1.90625 4.453125 -0.953125 3.28125 -0.953125 C 2.15625 -0.953125 1.734375 -1.953125 1.734375 -4.28125 C 1.734375 -6.609375 2.15625 -7.578125 3.296875 -7.578125 C 4.4375 -7.578125 4.859375 -6.59375 4.859375 -4.3125 Z M 4.859375 -4.3125 "/>
2170
+ </symbol>
2171
+ <symbol overflow="visible" id="glyph0-6">
2172
+ <path style="stroke:none;" d="M 2.421875 -0.125 L 2.421875 -1.515625 L 0.90625 -1.515625 L 0.90625 0 L 2.421875 0 Z M 2.421875 -0.125 "/>
2173
+ </symbol>
2174
+ <symbol overflow="visible" id="glyph0-7">
2175
+ <path style="stroke:none;" d="M 3.203125 -3.234375 C 3.203125 -5.125 2.40625 -7.40625 1.171875 -9.015625 L 0.203125 -9.015625 C 1.40625 -7.0625 1.953125 -5.140625 1.953125 -3.234375 C 1.953125 -1.3125 1.40625 0.609375 0.203125 2.546875 L 1.171875 2.546875 C 2.40625 0.9375 3.203125 -1.34375 3.203125 -3.234375 Z M 3.203125 -3.234375 "/>
2176
+ </symbol>
2177
+ <symbol overflow="visible" id="glyph0-8">
2178
+ <path style="stroke:none;" d="M 7.890625 -0.125 L 7.890625 -9.015625 L 6.546875 -9.015625 L 6.546875 -1.734375 L 6.796875 -1.828125 L 2.1875 -9.015625 L 0.765625 -9.015625 L 0.765625 0 L 2.09375 0 L 2.09375 -7.21875 L 1.859375 -7.125 L 6.421875 0 L 7.890625 0 Z M 7.890625 -0.125 "/>
2179
+ </symbol>
2180
+ <symbol overflow="visible" id="glyph0-9">
2181
+ <path style="stroke:none;" d="M 5.921875 -0.125 L 5.921875 -6.546875 L 4.640625 -6.546875 L 4.640625 -2.953125 C 4.640625 -1.671875 4.109375 -0.953125 3.078125 -0.953125 C 2.28125 -0.953125 1.90625 -1.3125 1.90625 -2.0625 L 1.90625 -6.546875 L 0.640625 -6.546875 L 0.640625 -1.671875 C 0.640625 -0.625 1.5625 0.1875 2.78125 0.1875 C 3.703125 0.1875 4.390625 -0.1875 4.984375 -1.015625 L 4.734375 -1.109375 L 4.734375 0 L 5.921875 0 Z M 5.921875 -0.125 "/>
2182
+ </symbol>
2183
+ <symbol overflow="visible" id="glyph0-10">
2184
+ <path style="stroke:none;" d="M 9.25 -0.125 L 9.25 -4.84375 C 9.25 -5.96875 8.5 -6.734375 7.3125 -6.734375 C 6.484375 -6.734375 5.875 -6.4375 5.40625 -5.875 C 5.109375 -6.40625 4.515625 -6.734375 3.703125 -6.734375 C 2.859375 -6.734375 2.203125 -6.390625 1.65625 -5.625 L 1.890625 -5.53125 L 1.890625 -6.546875 L 0.703125 -6.546875 L 0.703125 0 L 1.984375 0 L 1.984375 -4.078125 C 1.984375 -4.984375 2.515625 -5.59375 3.328125 -5.59375 C 4.0625 -5.59375 4.34375 -5.265625 4.34375 -4.46875 L 4.34375 0 L 5.609375 0 L 5.609375 -4.078125 C 5.609375 -4.984375 6.15625 -5.59375 6.96875 -5.59375 C 7.703125 -5.59375 7.984375 -5.25 7.984375 -4.46875 L 7.984375 0 L 9.25 0 Z M 9.25 -0.125 "/>
2185
+ </symbol>
2186
+ <symbol overflow="visible" id="glyph0-11">
2187
+ <path style="stroke:none;" d="M 6.40625 -3.34375 C 6.40625 -5.390625 5.25 -6.734375 3.59375 -6.734375 C 2.71875 -6.734375 2 -6.375 1.53125 -5.65625 L 1.78125 -5.5625 L 1.78125 -9.015625 L 0.5 -9.015625 L 0.5 0 L 1.6875 0 L 1.6875 -1.03125 L 1.4375 -0.9375 C 1.921875 -0.203125 2.65625 0.1875 3.546875 0.1875 C 5.203125 0.1875 6.40625 -1.3125 6.40625 -3.34375 Z M 5.09375 -3.28125 C 5.09375 -1.859375 4.484375 -1.015625 3.390625 -1.015625 C 2.34375 -1.015625 1.78125 -1.84375 1.78125 -3.28125 C 1.78125 -4.75 2.34375 -5.578125 3.390625 -5.53125 C 4.515625 -5.53125 5.09375 -4.6875 5.09375 -3.28125 Z M 5.09375 -3.28125 "/>
2188
+ </symbol>
2189
+ <symbol overflow="visible" id="glyph0-12">
2190
+ <path style="stroke:none;" d="M 6.28125 -2.984375 C 6.28125 -3.90625 6.21875 -4.46875 6.03125 -4.9375 C 5.625 -5.96875 4.53125 -6.734375 3.359375 -6.734375 C 1.609375 -6.734375 0.34375 -5.296875 0.34375 -3.234375 C 0.34375 -1.171875 1.578125 0.1875 3.34375 0.1875 C 4.78125 0.1875 5.90625 -0.765625 6.1875 -2.171875 L 4.921875 -2.171875 C 4.59375 -1.21875 4.171875 -1.015625 3.375 -1.015625 C 2.328125 -1.015625 1.6875 -1.546875 1.65625 -2.859375 L 6.28125 -2.859375 Z M 5.1875 -3.78125 C 5.1875 -3.78125 4.984375 -3.921875 4.984375 -3.9375 L 1.6875 -3.9375 C 1.765625 -4.921875 2.34375 -5.546875 3.34375 -5.546875 C 4.328125 -5.546875 4.9375 -4.859375 4.9375 -3.875 Z M 5.1875 -3.78125 "/>
2191
+ </symbol>
2192
+ <symbol overflow="visible" id="glyph0-13">
2193
+ <path style="stroke:none;" d="M 3.984375 -5.546875 L 3.984375 -6.6875 C 3.6875 -6.71875 3.59375 -6.734375 3.46875 -6.734375 C 2.8125 -6.734375 2.21875 -6.3125 1.640625 -5.375 L 1.890625 -5.28125 L 1.890625 -6.546875 L 0.703125 -6.546875 L 0.703125 0 L 1.96875 0 L 1.96875 -3.390625 C 1.96875 -4.8125 2.296875 -5.390625 3.984375 -5.40625 Z M 3.984375 -5.546875 "/>
2194
+ </symbol>
2195
+ <symbol overflow="visible" id="glyph0-14">
2196
+ <path style="stroke:none;" d="M 6.25 -3.234375 C 6.25 -5.40625 5.078125 -6.734375 3.265625 -6.734375 C 1.5 -6.734375 0.28125 -5.390625 0.28125 -3.28125 C 0.28125 -1.15625 1.484375 0.1875 3.28125 0.1875 C 5.046875 0.1875 6.25 -1.15625 6.25 -3.234375 Z M 4.9375 -3.234375 C 4.9375 -1.765625 4.375 -1.015625 3.28125 -1.015625 C 2.15625 -1.015625 1.609375 -1.75 1.609375 -3.28125 C 1.609375 -4.78125 2.15625 -5.546875 3.28125 -5.546875 C 4.40625 -5.546875 4.9375 -4.796875 4.9375 -3.234375 Z M 4.9375 -3.234375 "/>
2197
+ </symbol>
2198
+ <symbol overflow="visible" id="glyph0-15">
2199
+ <path style="stroke:none;" d="M 3.234375 -5.609375 L 3.234375 -6.546875 L 2.1875 -6.546875 L 2.1875 -7.40625 C 2.1875 -7.828125 2.296875 -7.90625 2.75 -7.90625 C 2.828125 -7.90625 2.875 -7.90625 3.234375 -7.890625 L 3.234375 -8.96875 C 2.875 -9.03125 2.734375 -9.046875 2.53125 -9.046875 C 1.609375 -9.046875 0.90625 -8.390625 0.90625 -7.484375 L 0.90625 -6.546875 L 0.078125 -6.546875 L 0.078125 -5.46875 L 0.90625 -5.46875 L 0.90625 0 L 2.1875 0 L 2.1875 -5.46875 L 3.234375 -5.46875 Z M 3.234375 -5.609375 "/>
2200
+ </symbol>
2201
+ <symbol overflow="visible" id="glyph0-16">
2202
+ <path style="stroke:none;" d="M 7.25 -7.890625 L 7.25 -9.015625 L 0.109375 -9.015625 L 0.109375 -7.765625 L 2.984375 -7.765625 L 2.984375 0 L 4.375 0 L 4.375 -7.765625 L 7.25 -7.765625 Z M 7.25 -7.890625 "/>
2203
+ </symbol>
2204
+ <symbol overflow="visible" id="glyph0-17">
2205
+ <path style="stroke:none;" d="M 5.640625 -1.890625 C 5.640625 -2.828125 4.984375 -3.4375 3.734375 -3.734375 L 2.765625 -3.953125 C 1.953125 -4.15625 1.734375 -4.28125 1.734375 -4.734375 C 1.734375 -5.296875 2.125 -5.546875 2.9375 -5.546875 C 3.75 -5.546875 4.03125 -5.328125 4.0625 -4.53125 L 5.390625 -4.53125 C 5.375 -5.90625 4.421875 -6.734375 2.96875 -6.734375 C 1.515625 -6.734375 0.421875 -5.84375 0.421875 -4.6875 C 0.421875 -3.703125 1.0625 -3.09375 2.5625 -2.734375 L 3.484375 -2.515625 C 4.1875 -2.34375 4.3125 -2.265625 4.3125 -1.8125 C 4.3125 -1.21875 3.875 -1.015625 3 -1.015625 C 2.09375 -1.015625 1.734375 -1.09375 1.578125 -2.1875 L 0.265625 -2.1875 C 0.3125 -0.59375 1.265625 0.1875 2.921875 0.1875 C 4.5 0.1875 5.640625 -0.6875 5.640625 -1.890625 Z M 5.640625 -1.890625 "/>
2206
+ </symbol>
2207
+ <symbol overflow="visible" id="glyph0-18">
2208
+ <path style="stroke:none;" d="M 2.421875 -0.125 L 2.421875 -1.515625 L 0.90625 -1.515625 L 0.90625 0 L 2.421875 0 Z M 2.421875 -5.171875 L 2.421875 -6.546875 L 0.90625 -6.546875 L 0.90625 -5.046875 L 2.421875 -5.046875 Z M 2.421875 -5.171875 "/>
2209
+ </symbol>
2210
+ <symbol overflow="visible" id="glyph1-0">
2211
+ <path style="stroke:none;" d=""/>
2212
+ </symbol>
2213
+ <symbol overflow="visible" id="glyph1-1">
2214
+ <path style="stroke:none;" d="M -4.21875 -6.21875 C -7.171875 -6.21875 -8.765625 -5.140625 -8.765625 -3.296875 C -8.765625 -1.46875 -7.15625 -0.375 -4.296875 -0.375 C -1.421875 -0.375 0.1875 -1.46875 0.1875 -3.296875 C 0.1875 -5.09375 -1.421875 -6.21875 -4.21875 -6.21875 Z M -4.3125 -4.859375 C -1.90625 -4.859375 -0.953125 -4.453125 -0.953125 -3.28125 C -0.953125 -2.15625 -1.953125 -1.734375 -4.28125 -1.734375 C -6.609375 -1.734375 -7.578125 -2.15625 -7.578125 -3.296875 C -7.578125 -4.4375 -6.59375 -4.859375 -4.3125 -4.859375 Z M -4.3125 -4.859375 "/>
2215
+ </symbol>
2216
+ <symbol overflow="visible" id="glyph1-2">
2217
+ <path style="stroke:none;" d="M -0.125 -2.421875 L -1.515625 -2.421875 L -1.515625 -0.90625 L 0 -0.90625 L 0 -2.421875 Z M -0.125 -2.421875 "/>
2218
+ </symbol>
2219
+ <symbol overflow="visible" id="glyph1-3">
2220
+ <path style="stroke:none;" d="M -0.125 -4.296875 L -8.765625 -4.296875 L -8.765625 -3.359375 C -7.328125 -2.953125 -7.28125 -2.859375 -7.0625 -1.078125 L -6.0625 -1.078125 L -6.0625 -2.96875 L 0 -2.96875 L 0 -4.296875 Z M -0.125 -4.296875 "/>
2221
+ </symbol>
2222
+ <symbol overflow="visible" id="glyph1-4">
2223
+ <path style="stroke:none;" d="M -6.140625 -6.265625 C -7.578125 -6.265625 -8.765625 -5.015625 -8.765625 -3.40625 C -8.765625 -1.671875 -7.75 -0.515625 -5.5625 -0.453125 L -5.5625 -1.78125 C -7.109375 -1.875 -7.578125 -2.328125 -7.578125 -3.375 C -7.578125 -4.328125 -7.03125 -4.90625 -6.125 -4.90625 C -5.453125 -4.90625 -4.96875 -4.546875 -4.53125 -3.796875 L -3.90625 -2.6875 C -2.90625 -0.90625 -2 -0.359375 0 -0.25 L 0 -6.203125 L -1.3125 -6.203125 L -1.3125 -1.75 C -1.875 -1.84375 -2.21875 -2.1875 -2.828125 -3.234375 L -3.484375 -4.421875 C -4.109375 -5.609375 -5.09375 -6.265625 -6.140625 -6.265625 Z M -6.140625 -6.265625 "/>
2224
+ </symbol>
2225
+ <symbol overflow="visible" id="glyph1-5">
2226
+ <path style="stroke:none;" d="M -2.609375 -6.203125 C -3.640625 -6.203125 -4.375 -5.65625 -4.71875 -4.625 L -4.453125 -4.625 C -4.765625 -5.421875 -5.453125 -5.953125 -6.296875 -5.953125 C -7.765625 -5.953125 -8.765625 -4.84375 -8.765625 -3.234375 C -8.765625 -1.515625 -7.703125 -0.453125 -5.765625 -0.421875 L -5.765625 -1.75 C -7.15625 -1.78125 -7.578125 -2.15625 -7.578125 -3.234375 C -7.578125 -4.171875 -7.15625 -4.59375 -6.265625 -4.59375 C -5.359375 -4.59375 -5.109375 -4.34375 -5.109375 -2.515625 L -3.953125 -2.515625 L -3.953125 -3.234375 C -3.953125 -4.390625 -3.546875 -4.84375 -2.59375 -4.84375 C -1.53125 -4.84375 -1.015625 -4.328125 -1.015625 -3.234375 C -1.015625 -2.078125 -1.46875 -1.640625 -2.828125 -1.5625 L -2.828125 -0.234375 C -0.796875 -0.375 0.1875 -1.453125 0.1875 -3.1875 C 0.1875 -4.9375 -1 -6.203125 -2.609375 -6.203125 Z M -2.609375 -6.203125 "/>
2227
+ </symbol>
2228
+ <symbol overflow="visible" id="glyph1-6">
2229
+ <path style="stroke:none;" d="M -2.171875 -6.375 L -3.25 -6.375 L -3.25 -5.109375 L -8.765625 -5.109375 L -8.765625 -4.125 L -3.328125 -0.1875 L -2.046875 -0.1875 L -2.046875 -3.78125 L 0 -3.78125 L 0 -5.109375 L -2.046875 -5.109375 L -2.046875 -6.375 Z M -3.25 -3.921875 L -3.25 -1.515625 L -6.75 -4.015625 L -6.84375 -3.78125 L -3.25 -3.78125 Z M -3.25 -3.921875 "/>
2230
+ </symbol>
2231
+ <symbol overflow="visible" id="glyph1-7">
2232
+ <path style="stroke:none;" d="M -2.953125 -6.28125 C -4.625 -6.28125 -5.875 -5.046875 -5.875 -3.40625 C -5.875 -2.8125 -5.671875 -2.21875 -5.515625 -2.015625 L -7.28125 -2.28125 L -7.28125 -5.84375 L -8.59375 -5.84375 L -8.59375 -1.203125 L -3.875 -0.515625 L -3.875 -1.71875 C -4.5 -2.25 -4.671875 -2.5625 -4.671875 -3.21875 C -4.671875 -4.359375 -4.0625 -4.9375 -2.8125 -4.9375 C -1.578125 -4.9375 -1.015625 -4.375 -1.015625 -3.21875 C -1.015625 -2.296875 -1.359375 -1.859375 -2.453125 -1.578125 L -2.453125 -0.25 C -0.625 -0.625 0.1875 -1.734375 0.1875 -3.234375 C 0.1875 -4.953125 -1.15625 -6.28125 -2.953125 -6.28125 Z M -2.953125 -6.28125 "/>
2233
+ </symbol>
2234
+ <symbol overflow="visible" id="glyph1-8">
2235
+ <path style="stroke:none;" d="M -7.890625 -7.078125 L -9.015625 -7.078125 L -9.015625 -0.9375 L 0 -0.9375 L 0 -2.328125 L -3.984375 -2.328125 L -3.984375 -6.5 L -5.234375 -6.5 L -5.234375 -2.328125 L -7.765625 -2.328125 L -7.765625 -7.078125 Z M -7.890625 -7.078125 "/>
2236
+ </symbol>
2237
+ <symbol overflow="visible" id="glyph1-9">
2238
+ <path style="stroke:none;" d="M -5.546875 -3.984375 L -6.6875 -3.984375 C -6.71875 -3.6875 -6.734375 -3.59375 -6.734375 -3.46875 C -6.734375 -2.8125 -6.3125 -2.21875 -5.375 -1.640625 L -5.28125 -1.890625 L -6.546875 -1.890625 L -6.546875 -0.703125 L 0 -0.703125 L 0 -1.96875 L -3.390625 -1.96875 C -4.8125 -1.96875 -5.390625 -2.296875 -5.40625 -3.984375 Z M -5.546875 -3.984375 "/>
2239
+ </symbol>
2240
+ <symbol overflow="visible" id="glyph1-10">
2241
+ <path style="stroke:none;" d="M -2.984375 -6.28125 C -3.90625 -6.28125 -4.46875 -6.21875 -4.9375 -6.03125 C -5.96875 -5.625 -6.734375 -4.53125 -6.734375 -3.359375 C -6.734375 -1.609375 -5.296875 -0.34375 -3.234375 -0.34375 C -1.171875 -0.34375 0.1875 -1.578125 0.1875 -3.34375 C 0.1875 -4.78125 -0.765625 -5.90625 -2.171875 -6.1875 L -2.171875 -4.921875 C -1.21875 -4.59375 -1.015625 -4.171875 -1.015625 -3.375 C -1.015625 -2.328125 -1.546875 -1.6875 -2.859375 -1.65625 L -2.859375 -6.28125 Z M -3.78125 -5.1875 C -3.78125 -5.1875 -3.921875 -4.984375 -3.9375 -4.984375 L -3.9375 -1.6875 C -4.921875 -1.765625 -5.546875 -2.34375 -5.546875 -3.34375 C -5.546875 -4.328125 -4.859375 -4.9375 -3.875 -4.9375 Z M -3.78125 -5.1875 "/>
2242
+ </symbol>
2243
+ <symbol overflow="visible" id="glyph1-11">
2244
+ <path style="stroke:none;" d="M 2.484375 -6.078125 L -6.546875 -6.078125 L -6.546875 -4.90625 L -5.578125 -4.90625 L -5.671875 -5.140625 C -6.34375 -4.6875 -6.734375 -3.875 -6.734375 -3.046875 C -6.734375 -1.390625 -5.296875 -0.171875 -3.203125 -0.171875 C -1.15625 -0.171875 0.1875 -1.34375 0.1875 -3 C 0.1875 -3.875 -0.171875 -4.578125 -0.859375 -5.046875 L -0.953125 -4.796875 L 2.609375 -4.796875 L 2.609375 -6.078125 Z M -3.234375 -4.796875 C -1.796875 -4.796875 -1.015625 -4.25 -1.015625 -3.1875 C -1.015625 -2.09375 -1.8125 -1.484375 -3.28125 -1.484375 C -4.734375 -1.484375 -5.53125 -2.09375 -5.53125 -3.1875 C -5.53125 -4.265625 -4.703125 -4.796875 -3.234375 -4.796875 Z M -3.234375 -4.796875 "/>
2245
+ </symbol>
2246
+ <symbol overflow="visible" id="glyph1-12">
2247
+ <path style="stroke:none;" d="M -0.125 -5.921875 L -6.546875 -5.921875 L -6.546875 -4.640625 L -2.953125 -4.640625 C -1.671875 -4.640625 -0.953125 -4.109375 -0.953125 -3.078125 C -0.953125 -2.28125 -1.3125 -1.90625 -2.0625 -1.90625 L -6.546875 -1.90625 L -6.546875 -0.640625 L -1.671875 -0.640625 C -0.625 -0.640625 0.1875 -1.5625 0.1875 -2.78125 C 0.1875 -3.703125 -0.1875 -4.390625 -1.015625 -4.984375 L -1.109375 -4.734375 L 0 -4.734375 L 0 -5.921875 Z M -0.125 -5.921875 "/>
2248
+ </symbol>
2249
+ <symbol overflow="visible" id="glyph1-13">
2250
+ <path style="stroke:none;" d="M -0.125 -5.96875 L -4.890625 -5.96875 C -5.921875 -5.96875 -6.734375 -5.0625 -6.734375 -3.859375 C -6.734375 -2.921875 -6.34375 -2.203125 -5.453125 -1.65625 L -5.359375 -1.890625 L -6.546875 -1.890625 L -6.546875 -0.703125 L 0 -0.703125 L 0 -1.96875 L -3.59375 -1.96875 C -4.890625 -1.96875 -5.59375 -2.53125 -5.59375 -3.546875 C -5.59375 -4.34375 -5.25 -4.703125 -4.484375 -4.703125 L 0 -4.703125 L 0 -5.96875 Z M -0.125 -5.96875 "/>
2251
+ </symbol>
2252
+ <symbol overflow="visible" id="glyph1-14">
2253
+ <path style="stroke:none;" d="M -2.421875 -5.71875 L -2.421875 -4.59375 C -1.28125 -4.40625 -1.015625 -4.03125 -1.015625 -3.1875 C -1.015625 -2.078125 -1.734375 -1.546875 -3.21875 -1.546875 C -4.78125 -1.546875 -5.546875 -2.0625 -5.546875 -3.15625 C -5.546875 -4 -5.1875 -4.375 -4.171875 -4.53125 L -4.171875 -5.796875 C -5.84375 -5.65625 -6.734375 -4.578125 -6.734375 -3.171875 C -6.734375 -1.46875 -5.296875 -0.234375 -3.21875 -0.234375 C -1.1875 -0.234375 0.1875 -1.453125 0.1875 -3.15625 C 0.1875 -4.65625 -0.859375 -5.734375 -2.421875 -5.875 Z M -2.421875 -5.71875 "/>
2254
+ </symbol>
2255
+ <symbol overflow="visible" id="glyph1-15">
2256
+ <path style="stroke:none;" d="M -6.546875 -5.734375 L -6.546875 -4.5625 L -1.53125 -2.765625 L -1.53125 -3.046875 L -6.546875 -1.390625 L -6.546875 -0.046875 L -0.109375 -2.21875 L 0.890625 -1.84375 C 1.328125 -1.671875 1.375 -1.609375 1.375 -1.171875 C 1.375 -1.03125 1.34375 -0.859375 1.265625 -0.5 L 2.40625 -0.5 C 2.53125 -0.75 2.609375 -1.0625 2.609375 -1.3125 C 2.609375 -2.03125 2.09375 -2.734375 1.1875 -3.078125 L -6.546875 -5.921875 Z M -6.546875 -5.734375 "/>
2257
+ </symbol>
2258
+ <symbol overflow="visible" id="glyph1-16">
2259
+ <path style="stroke:none;" d="M -0.125 -1.9375 L -9.015625 -1.9375 L -9.015625 -0.671875 L 0 -0.671875 L 0 -1.9375 Z M -0.125 -1.9375 "/>
2260
+ </symbol>
2261
+ <symbol overflow="visible" id="glyph1-17">
2262
+ <path style="stroke:none;" d="M -0.125 -1.96875 L -6.546875 -1.96875 L -6.546875 -0.703125 L 0 -0.703125 L 0 -1.96875 Z M -7.375 -2.09375 L -8.75 -2.09375 L -8.75 -0.578125 L -7.234375 -0.578125 L -7.234375 -2.09375 Z M -7.375 -2.09375 "/>
2263
+ </symbol>
2264
+ <symbol overflow="visible" id="glyph1-18">
2265
+ <path style="stroke:none;" d="M -3.21875 -6.40625 C -5.328125 -6.40625 -6.734375 -5.25 -6.734375 -3.578125 C -6.734375 -2.71875 -6.3125 -1.9375 -5.5625 -1.46875 L -5.46875 -1.703125 L -6.546875 -1.703125 L -6.546875 -0.515625 L 2.609375 -0.515625 L 2.609375 -1.78125 L -0.890625 -1.78125 L -0.796875 -1.546875 C -0.140625 -2.078125 0.1875 -2.765625 0.1875 -3.59375 C 0.1875 -5.203125 -1.21875 -6.40625 -3.21875 -6.40625 Z M -3.234375 -5.09375 C -1.8125 -5.09375 -1.015625 -4.5 -1.015625 -3.40625 C -1.015625 -2.359375 -1.75 -1.78125 -3.234375 -1.78125 C -4.703125 -1.78125 -5.53125 -2.359375 -5.53125 -3.40625 C -5.53125 -4.515625 -4.734375 -5.09375 -3.234375 -5.09375 Z M -3.234375 -5.09375 "/>
2266
+ </symbol>
2267
+ <symbol overflow="visible" id="glyph1-19">
2268
+ <path style="stroke:none;" d=""/>
2269
+ </symbol>
2270
+ <symbol overflow="visible" id="glyph1-20">
2271
+ <path style="stroke:none;" d="M -7.3125 -1.84375 L -8.765625 -1.84375 L -8.765625 -0.4375 L -7.3125 -0.4375 L -5.5625 -0.78125 L -5.5625 -1.484375 Z M -7.3125 -1.84375 "/>
2272
+ </symbol>
2273
+ <symbol overflow="visible" id="glyph1-21">
2274
+ <path style="stroke:none;" d="M -3.234375 -6.25 C -5.40625 -6.25 -6.734375 -5.078125 -6.734375 -3.265625 C -6.734375 -1.5 -5.390625 -0.28125 -3.28125 -0.28125 C -1.15625 -0.28125 0.1875 -1.484375 0.1875 -3.28125 C 0.1875 -5.046875 -1.15625 -6.25 -3.234375 -6.25 Z M -3.234375 -4.9375 C -1.765625 -4.9375 -1.015625 -4.375 -1.015625 -3.28125 C -1.015625 -2.15625 -1.75 -1.609375 -3.28125 -1.609375 C -4.78125 -1.609375 -5.546875 -2.15625 -5.546875 -3.28125 C -5.546875 -4.40625 -4.796875 -4.9375 -3.234375 -4.9375 Z M -3.234375 -4.9375 "/>
2275
+ </symbol>
2276
+ <symbol overflow="visible" id="glyph1-22">
2277
+ <path style="stroke:none;" d="M -1.890625 -5.640625 C -2.828125 -5.640625 -3.4375 -4.984375 -3.734375 -3.734375 L -3.953125 -2.765625 C -4.15625 -1.953125 -4.28125 -1.734375 -4.734375 -1.734375 C -5.296875 -1.734375 -5.546875 -2.125 -5.546875 -2.9375 C -5.546875 -3.75 -5.328125 -4.03125 -4.53125 -4.0625 L -4.53125 -5.390625 C -5.90625 -5.375 -6.734375 -4.421875 -6.734375 -2.96875 C -6.734375 -1.515625 -5.84375 -0.421875 -4.6875 -0.421875 C -3.703125 -0.421875 -3.09375 -1.0625 -2.734375 -2.5625 L -2.515625 -3.484375 C -2.34375 -4.1875 -2.265625 -4.3125 -1.8125 -4.3125 C -1.21875 -4.3125 -1.015625 -3.875 -1.015625 -3 C -1.015625 -2.09375 -1.09375 -1.734375 -2.1875 -1.578125 L -2.1875 -0.265625 C -0.59375 -0.3125 0.1875 -1.265625 0.1875 -2.921875 C 0.1875 -4.5 -0.6875 -5.640625 -1.890625 -5.640625 Z M -1.890625 -5.640625 "/>
2278
+ </symbol>
2279
+ </g>
2280
+ <clipPath id="clip1">
2281
+ <path d="M 434 59.039062 L 436 59.039062 L 436 522 L 434 522 Z M 434 59.039062 "/>
2282
+ </clipPath>
2283
+ <clipPath id="clip2">
2284
+ <path d="M 59.039062 503 L 247 503 L 247 522 L 59.039062 522 Z M 59.039062 503 "/>
2285
+ </clipPath>
2286
+ <clipPath id="clip3">
2287
+ <path d="M 59.039062 503 L 248 503 L 248 522 L 59.039062 522 Z M 59.039062 503 "/>
2288
+ </clipPath>
2289
+ <clipPath id="clip4">
2290
+ <path d="M 59.039062 521 L 436 521 L 436 522 L 59.039062 522 Z M 59.039062 521 "/>
2291
+ </clipPath>
2292
+ <clipPath id="clip5">
2293
+ <path d="M 59.039062 503 L 436 503 L 436 505 L 59.039062 505 Z M 59.039062 503 "/>
2294
+ </clipPath>
2295
+ <clipPath id="clip6">
2296
+ <path d="M 59.039062 485 L 436 485 L 436 487 L 59.039062 487 Z M 59.039062 485 "/>
2297
+ </clipPath>
2298
+ <clipPath id="clip7">
2299
+ <path d="M 59.039062 467 L 436 467 L 436 469 L 59.039062 469 Z M 59.039062 467 "/>
2300
+ </clipPath>
2301
+ <clipPath id="clip8">
2302
+ <path d="M 59.039062 450 L 436 450 L 436 451 L 59.039062 451 Z M 59.039062 450 "/>
2303
+ </clipPath>
2304
+ <clipPath id="clip9">
2305
+ <path d="M 59.039062 432 L 436 432 L 436 433 L 59.039062 433 Z M 59.039062 432 "/>
2306
+ </clipPath>
2307
+ <clipPath id="clip10">
2308
+ <path d="M 59.039062 414 L 436 414 L 436 416 L 59.039062 416 Z M 59.039062 414 "/>
2309
+ </clipPath>
2310
+ <clipPath id="clip11">
2311
+ <path d="M 59.039062 396 L 436 396 L 436 398 L 59.039062 398 Z M 59.039062 396 "/>
2312
+ </clipPath>
2313
+ <clipPath id="clip12">
2314
+ <path d="M 59.039062 378 L 436 378 L 436 380 L 59.039062 380 Z M 59.039062 378 "/>
2315
+ </clipPath>
2316
+ <clipPath id="clip13">
2317
+ <path d="M 59.039062 361 L 436 361 L 436 362 L 59.039062 362 Z M 59.039062 361 "/>
2318
+ </clipPath>
2319
+ <clipPath id="clip14">
2320
+ <path d="M 59.039062 343 L 436 343 L 436 345 L 59.039062 345 Z M 59.039062 343 "/>
2321
+ </clipPath>
2322
+ <clipPath id="clip15">
2323
+ <path d="M 59.039062 325 L 436 325 L 436 327 L 59.039062 327 Z M 59.039062 325 "/>
2324
+ </clipPath>
2325
+ <clipPath id="clip16">
2326
+ <path d="M 59.039062 307 L 436 307 L 436 309 L 59.039062 309 Z M 59.039062 307 "/>
2327
+ </clipPath>
2328
+ <clipPath id="clip17">
2329
+ <path d="M 59.039062 289 L 436 289 L 436 291 L 59.039062 291 Z M 59.039062 289 "/>
2330
+ </clipPath>
2331
+ <clipPath id="clip18">
2332
+ <path d="M 59.039062 272 L 436 272 L 436 273 L 59.039062 273 Z M 59.039062 272 "/>
2333
+ </clipPath>
2334
+ <clipPath id="clip19">
2335
+ <path d="M 59.039062 254 L 436 254 L 436 256 L 59.039062 256 Z M 59.039062 254 "/>
2336
+ </clipPath>
2337
+ <clipPath id="clip20">
2338
+ <path d="M 59.039062 236 L 436 236 L 436 238 L 59.039062 238 Z M 59.039062 236 "/>
2339
+ </clipPath>
2340
+ <clipPath id="clip21">
2341
+ <path d="M 59.039062 218 L 436 218 L 436 220 L 59.039062 220 Z M 59.039062 218 "/>
2342
+ </clipPath>
2343
+ <clipPath id="clip22">
2344
+ <path d="M 59.039062 200 L 436 200 L 436 202 L 59.039062 202 Z M 59.039062 200 "/>
2345
+ </clipPath>
2346
+ <clipPath id="clip23">
2347
+ <path d="M 59.039062 183 L 436 183 L 436 184 L 59.039062 184 Z M 59.039062 183 "/>
2348
+ </clipPath>
2349
+ <clipPath id="clip24">
2350
+ <path d="M 59.039062 165 L 436 165 L 436 167 L 59.039062 167 Z M 59.039062 165 "/>
2351
+ </clipPath>
2352
+ <clipPath id="clip25">
2353
+ <path d="M 59.039062 147 L 436 147 L 436 149 L 59.039062 149 Z M 59.039062 147 "/>
2354
+ </clipPath>
2355
+ <clipPath id="clip26">
2356
+ <path d="M 59.039062 129 L 436 129 L 436 131 L 59.039062 131 Z M 59.039062 129 "/>
2357
+ </clipPath>
2358
+ <clipPath id="clip27">
2359
+ <path d="M 59.039062 112 L 436 112 L 436 113 L 59.039062 113 Z M 59.039062 112 "/>
2360
+ </clipPath>
2361
+ <clipPath id="clip28">
2362
+ <path d="M 59.039062 94 L 436 94 L 436 95 L 59.039062 95 Z M 59.039062 94 "/>
2363
+ </clipPath>
2364
+ <clipPath id="clip29">
2365
+ <path d="M 59.039062 76 L 436 76 L 436 78 L 59.039062 78 Z M 59.039062 76 "/>
2366
+ </clipPath>
2367
+ <clipPath id="clip30">
2368
+ <path d="M 434 59.039062 L 436 59.039062 L 436 522 L 434 522 Z M 434 59.039062 "/>
2369
+ </clipPath>
2370
+ </defs>
2371
+ <g id="surface6">
2372
+ <rect x="0" y="0" width="841" height="595" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
2373
+ <g clip-path="url(#clip1)" clip-rule="nonzero">
2374
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 434.898438 521.558594 L 434.898438 59.039062 "/>
2375
+ </g>
2376
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.003906 521.558594 L 340.933594 521.558594 "/>
2377
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.003906 521.558594 L 153.003906 528.761719 "/>
2378
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.933594 521.558594 L 340.933594 528.761719 "/>
2379
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
2380
+ <use xlink:href="#glyph0-1" x="149.503906" y="547.256836"/>
2381
+ </g>
2382
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
2383
+ <use xlink:href="#glyph0-2" x="337.433594" y="547.256836"/>
2384
+ </g>
2385
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 521.558594 L 59.039062 76.828125 "/>
2386
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 521.558594 L 51.839844 521.558594 "/>
2387
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 432.613281 L 51.839844 432.613281 "/>
2388
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 343.667969 L 51.839844 343.667969 "/>
2389
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 254.722656 L 51.839844 254.722656 "/>
2390
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 165.773438 L 51.839844 165.773438 "/>
2391
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 76.828125 L 51.839844 76.828125 "/>
2392
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
2393
+ <use xlink:href="#glyph1-1" x="41.538086" y="530.058594"/>
2394
+ <use xlink:href="#glyph1-2" x="41.538086" y="523.386719"/>
2395
+ <use xlink:href="#glyph1-1" x="41.538086" y="520.050781"/>
2396
+ </g>
2397
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
2398
+ <use xlink:href="#glyph1-1" x="41.538086" y="441.113281"/>
2399
+ <use xlink:href="#glyph1-2" x="41.538086" y="434.441406"/>
2400
+ <use xlink:href="#glyph1-3" x="41.538086" y="431.105469"/>
2401
+ </g>
2402
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
2403
+ <use xlink:href="#glyph1-1" x="41.538086" y="352.167969"/>
2404
+ <use xlink:href="#glyph1-2" x="41.538086" y="345.496094"/>
2405
+ <use xlink:href="#glyph1-4" x="41.538086" y="342.160156"/>
2406
+ </g>
2407
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
2408
+ <use xlink:href="#glyph1-1" x="41.538086" y="263.222656"/>
2409
+ <use xlink:href="#glyph1-2" x="41.538086" y="256.550781"/>
2410
+ <use xlink:href="#glyph1-5" x="41.538086" y="253.214844"/>
2411
+ </g>
2412
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
2413
+ <use xlink:href="#glyph1-1" x="41.538086" y="174.273438"/>
2414
+ <use xlink:href="#glyph1-2" x="41.538086" y="167.601562"/>
2415
+ <use xlink:href="#glyph1-6" x="41.538086" y="164.265625"/>
2416
+ </g>
2417
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
2418
+ <use xlink:href="#glyph1-1" x="41.538086" y="85.328125"/>
2419
+ <use xlink:href="#glyph1-2" x="41.538086" y="78.65625"/>
2420
+ <use xlink:href="#glyph1-7" x="41.538086" y="75.320312"/>
2421
+ </g>
2422
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
2423
+ <use xlink:href="#glyph1-8" x="27.135742" y="318.800781"/>
2424
+ <use xlink:href="#glyph1-9" x="27.135742" y="311.888672"/>
2425
+ <use xlink:href="#glyph1-10" x="27.135742" y="308.011719"/>
2426
+ <use xlink:href="#glyph1-11" x="27.135742" y="301.339844"/>
2427
+ <use xlink:href="#glyph1-12" x="27.135742" y="294.608398"/>
2428
+ <use xlink:href="#glyph1-10" x="27.135742" y="287.936523"/>
2429
+ <use xlink:href="#glyph1-13" x="27.135742" y="281.264648"/>
2430
+ <use xlink:href="#glyph1-14" x="27.135742" y="274.592773"/>
2431
+ <use xlink:href="#glyph1-15" x="27.135742" y="268.592773"/>
2432
+ </g>
2433
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
2434
+ <use xlink:href="#glyph1-8" x="822.057617" y="318.300781"/>
2435
+ <use xlink:href="#glyph1-16" x="822.057617" y="310.96875"/>
2436
+ <use xlink:href="#glyph1-17" x="822.057617" y="308.304688"/>
2437
+ <use xlink:href="#glyph1-18" x="822.057617" y="305.640625"/>
2438
+ <use xlink:href="#glyph1-19" x="822.057617" y="298.96875"/>
2439
+ <use xlink:href="#glyph1-20" x="822.057617" y="295.632812"/>
2440
+ <use xlink:href="#glyph1-14" x="822.057617" y="293.34082"/>
2441
+ <use xlink:href="#glyph1-21" x="822.057617" y="287.34082"/>
2442
+ <use xlink:href="#glyph1-17" x="822.057617" y="280.668945"/>
2443
+ <use xlink:href="#glyph1-13" x="822.057617" y="278.004883"/>
2444
+ <use xlink:href="#glyph1-22" x="822.057617" y="271.333008"/>
2445
+ <use xlink:href="#glyph1-20" x="822.057617" y="265.333008"/>
2446
+ </g>
2447
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 617.457031 247.496094 C 617.457031 251.972656 613.832031 255.597656 609.355469 255.597656 C 604.882812 255.597656 601.257812 251.972656 601.257812 247.496094 C 601.257812 243.023438 604.882812 239.398438 609.355469 239.398438 C 613.832031 239.398438 617.457031 243.023438 617.457031 247.496094 "/>
2448
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
2449
+ <use xlink:href="#glyph0-1" x="605.855469" y="251.772461"/>
2450
+ </g>
2451
+ <g clip-path="url(#clip2)" clip-rule="nonzero">
2452
+ <path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 59.039062 521.558594 L 246.96875 521.558594 L 246.96875 503.769531 L 59.039062 503.769531 Z M 59.039062 521.558594 "/>
2453
+ </g>
2454
+ <g clip-path="url(#clip3)" clip-rule="nonzero">
2455
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 521.558594 L 246.96875 521.558594 L 246.96875 503.769531 L 59.039062 503.769531 Z M 59.039062 521.558594 "/>
2456
+ </g>
2457
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 246.96875 521.558594 L 434.898438 521.558594 Z M 246.96875 521.558594 "/>
2458
+ <g clip-path="url(#clip4)" clip-rule="nonzero">
2459
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 521.558594 L 434.898438 521.558594 "/>
2460
+ </g>
2461
+ <g clip-path="url(#clip5)" clip-rule="nonzero">
2462
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 503.769531 L 434.898438 503.769531 "/>
2463
+ </g>
2464
+ <g clip-path="url(#clip6)" clip-rule="nonzero">
2465
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 485.980469 L 434.898438 485.980469 "/>
2466
+ </g>
2467
+ <g clip-path="url(#clip7)" clip-rule="nonzero">
2468
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 468.191406 L 434.898438 468.191406 "/>
2469
+ </g>
2470
+ <g clip-path="url(#clip8)" clip-rule="nonzero">
2471
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 450.402344 L 434.898438 450.402344 "/>
2472
+ </g>
2473
+ <g clip-path="url(#clip9)" clip-rule="nonzero">
2474
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 432.613281 L 434.898438 432.613281 "/>
2475
+ </g>
2476
+ <g clip-path="url(#clip10)" clip-rule="nonzero">
2477
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 414.824219 L 434.898438 414.824219 "/>
2478
+ </g>
2479
+ <g clip-path="url(#clip11)" clip-rule="nonzero">
2480
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 397.035156 L 434.898438 397.035156 "/>
2481
+ </g>
2482
+ <g clip-path="url(#clip12)" clip-rule="nonzero">
2483
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 379.246094 L 434.898438 379.246094 "/>
2484
+ </g>
2485
+ <g clip-path="url(#clip13)" clip-rule="nonzero">
2486
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 361.457031 L 434.898438 361.457031 "/>
2487
+ </g>
2488
+ <g clip-path="url(#clip14)" clip-rule="nonzero">
2489
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 343.667969 L 434.898438 343.667969 "/>
2490
+ </g>
2491
+ <g clip-path="url(#clip15)" clip-rule="nonzero">
2492
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 325.878906 L 434.898438 325.878906 "/>
2493
+ </g>
2494
+ <g clip-path="url(#clip16)" clip-rule="nonzero">
2495
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 308.089844 L 434.898438 308.089844 "/>
2496
+ </g>
2497
+ <g clip-path="url(#clip17)" clip-rule="nonzero">
2498
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 290.300781 L 434.898438 290.300781 "/>
2499
+ </g>
2500
+ <g clip-path="url(#clip18)" clip-rule="nonzero">
2501
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 272.511719 L 434.898438 272.511719 "/>
2502
+ </g>
2503
+ <g clip-path="url(#clip19)" clip-rule="nonzero">
2504
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 254.722656 L 434.898438 254.722656 "/>
2505
+ </g>
2506
+ <g clip-path="url(#clip20)" clip-rule="nonzero">
2507
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 236.933594 L 434.898438 236.933594 "/>
2508
+ </g>
2509
+ <g clip-path="url(#clip21)" clip-rule="nonzero">
2510
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 219.144531 L 434.898438 219.144531 "/>
2511
+ </g>
2512
+ <g clip-path="url(#clip22)" clip-rule="nonzero">
2513
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 201.355469 L 434.898438 201.355469 "/>
2514
+ </g>
2515
+ <g clip-path="url(#clip23)" clip-rule="nonzero">
2516
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 183.566406 L 434.898438 183.566406 "/>
2517
+ </g>
2518
+ <g clip-path="url(#clip24)" clip-rule="nonzero">
2519
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 165.773438 L 434.898438 165.773438 "/>
2520
+ </g>
2521
+ <g clip-path="url(#clip25)" clip-rule="nonzero">
2522
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 147.984375 L 434.898438 147.984375 "/>
2523
+ </g>
2524
+ <g clip-path="url(#clip26)" clip-rule="nonzero">
2525
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 130.195312 L 434.898438 130.195312 "/>
2526
+ </g>
2527
+ <g clip-path="url(#clip27)" clip-rule="nonzero">
2528
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 112.40625 L 434.898438 112.40625 "/>
2529
+ </g>
2530
+ <g clip-path="url(#clip28)" clip-rule="nonzero">
2531
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 94.617188 L 434.898438 94.617188 "/>
2532
+ </g>
2533
+ <g clip-path="url(#clip29)" clip-rule="nonzero">
2534
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 76.828125 L 434.898438 76.828125 "/>
2535
+ </g>
2536
+ <g clip-path="url(#clip30)" clip-rule="nonzero">
2537
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 434.898438 521.558594 L 434.898438 59.039062 "/>
2538
+ </g>
2539
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.003906 59.039062 L 340.933594 59.039062 "/>
2540
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.003906 59.039062 L 153.003906 59.039062 "/>
2541
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.933594 59.039062 L 340.933594 59.039062 "/>
2542
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
2543
+ <use xlink:href="#glyph0-1" x="132.003906" y="48.737305"/>
2544
+ <use xlink:href="#glyph0-3" x="138.675781" y="48.737305"/>
2545
+ <use xlink:href="#glyph0-4" x="142.011719" y="48.737305"/>
2546
+ <use xlink:href="#glyph0-5" x="146.007812" y="48.737305"/>
2547
+ <use xlink:href="#glyph0-6" x="152.679688" y="48.737305"/>
2548
+ <use xlink:href="#glyph0-5" x="156.015625" y="48.737305"/>
2549
+ <use xlink:href="#glyph0-2" x="162.6875" y="48.737305"/>
2550
+ <use xlink:href="#glyph0-7" x="169.359375" y="48.737305"/>
2551
+ </g>
2552
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
2553
+ <use xlink:href="#glyph0-5" x="328.433594" y="48.737305"/>
2554
+ <use xlink:href="#glyph0-3" x="335.105469" y="48.737305"/>
2555
+ <use xlink:href="#glyph0-4" x="338.441406" y="48.737305"/>
2556
+ <use xlink:href="#glyph0-5" x="342.4375" y="48.737305"/>
2557
+ <use xlink:href="#glyph0-7" x="349.109375" y="48.737305"/>
2558
+ </g>
2559
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 622.828125 521.558594 L 622.828125 521.558594 "/>
2560
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 622.828125 521.558594 L 622.828125 521.558594 "/>
2561
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
2562
+ <use xlink:href="#glyph0-8" x="567.328125" y="547.256836"/>
2563
+ <use xlink:href="#glyph0-9" x="575.992188" y="547.256836"/>
2564
+ <use xlink:href="#glyph0-10" x="582.664062" y="547.256836"/>
2565
+ <use xlink:href="#glyph0-11" x="592.660156" y="547.256836"/>
2566
+ <use xlink:href="#glyph0-12" x="599.332031" y="547.256836"/>
2567
+ <use xlink:href="#glyph0-13" x="606.003906" y="547.256836"/>
2568
+ <use xlink:href="#glyph0-3" x="610" y="547.256836"/>
2569
+ <use xlink:href="#glyph0-14" x="613.335938" y="547.256836"/>
2570
+ <use xlink:href="#glyph0-15" x="620.007812" y="547.256836"/>
2571
+ <use xlink:href="#glyph0-3" x="623.34375" y="547.256836"/>
2572
+ <use xlink:href="#glyph0-16" x="626.679688" y="547.256836"/>
2573
+ <use xlink:href="#glyph0-14" x="632.932617" y="547.256836"/>
2574
+ <use xlink:href="#glyph0-17" x="639.604492" y="547.256836"/>
2575
+ <use xlink:href="#glyph0-17" x="645.604492" y="547.256836"/>
2576
+ <use xlink:href="#glyph0-12" x="651.604492" y="547.256836"/>
2577
+ <use xlink:href="#glyph0-17" x="658.276367" y="547.256836"/>
2578
+ <use xlink:href="#glyph0-18" x="664.276367" y="547.256836"/>
2579
+ <use xlink:href="#glyph0-3" x="667.612305" y="547.256836"/>
2580
+ <use xlink:href="#glyph0-1" x="670.948242" y="547.256836"/>
2581
+ </g>
2582
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 521.558594 L 810.761719 521.558594 L 810.761719 59.039062 L 59.039062 59.039062 L 59.039062 521.558594 "/>
2583
+ </g>
2584
+ </svg>
2585
+ http_version:
2586
+ recorded_at: Tue, 14 Oct 2014 18:50:53 GMT
2587
+ - request:
2588
+ method: get
2589
+ uri: https://public.opencpu.org/ocpu/tmp/x0340b06b1b/graphics/1/png
2590
+ body:
2591
+ encoding: US-ASCII
2592
+ string: ''
2593
+ headers: {}
2594
+ response:
2595
+ status:
2596
+ code: 200
2597
+ message: OK
2598
+ headers:
2599
+ Server:
2600
+ - nginx/1.4.6 (Ubuntu)
2601
+ Date:
2602
+ - Tue, 14 Oct 2014 18:50:55 GMT
2603
+ Content-Type:
2604
+ - image/png
2605
+ Transfer-Encoding:
2606
+ - chunked
2607
+ Connection:
2608
+ - keep-alive
2609
+ Cache-Control:
2610
+ - max-age=86400, public
2611
+ Access-Control-Allow-Origin:
2612
+ - "*"
2613
+ Access-Control-Allow-Headers:
2614
+ - Origin, Content-Type, Accept, Accept-Encoding, Cache-Control
2615
+ Access-Control-Expose-Headers:
2616
+ - Location, X-ocpu-session, Content-Type, Cache-Control
2617
+ X-Ocpu-R:
2618
+ - R version 3.1.1 (2014-07-10)
2619
+ X-Ocpu-Locale:
2620
+ - en_US.UTF-8
2621
+ X-Ocpu-Time:
2622
+ - 2014-10-14 11:46:11 PDT
2623
+ X-Ocpu-Version:
2624
+ - 1.4.4
2625
+ X-Ocpu-Server:
2626
+ - rApache
2627
+ X-Ocpu-Cache:
2628
+ - HIT
2629
+ body:
2630
+ encoding: ASCII-8BIT
2631
+ string: !binary |-
2632
+ iVBORw0KGgoAAAANSUhEUgAAAyAAAAJYCAMAAACtqHJCAAAC1lBMVEUAAAAB
2633
+ AQECAgIDAwMEBAQFBQUGBgYHBwcJCQkKCgoLCwsMDAwNDQ0ODg4PDw8QEBAR
2634
+ ERESEhITExMUFBQVFRUXFxcYGBgZGRkaGhobGxscHBwdHR0eHh4fHx8hISEi
2635
+ IiIjIyMkJCQlJSUmJiYnJycoKCgpKSkqKiorKyssLCwtLS0uLi4vLy8wMDAx
2636
+ MTEyMjIzMzM0NDQ1NTU2NjY3Nzc4ODg5OTk6Ojo7Ozs8PDw9PT0+Pj4/Pz9A
2637
+ QEBBQUFCQkJDQ0NERERFRUVGRkZHR0dISEhJSUlKSkpLS0tMTExNTU1OTk5P
2638
+ T09QUFBRUVFSUlJTU1NVVVVWVlZXV1dYWFhaWlpbW1tcXFxdXV1eXl5fX19g
2639
+ YGBhYWFiYmJjY2NkZGRlZWVmZmZnZ2doaGhpaWlqampra2tsbGxtbW1ubm5v
2640
+ b29wcHBxcXFycnJzc3N0dHR1dXV2dnZ3d3d4eHh5eXl6enp7e3t8fHx9fX1+
2641
+ fn5/f3+AgICBgYGCgoKDg4OEhISFhYWGhoaHh4eIiIiJiYmKioqLi4uMjIyN
2642
+ jY2Ojo6Pj4+QkJCSkpKTk5OUlJSVlZWWlpaXl5eYmJiZmZmampqbm5ucnJyd
2643
+ nZ2enp6fn5+goKChoaGjo6OlpaWnp6eoqKipqamqqqqrq6usrKytra2urq6v
2644
+ r6+wsLCxsbGysrKzs7O0tLS1tbW2tra3t7e4uLi5ubm6urq7u7u8vLy9vb2+
2645
+ vr6/v7/AwMDBwcHCwsLExMTFxcXGxsbHx8fIyMjJycnKysrLy8vMzMzOzs7P
2646
+ z8/Q0NDR0dHS0tLT09PW1tbX19fY2Nja2trb29vc3Nzd3d3e3t7f39/g4ODh
2647
+ 4eHi4uLj4+Pk5OTl5eXm5ubn5+fo6Ojp6enq6urr6+vs7Ozt7e3u7u7v7+/w
2648
+ 8PDx8fHy8vLz8/P09PT19fX29vb39/f4+Pj5+fn6+vr7+/v8/Pz9/f3+/v7/
2649
+ //9UfuAxAAAZiklEQVR4nO3dj59VdZ3H8VFmFxlw+FULiFgMGIYTUGsqG1hS
2650
+ sVYKNmxlomBtWZubJq0asxttS5LZbu3uiMuqSVCgUVu7Q4KF1A5preMqkvJj
2651
+ 1JlhFgxhmB/f/2DvnHuZGc499zuXe+6bcz7zeD0fj+6P87338G1mXp5z75lz
2652
+ p8IBKKgi6QkAaUYggAeBAB4EAngQCOBBIIAHgQAeBAJ4EAjgQSCAB4EAHgQC
2653
+ eBAI4EEggAeBAB4EAngQCOBBIIAHgQAeBAJ4EAjgQSCAB4EAHgQCeBAI4EEg
2654
+ gAeBAB4EAngQCOBBIIAHgQAeBAJ4EAjgQSCAB4EAHgQCeBAI4EEggAeBAB4p
2655
+ CGRxc+7G13/m9swZe+OJ4E7u1mMzRy181m38l8RmV9jAXAdmnsqJIobEA9m+
2656
+ siIXSGttT9fkfzt49eq+O7lbLWN+fOSet7vOS/6Q5BwjDcx10MzTOFHEkXgg
2657
+ 624dlQtk3X1u+9uc21nTdyd3a+t85zrPOey+8mCSc4w0MNfBM0/hRBFH4oE4
2658
+ NyUXyPynXUOdc22VPZk7uVtHX3XuyYt63RMfTnSKUQbmOnjmKZwo4khPIN1/
2659
+ fNStXeHcyYojmXv9t3ofm/Ij514an+gUowzMdfDMUzhRxJGeQF59U/a/yu0j
2660
+ Tm1B+m61LZnX5Pp+Bo8nOscIA3MdPPMUThRxpCuQxtnO7Xpr373crRNz7+ru
2661
+ u9sz8o0EZxhpYK6DZ57CiSKO9ATSt6PSNfmxN5bWO7f5QO7Wxtp9Gd3u5XEJ
2662
+ TzLfqbmePvMUThRxpCeQvpe67r8vnbD8hHNV23K37qzo0+p2fCjZOUbJzdWd
2663
+ NvM0ThQxpCCQU9bdV3hs9fqzN48zN2jm6Z4ozliKAmmt7Sk0lPLjbwMzT/lE
2664
+ ccZSFIj7+58VGtn4z2dzHmeuf+ZpnyjOVJoCAVKHQAAPAgE8CATwIBDAg0AA
2665
+ jxiBtD3QoHH7X3zCmGWirwT0HjqpCuT7HxNN+a/qkv6BP1NLRV+JhlGqFeOU
2666
+ K1+QBfLd0p+L4oxNegLD3woCMYxA5AjEMgKRIxDLCESOQCwjEDkCsYxA5AjE
2667
+ MgKRIxDLCESOQCwjELnyBPJaR/4yAtEjELnYgXzoZbf/3ef+0VUHwwMEokcg
2668
+ crEDGdns6pYfO3nnkvAAgegRiFw5AnnLc851nB8eIBA9ApGLH8gTXR/+iXO/
2669
+ mBweIBA9ApGLHciiC0eOvdjtGPut8ACB6BGIXBnexTr5wi/dr3bkLSYQPQKR
2670
+ K9dxkAPb+m8+lz3T5JNrSp8VinNB0hMY/soVyOaq/pvNmwLXrCx9VigOgcjp
2671
+ jqTftqz056I47GLJlSOQniNRHytNIHoEIhc7kOOrayorRkyvPxEeIBA9ApGL
2672
+ HcgNi3a2nWzfteTm8ACB6BGIXOxAqg8FV8cmhgcIRI9A5GIHUrshuNoyJzxA
2673
+ IHoEIhc7kKZJs+pW1M2evCc8QCB6BCIX/12srsaGtQ2NXXnLCUSPQOQ4DmIZ
2674
+ gcgRiGUEIkcglhGIHIFYRiByBGIZgcgRiGUEIkcglhGIHIFYRiBywkC+UPpz
2675
+ UZypSU9g+BMGcmvpz0VxOKNQjl0sy9jFkiMQywhEjkAsIxA5ArGMQOQIxDIC
2676
+ kSMQywhEjkAsIxA5ArGMQOQIxDICkSMQywhEjkAsIxA5ArGMQOQIxDICkSMQ
2677
+ ywhEjkAsIxA5ArGMQOQ4o9AyziiU44xCy6YkPYHhj10sy9jFkiMQywhEjkAs
2678
+ IxA5ArGMQOQIxDICkSMQywhEjkAsIxA5ArGMQOQIxDICkSMQywhEjkAsIxA5
2679
+ ArGMQOQIxDICkSMQywhEjkAsIxA5ArGMQOSEgdxe+nNRnAuTnsDwxxmFlk1O
2680
+ egLDH7tYlrGLJUcglhGIHIFYRiByBGIZgcgRiGUEIkcglhGIHIFYRiByBGIZ
2681
+ gcgRiGUEIkcglhGIHIFYRiByBGIZgcgRiGUEIkcglhGIHIFYRiByBGIZgchx
2682
+ RqFl05KewPAnDOTTpT8XxZmU9ASGP3axLGMXS45ALCMQOQKxjEDkCMQyApEj
2683
+ EMsIRI5ALCMQOQKxjEDkCMQyApErUyC7T+QtIhA9ApErUyAT9uctIhA9ApGL
2684
+ HUjViD4V544IDxCIHoHIxQ7k2cs/ure1ddxvW8MDBKJHIHLxd7G675/5E3ax
2685
+ kkEgcuV4DfLCwk+MIZAkEIhcWV6k9zQsa8tbSCB6BCJXruMgB7aFlxCIHoHI
2686
+ lSuQzVX9N3+9NjD/c6XPCsXhjEI5wZH03zcGlt5U2oxQPM4olCtHID1HeiKW
2687
+ soulxy6WXOxAjq+uqawYMb0+73dNCESPQORiB3LDop1tJ9t3Lbk5PEAgegQi
2688
+ FzuQ6kPB1bGJ4QEC0SMQudiB1G4IrrbMCQ8QiB6ByMUOpGnSrLoVdbMn7wkP
2689
+ EIgegcjFfxerq7FhbUNjV95yAtEjEDnOKLSMQOQIxDICkSMQywhEjkAsIxA5
2690
+ ArGMQOQIxDICkSMQywhEjkAsIxA5ArGMQOT4G4WWcUahHH+j0LI3Jz2B4Y9d
2691
+ LMvYxZIjEMsIRI5ALCMQOQKxjEDkCMQyApEjEMsIRI5ALCMQOQKxjEDkCMQy
2692
+ ApEjEMsIRI5ALCMQOQKxjEDkCMQyApEjEMsIRI5ALCMQOQKxjEDkhIGsKv25
2693
+ KM5FSU9g+BMGsqL056I4nFEoxy6WZexiyRGIZQQiRyCWEYgcgVhGIHIEYhmB
2694
+ yBGIZQQiRyCWEYgcgVhGIHIEYhmByBGIZQQiRyCWEYgcgVhGIHIEYhmByBGI
2695
+ ZQQiRyCWEYgcgVhGIHKcUWjZW5KewPDHGYWWcUahHLtYlrGLJUcglhGIHIFY
2696
+ RiByBGIZgcgRiGUEIkcglhGIHIFYRiByBGIZgcgRiGUEIkcglhGIHIFYRiBy
2697
+ BGIZgcgRiGUEIkcglhGIHIFYRiByBGIZgchxRqFlnFEoxxmFlnFGoRy7WJax
2698
+ iyVHIJalPpD2b19zxbvmf/KHPUlPpGQEYlnaA3ngigfbMlfP3vWeZ5KeSqkI
2699
+ xLKUB3L7F7tztw4t/K8kJxIDgViW7kC+ecfA7aNX/i65icRBIJalOpCXr8q+
2700
+ 8ljc3Hf5/KJEJ1MyArEs1YHcvqPvcvvKiiAQ97ldic6mVARiWaoDmR9sQNbd
2701
+ OiobyC9sHjguUyAn8hcRiF6aA3ljce7GlGwgx/48ubnEEDuQ1z47/0uv1Fa8
2702
+ 8/nwAIHopTmQ/Z/I3cgF4hYmNpU4YgfykQ9uXDFp7eG7PxgeIBC9NAfyxqkt
2703
+ xqktyOLCj02x2IFU/Z9rq2h3R8eEBwhEL82BuCt7s9e5QHZ/McG5lC52IBc2
2704
+ ud6NzjX/SXiAQPRSHcjnn8pe5wK5Y2eCcyld7EA2VF/b7dzDNfeEBwhEL9WB
2705
+ vLg4uwnJBvLy1b2JzqZU8d/Fev7hHufWb837v08geqkOxK1dM3D7+HuN/jZW
2706
+ uY6DHNgWXkIgeukOpPeW/kIOf2BrkjOJoVyBbK7qv/nEpwKz7/A8HGXx1qQn
2707
+ 4Nf7jat++Ebm+uC6y3+Z9FxKJTiS3rYn8LHlpc0IxXtT0hMYyv76q6541/yP
2708
+ PNiZ9ERKVo5Aeo5EnQ/DLpZeunexhoXYgRxfXVNZMWJ6fd4vmxCIHoHIxQ7k
2709
+ hkU7206271pyc3iAQPQIRC52INWHgqtjE8MDBKJHIHKxA6ndEFxtmRMeIBA9
2710
+ ApGLHUjTpFl1K+pmT94THiAQPQKRKyWQzz/ZPeheV2PD2obGrrxHEYgegciV
2711
+ EsjqS9/8mZ/nFxFCIHoEIpcJ5Jql9e2FhgvsYu2978/efMt/nvSumUD0CEQu
2712
+ E8g/PfBUwR/1AoF0bFo+7pLLJ2/xrZlA9AhELruL9Xzn8e+sj/p1gMhA7l1Q
2713
+ 9f5/fNG5HXnngAxGIHoEIhcE8ncjW+99x7xbIoYjA7nph0eD6z+wBUkYgcgF
2714
+ gYx/uveiZ/aNjxiODKTzu41u67qIDzI5DYHoEYhcEEj1vmem9e4fHTEcGcgn
2715
+ 5za5Z+bfNMSaCUSPQOSCQP5yxvRvvVT7kYjhyEBG781cvFQ9xJoJRI9A5IJA
2716
+ ujY/2vXivUcihiMDeeuvMhe7h/rzXwSiRyBypRwofHTC579528SHhljzbXeX
2717
+ OicUa3rSExj+gkC2Xz6zT8Rw9HGQ57766dVDnoN/240xp4Yh5f0KNcotCOTC
2718
+ Vf/TnBExzIdXpxq7WHJBIJPeKDQcGUjhDc5gBKJHIHJBIOv+odCvHkYGUniD
2719
+ MxiB6BGIXBDIlVVjZpzBa5DCG5zBCESPQOSCQJqzIoYjAym8wRmMQPQIRK6U
2720
+ t3kLb3AGIxA9ApHLBDLyezNnntHbvIU3OIMRiB6ByGUC+enBM9zFcq67ZeiP
2721
+ 6iYQPQKRy+1idbdEv6yIDOTg+6rG7rts7xBrJhA9ApELAnnlo5WjKq9/NWI4
2722
+ MpD333p8Ws/q9w6xZgLRIxC5IJBrb3rNtS6/LmI4MpDzOtw0d3jUEGsmED0C
2723
+ kQsCGXM4c9F+fsRwZCCXbssE8vNLhlgzgegRiFwQSM32zMX2ot/F2jnh+jE3
2724
+ TvzpEGsmED0CkQsC2Vy9vH559Q8ihqPfxWp7aM36Q0OtmUD0CEQu+y7W3vtX
2725
+ 3R95xJDf5k01ApELAin8KQyRgVyWNcSaCUSPQOSCQAp/CkNkILt3735q04JN
2726
+ Q6yZMwr1OKNQLgik8KcwFN7Faq8dYs2cUajHGYVyQSCFP4WhcCDPjBlizexi
2727
+ 6bGLJRcEUvhTGAq+BplXedsQayYQPQKRy76LVfBTGAq9Btm9u3moX1ckED0C
2728
+ kSvtzx8Ug0D0CESulD9/MGVsdY5vzQSiRyBypZxR+K8Lf3lo99Xf7ujo8D2V
2729
+ QPQIRK6UQC44kLl45YIh1kwgegQiV0ogU3+Rudg1eYg1E4gegchlA+n93x3P
2730
+ 9UQNRwbSMP7L6/9m/DeGWDOB6BGIXBDIs5dOmPum2cWfk/7rLy77XCNv8yaP
2731
+ QOSCQN795ZOu6+4rIob50IZUIxC57F+Yas1cdET97ggf2pBqBCIXBPLx72Q2
2732
+ CP9+fcQwH9qQagQiFwSysvLt186tWLxsWd7PNB/akGoEIpf9ZcV+4WE+tCHV
2733
+ CESulOMgfGhDWhCIXCmfzVvkhzZwRqEcZxTKlfLZvLOfLmbNnFGoxxmFcqXs
2734
+ Yq35VGcRa2YXS49dLLlMILWnRAxHBrKgevR0/j5IGhCIXCaQp0+JGObvg6Qa
2735
+ gchlAqnqcO57r0cPRwTie/hgBKJHIHKZQCoyP/HV+6KHIwLxPXwwAtEjEDkC
2736
+ sYxA5AjEMgKR6wvkiaamqsebmpoihqMC8Tx8MALRIxC5TCATTokYjgjE9/DB
2737
+ CESPQORKOVBYHALRIxA5ArGMQOQIxDICkSMQywhEjkAsIxA5ArGMQOQIxDIC
2738
+ kRMGUl/6c1GcmqQnMPwJA+GMQrmhDtYiNnaxLGMXS45ALCMQOQKxjEDkCMQy
2739
+ ApEjEMsIRI5ALCMQOQKxjEDkCMQyApErQyCH+/7aVHdreDGB6BGIXOxAnr3k
2740
+ nLdsc25f3iMJRI9A5GIH8p6vdD45pYlAEkEgcrEDOe+oc4/N6yaQJBCIXOxA
2741
+ ZvzYud7r7iKQJBCIXOxAto6e/6prnfMOAkkAgcjFfxerZWtmJ+vExjvDywlE
2742
+ j0DkynUc5MC28BIC0SMQuXIFsrmq/+bjHw3UrCp9VijOjKQnMPwJjqR3Hg58
2743
+ 5mOlzQjFG5/0BIa/cgTSc6QnYim7WHrsYsnFDuT46prKihHT60+EBwhEj0Dk
2744
+ Ygdyw6KdbSfbdy25OTxAIHoEIhc7kOpDwdWxvD/ZTSB6BCIXO5DaDcHVljnh
2745
+ AQLRIxC52IE0TZpVt6Ju9uQ94QEC0SMQufjvYnU1NqxtaOzKW04gegQixxmF
2746
+ lhGIHIFYRiByBGIZgcgRiGUEIkcglhGIHIFYRiByBGIZgcgRiGUEIkcglhGI
2747
+ HH+j0DLOKJQTBvLx0p+L4oxPegLDH7tYlrGLJUcglhGIHIFYRiByBGIZgcgR
2748
+ iGUEIkcglhGIHIFYRiByBGIZgcgRiGUEIkcglhGIHIFYRiByBGIZgcgRiGUE
2749
+ IkcglhGIHIFYRiByBGIZgcgJA1lT+nNRnJlJT2D444xCy8YlPYHhj10sy9jF
2750
+ kiMQywhEjkAsIxA5ArGMQOQIxDICkSMQywhEjkAsIxA5ArGMQOQIxDICkSMQ
2751
+ ywhEjkAsIxA5ArGMQOQIxDICkSMQywhEjkAsIxA5ArGMQOQ4o9Cyi5OewPDH
2752
+ FsQytiByBGIZgcgRiGUEIkcglhGIHIFYRiByBGIZgcgRiGUEIkcglhGIHIFY
2753
+ RiByBGIZgcgRiGUEIkcglhGIHIFYRiByBGIZgcgRiGUEIkcglhGIHIFYRiBy
2754
+ nFFoGWcUyrEFsYwtiByBWEYgcgRiGYHIEYhlBCJHIJYRiByBWEYgcgRiGYHI
2755
+ EYhlBCJHIJYRiByBWEYgcgRiGYHIxQ6k+ZTwAIHoEYhc7EAWV4yaEggPEIge
2756
+ gcjF38VaeWv0cgLRIxC5+IFsXxe9nED0CESOF+mWEYhcuQI5sC28hED0CESu
2757
+ XIFsruq/uenqwIX3lD4rFIczCuXYxbKMLYhcOQLpOdITsZRA9AhELnYgx1fX
2758
+ VFaMmF5/IjxAIHoEIhc7kBsW7Ww72b5ryc3hAQLRIxC52IFUHwqujk0MDxCI
2759
+ HoHIxQ6kdkNwtWVOeIBA9AhELnYgTZNm1a2omz15T3iAQPQIRC7+u1hdjQ1r
2760
+ Gxq78pYTiB6ByHEcxDICkSMQywhEjkAsIxA5ArGMQOQIxDICkSMQywhEjkAs
2761
+ IxA5ArGMQOQIxDICkRMG8vXSn4vicEahHFsQy9iCyBGIZQQiRyCWEYgcgVhG
2762
+ IHIEYhmByBGIZQQiRyCWEYgcgVhGIHIEYhmByBGIZQQiRyCWEYgcgVhGIHIE
2763
+ YhmByBGIZQQiRyCWEYgcgVhGIHIEYhmByAkDWVP6c1EcziiUYwtiGVsQOQKx
2764
+ jEDkCMQyApEjEMsIRI5ALCMQOQKxjEDkCMQyApEjEMsIRI5ALCMQOQKxjEDk
2765
+ CMQyApEjEMsIRI5ALCMQOQKxjEDkCMQyApEjEMsIRI5ALCMQOc4otIwzCuXY
2766
+ gljGFkSOQCwjEDkCsYxA5AjEMgKRIxDLCESOQCwjEDkCsYxA5AjEMgKRIxDL
2767
+ CESOQCwjEDkCsYxA5AjEMgKRIxDLCESOQCwjEDkCsYxA5AjEMgKRIxDLCERO
2768
+ GMi3S38uisMZhXLCQK6oMObR0v/PJoQtiByBDCAQ5CGQAQSCPAQygECQh0AG
2769
+ EAjyEMgAAkEeAhlAIMhDIAMIBHkIZACBIE85Auk50hOxlED0CEQudiDHV9dU
2770
+ VoyYXn8iPEAgegQiFzuQGxbtbDvZvmvJzeEBAtEjELnYgVQfCq6OTQwPEIge
2771
+ gcjFDqR2Q3C1ZU54gED0CEQudiBNk2bVraibPXlPeIBA9AhELv67WF2NDWsb
2772
+ GrvylhOIHoHIles4yIFt4SUEokcgcuUKZHPVwM15gQumzzFmrmzN80TGqVas
2773
+ MmNq0jM4UzUHyxPIWfS3TyQ9gzO1MOkJQCXGkXQZAkFqxDiSLkMgSI0YR9Jl
2774
+ CASpEeNIugyBIDViHEmXIRCkRowj6TJrnjxr/1SZLEp6AlCJcSRdpvOsvmdW
2775
+ DmfvDQycZWk8DgKkBoEAHgQCeBAI4EEggAeBAB4EAngQCOCRxkAWNyc9gzPz
2776
+ 2MxRC59NehJl11Jxf+Zy24L8kUc+7nnaHWNfdW5B9gzO/UX+U2n+hqcvkO0r
2777
+ K1L89YrQMubHR+55e9KzKLuWc8btLyGQsS2Zi9c7OqZu6+go7jci0v0NT18g
2778
+ 624dleKvV4St853rPOdw0tMot5aRX1oSBLL7Mtf3v+evuH3ClU+9c/Rfu0eW
2779
+ Ljv/st8592TtqA8ccs0L1szue/wPZpy/5FV33TlTXwuePm3HqUXdnxk74au5
2780
+ y9xzcneqgs85SPc3PH2BODclxV+vCEcz+xRPXtSb9DTKrWXk61N/NDiQc7/X
2781
+ Pm/aS7sq2h+pePjoPRd3t41//PBn3+eaq2/5Tebhe6sb25fXOVf9evbpmUBy
2782
+ izbPePE3I1/IXuaek73jNh/IPjbN33ACKYPex6b8KOk5lF3LSPf41NcHBTLF
2783
+ uVWrMt+dfY/Mc65rYvND1zt3vKqneXRn38Pvv9G51yq7BweSW/To9N+61s7s
2784
+ Ze452Tv9/1Sav+EEEl/bknlNSc+h/DKBuOtuzwXyVCaQmc7dvSbzk7/vkcxP
2785
+ uZu7c82YadOmjW1pnh48fFV95mJUy+BAcou6vjXtom8ez17mnpO90/9Ppfkb
2786
+ TiCxnZh7V3fScxDoC+Sl6q9lAslsMDadFsjczIuu8XvXZzYQPft6m2cGD79/
2787
+ eea/FJVdp21BsotefKn36Xd8J3uZe072Tv8/leZvOIHEtrF2X8awa6QvEHff
2788
+ eQtcc+VvDy84LZBzHzx8x5/2Hpy4o6P+MpcL5IXqnx9evvS01yC5RffWHvj9
2789
+ vPXZy9xzsnd4DVKiNH+9ItwZvOffmvQ0yi0IpKt2gev9wuhLv39aIJ+67vz3
2790
+ 7HXuP9523lUvnArEbaoZc+0rpwWSW3Tkw1XjVnZmL3PPyd2pyn1aZ5q/4WkM
2791
+ BEgNAgE8CATwIBDAg0AADwIBPAgE8CAQwINAAA8CATwIBPAgEMCDQAAPAgE8
2792
+ CATwIBDAg0AADwIBPAgE8CAQwINAAA8CATwIBPAgEMCDQAAPAgE8CATwIBDA
2793
+ g0AADwIBPAgE8CAQwINAAA8CATwIBPAgEMCDQAAPAgE8CATwIBDAg0AADwIB
2794
+ PAgE8CAQwINAAA8CATwIBPAgEMDj/wF1DghHtBoWeAAAAABJRU5ErkJggg==
2795
+ http_version:
2796
+ recorded_at: Tue, 14 Oct 2014 18:50:55 GMT
2797
+ - request:
2798
+ method: get
2799
+ uri: https://public.opencpu.org/ocpu/tmp/x0340b06b1b/R/.val
2800
+ body:
2801
+ encoding: US-ASCII
2802
+ string: ''
2803
+ headers: {}
2804
+ response:
2805
+ status:
2806
+ code: 302
2807
+ message: Found
2808
+ headers:
2809
+ Server:
2810
+ - nginx/1.4.6 (Ubuntu)
2811
+ Date:
2812
+ - Tue, 14 Oct 2014 18:50:56 GMT
2813
+ Location:
2814
+ - https://public.opencpu.org/ocpu/tmp/x0340b06b1b/R/.val/print
2815
+ Transfer-Encoding:
2816
+ - chunked
2817
+ Connection:
2818
+ - keep-alive
2819
+ Cache-Control:
2820
+ - max-age=86400, public
2821
+ Access-Control-Allow-Origin:
2822
+ - "*"
2823
+ Access-Control-Allow-Headers:
2824
+ - Origin, Content-Type, Accept, Accept-Encoding, Cache-Control
2825
+ Access-Control-Expose-Headers:
2826
+ - Location, X-ocpu-session, Content-Type, Cache-Control
2827
+ X-Ocpu-R:
2828
+ - R version 3.1.1 (2014-07-10)
2829
+ X-Ocpu-Locale:
2830
+ - en_US.UTF-8
2831
+ X-Ocpu-Time:
2832
+ - 2014-10-14 11:46:13 PDT
2833
+ X-Ocpu-Version:
2834
+ - 1.4.4
2835
+ X-Ocpu-Server:
2836
+ - rApache
2837
+ X-Ocpu-Cache:
2838
+ - HIT
2839
+ body:
2840
+ encoding: UTF-8
2841
+ string: |
2842
+ Redirect to http://ocpu/ocpu/tmp/x0340b06b1b/R/.val/print
2843
+ http_version:
2844
+ recorded_at: Tue, 14 Oct 2014 18:50:57 GMT
2845
+ - request:
2846
+ method: get
2847
+ uri: https://public.opencpu.org/ocpu/tmp/x0340b06b1b/R/.val/print
2848
+ body:
2849
+ encoding: US-ASCII
2850
+ string: ''
2851
+ headers: {}
2852
+ response:
2853
+ status:
2854
+ code: 200
2855
+ message: OK
2856
+ headers:
2857
+ Server:
2858
+ - nginx/1.4.6 (Ubuntu)
2859
+ Date:
2860
+ - Tue, 14 Oct 2014 18:50:58 GMT
2861
+ Content-Type:
2862
+ - text/plain; charset=utf-8
2863
+ Transfer-Encoding:
2864
+ - chunked
2865
+ Connection:
2866
+ - keep-alive
2867
+ Cache-Control:
2868
+ - max-age=86400, public
2869
+ Access-Control-Allow-Origin:
2870
+ - "*"
2871
+ Access-Control-Allow-Headers:
2872
+ - Origin, Content-Type, Accept, Accept-Encoding, Cache-Control
2873
+ Access-Control-Expose-Headers:
2874
+ - Location, X-ocpu-session, Content-Type, Cache-Control
2875
+ X-Ocpu-R:
2876
+ - R version 3.1.1 (2014-07-10)
2877
+ X-Ocpu-Locale:
2878
+ - en_US.UTF-8
2879
+ X-Ocpu-Time:
2880
+ - 2014-10-14 11:46:15 PDT
2881
+ X-Ocpu-Version:
2882
+ - 1.4.4
2883
+ X-Ocpu-Server:
2884
+ - rApache
2885
+ Vary:
2886
+ - Accept-Encoding
2887
+ X-Ocpu-Cache:
2888
+ - HIT
2889
+ body:
2890
+ encoding: UTF-8
2891
+ string: "$freq\n 1 2 \n0.5 0.5 \n\n$nmax\n[1] 50\n\n"
2892
+ http_version:
2893
+ recorded_at: Tue, 14 Oct 2014 18:50:58 GMT
2894
+ - request:
2895
+ method: get
2896
+ uri: https://public.opencpu.org/ocpu/tmp/x0340b06b1b/info
2897
+ body:
2898
+ encoding: US-ASCII
2899
+ string: ''
2900
+ headers: {}
2901
+ response:
2902
+ status:
2903
+ code: 302
2904
+ message: Found
2905
+ headers:
2906
+ Server:
2907
+ - nginx/1.4.6 (Ubuntu)
2908
+ Date:
2909
+ - Tue, 14 Oct 2014 18:51:00 GMT
2910
+ Location:
2911
+ - https://public.opencpu.org/ocpu/tmp/x0340b06b1b/info/print
2912
+ Transfer-Encoding:
2913
+ - chunked
2914
+ Connection:
2915
+ - keep-alive
2916
+ Cache-Control:
2917
+ - max-age=86400, public
2918
+ Access-Control-Allow-Origin:
2919
+ - "*"
2920
+ Access-Control-Allow-Headers:
2921
+ - Origin, Content-Type, Accept, Accept-Encoding, Cache-Control
2922
+ Access-Control-Expose-Headers:
2923
+ - Location, X-ocpu-session, Content-Type, Cache-Control
2924
+ X-Ocpu-R:
2925
+ - R version 3.1.1 (2014-07-10)
2926
+ X-Ocpu-Locale:
2927
+ - en_US.UTF-8
2928
+ X-Ocpu-Time:
2929
+ - 2014-10-14 11:46:17 PDT
2930
+ X-Ocpu-Version:
2931
+ - 1.4.4
2932
+ X-Ocpu-Server:
2933
+ - rApache
2934
+ X-Ocpu-Cache:
2935
+ - HIT
2936
+ body:
2937
+ encoding: UTF-8
2938
+ string: |
2939
+ Redirect to http://ocpu/ocpu/tmp/x0340b06b1b/info/print
2940
+ http_version:
2941
+ recorded_at: Tue, 14 Oct 2014 18:51:00 GMT
2942
+ - request:
2943
+ method: get
2944
+ uri: https://public.opencpu.org/ocpu/tmp/x0340b06b1b/info/print
2945
+ body:
2946
+ encoding: US-ASCII
2947
+ string: ''
2948
+ headers: {}
2949
+ response:
2950
+ status:
2951
+ code: 200
2952
+ message: OK
2953
+ headers:
2954
+ Server:
2955
+ - nginx/1.4.6 (Ubuntu)
2956
+ Date:
2957
+ - Tue, 14 Oct 2014 18:51:02 GMT
2958
+ Content-Type:
2959
+ - text/plain; charset=utf-8
2960
+ Transfer-Encoding:
2961
+ - chunked
2962
+ Connection:
2963
+ - keep-alive
2964
+ Cache-Control:
2965
+ - max-age=86400, public
2966
+ Access-Control-Allow-Origin:
2967
+ - "*"
2968
+ Access-Control-Allow-Headers:
2969
+ - Origin, Content-Type, Accept, Accept-Encoding, Cache-Control
2970
+ Access-Control-Expose-Headers:
2971
+ - Location, X-ocpu-session, Content-Type, Cache-Control
2972
+ X-Ocpu-R:
2973
+ - R version 3.1.1 (2014-07-10)
2974
+ X-Ocpu-Locale:
2975
+ - en_US.UTF-8
2976
+ X-Ocpu-Time:
2977
+ - 2014-10-14 11:46:18 PDT
2978
+ X-Ocpu-Version:
2979
+ - 1.4.4
2980
+ X-Ocpu-Server:
2981
+ - rApache
2982
+ Vary:
2983
+ - Accept-Encoding
2984
+ X-Ocpu-Cache:
2985
+ - HIT
2986
+ body:
2987
+ encoding: UTF-8
2988
+ string: "R version 3.1.1 (2014-07-10)\nPlatform: x86_64-pc-linux-gnu (64-bit)\n\nlocale:\n
2989
+ [1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C LC_TIME=en_US.UTF-8 \n
2990
+ [4] LC_COLLATE=en_US.UTF-8 LC_MONETARY=en_US.UTF-8 LC_MESSAGES=C \n
2991
+ [7] LC_PAPER=C LC_NAME=C LC_ADDRESS=C \n[10]
2992
+ LC_TELEPHONE=C LC_MEASUREMENT=C LC_IDENTIFICATION=C \n\nattached
2993
+ base packages:\n[1] stats graphics grDevices utils datasets methods
2994
+ \ base \n\nother attached packages:\n[1] animation_2.3 opencpu_1.4.4\n\nloaded
2995
+ via a namespace (and not attached):\n [1] brew_1.0-6 colorspace_1.2-4
2996
+ \ devtools_1.5 digest_0.6.4 \n [5] evaluate_0.5.5 formatR_0.10
2997
+ \ ggplot2_1.0.0 grid_3.1.1 \n [9] gtable_0.1.2 httpuv_99.999
2998
+ \ httr_0.5 jsonlite_0.9.12 \n[13] knitr_1.6 lattice_0.20-29
2999
+ \ MASS_7.3-34 Matrix_1.1-4 \n[17] memoise_0.2.1 mgcv_1.8-3
3000
+ \ munsell_0.4.2 nlme_3.1-117 \n[21] pander_0.3.8 parallel_3.1.1
3001
+ \ plyr_1.8.1 proto_0.3-10 \n[25] RAppArmor_1.0.1.99 Rcpp_0.11.2
3002
+ \ RCurl_1.95-4.3 reshape2_1.4 \n[29] scales_0.2.4 sendmailR_1.1-2
3003
+ \ stringr_0.6.2 tools_3.1.1 \n[33] unixtools_0.1-1 whisker_0.3-2
3004
+ \ \n"
3005
+ http_version:
3006
+ recorded_at: Tue, 14 Oct 2014 18:51:02 GMT
3007
+ recorded_with: VCR 2.9.3