form-jekyll 0.3.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 +7 -0
- data/README.md +83 -0
- data/_includes/elements/helptext.html +3 -0
- data/_includes/elements/label.html +1 -0
- data/_includes/fields/address.html +41 -0
- data/_includes/fields/checkbox.html +27 -0
- data/_includes/fields/email.html +12 -0
- data/_includes/fields/file.html +14 -0
- data/_includes/fields/group.html +3 -0
- data/_includes/fields/header.html +3 -0
- data/_includes/fields/link.html +6 -0
- data/_includes/fields/number.html +20 -0
- data/_includes/fields/paragraph.html +1 -0
- data/_includes/fields/phone.html +14 -0
- data/_includes/fields/price.html +16 -0
- data/_includes/fields/radio.html +34 -0
- data/_includes/fields/select.html +15 -0
- data/_includes/fields/text.html +18 -0
- data/_includes/fields/textarea.html +12 -0
- data/_includes/pagination.html +14 -0
- data/_includes/render_field.html +55 -0
- data/_includes/render_form.html +34 -0
- data/_includes/sfgov/alpha-banner.html +7 -0
- data/_includes/sfgov/footer.html +49 -0
- data/_includes/sfgov/header.html +47 -0
- data/_layouts/default.html +59 -0
- data/_sass/sfgov.scss +471 -0
- data/_sass/variables.scss +462 -0
- data/assets/css/main.scss +886 -0
- data/assets/css/style.scss +146 -0
- data/assets/favicon.ico +0 -0
- data/assets/images/globe-blue.svg +1 -0
- data/assets/images/logo-white.svg +100 -0
- data/assets/images/logo.svg +1 -0
- data/assets/images/settings-toggle.svg +3 -0
- data/assets/images/sfgov.svg +8 -0
- data/assets/js/jquery.js +2 -0
- data/assets/js/script.js +187 -0
- data/assets/js/validator.js +9 -0
- metadata +129 -0
@@ -0,0 +1,146 @@
|
|
1
|
+
---
|
2
|
+
---
|
3
|
+
|
4
|
+
body {
|
5
|
+
background: #fff;
|
6
|
+
}
|
7
|
+
|
8
|
+
$padding: 0.75rem 2rem;
|
9
|
+
$radius: 8px;
|
10
|
+
$shadow: 0 1px 4px rgba(#000, 0.06);
|
11
|
+
|
12
|
+
// Page layout
|
13
|
+
|
14
|
+
.page-header {
|
15
|
+
border-bottom: 5px solid #4F66EE;
|
16
|
+
padding-bottom: 1.5rem;
|
17
|
+
margin: 2rem 0;
|
18
|
+
h2 {
|
19
|
+
margin: 0;
|
20
|
+
}
|
21
|
+
|
22
|
+
p {
|
23
|
+
margin: 0.25rem 0 0;
|
24
|
+
}
|
25
|
+
}
|
26
|
+
|
27
|
+
// Conditional styles
|
28
|
+
|
29
|
+
[data-group] {
|
30
|
+
display: none;
|
31
|
+
|
32
|
+
&.form-section.active {
|
33
|
+
display: none;
|
34
|
+
}
|
35
|
+
}
|
36
|
+
|
37
|
+
.is-conditionally-visible[data-group] {
|
38
|
+
display: block;
|
39
|
+
|
40
|
+
.all-pages &,
|
41
|
+
&.form-section.active {
|
42
|
+
display: block;
|
43
|
+
}
|
44
|
+
}
|
45
|
+
|
46
|
+
// Override .form-section styles so that the
|
47
|
+
// "all-conditionals" setting doesn't break
|
48
|
+
// the layout for conditionally hidden pages.
|
49
|
+
|
50
|
+
.form-section {
|
51
|
+
display: block;
|
52
|
+
max-height: 0;
|
53
|
+
overflow: hidden;
|
54
|
+
|
55
|
+
&.active {
|
56
|
+
max-height: initial;
|
57
|
+
overflow: visible;
|
58
|
+
}
|
59
|
+
}
|
60
|
+
|
61
|
+
// Form settings
|
62
|
+
|
63
|
+
.form-settings {
|
64
|
+
$offset: 4.5rem;
|
65
|
+
background: #fff;
|
66
|
+
border: 1px solid #d7d7d7;
|
67
|
+
box-shadow: $shadow;
|
68
|
+
padding: $padding;
|
69
|
+
position: fixed;
|
70
|
+
bottom: $offset;
|
71
|
+
right: 0;
|
72
|
+
border-top-left-radius: $radius;
|
73
|
+
transform: translateY(100%);
|
74
|
+
will-change: transform;
|
75
|
+
transition: all 0.2s ease-out;
|
76
|
+
|
77
|
+
h5 {
|
78
|
+
margin-bottom: 1.5rem;
|
79
|
+
}
|
80
|
+
|
81
|
+
.form-settings-toggle {
|
82
|
+
position: absolute;
|
83
|
+
z-index: 2;
|
84
|
+
top: 2rem;
|
85
|
+
right: 2rem;
|
86
|
+
left: 2rem;
|
87
|
+
text-align: right;
|
88
|
+
opacity: 0.5;
|
89
|
+
|
90
|
+
img {
|
91
|
+
transform: rotate(180deg);
|
92
|
+
transform-origin: 50% 50%;
|
93
|
+
transition: all 0.1s ease-out;
|
94
|
+
will-change: transform;
|
95
|
+
}
|
96
|
+
}
|
97
|
+
|
98
|
+
&.active {
|
99
|
+
transform: translateY($offset);
|
100
|
+
|
101
|
+
.form-settings-toggle img {
|
102
|
+
transform: rotate(0deg);
|
103
|
+
}
|
104
|
+
}
|
105
|
+
}
|
106
|
+
|
107
|
+
// Settings body classes
|
108
|
+
|
109
|
+
.all-pages {
|
110
|
+
background: #ddd;
|
111
|
+
|
112
|
+
.pagination,
|
113
|
+
.sfgov-alpha-banner,
|
114
|
+
header[role="banner"],
|
115
|
+
.sfgov-footer {
|
116
|
+
display: none;
|
117
|
+
}
|
118
|
+
|
119
|
+
.form-section {
|
120
|
+
max-height: initial;
|
121
|
+
overflow: visible;
|
122
|
+
border-radius: $radius;
|
123
|
+
background: #fff;
|
124
|
+
box-shadow: $shadow;
|
125
|
+
padding: $padding;
|
126
|
+
margin-bottom: 2rem;
|
127
|
+
}
|
128
|
+
|
129
|
+
div[data-group] {
|
130
|
+
display: none;
|
131
|
+
}
|
132
|
+
|
133
|
+
}
|
134
|
+
|
135
|
+
.all-conditionals {
|
136
|
+
div[data-group] {
|
137
|
+
display: block;
|
138
|
+
}
|
139
|
+
}
|
140
|
+
|
141
|
+
.nav-on-top {
|
142
|
+
display: none;
|
143
|
+
.top-nav & {
|
144
|
+
display: block;
|
145
|
+
}
|
146
|
+
}
|
data/assets/favicon.ico
ADDED
Binary file
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>globe_1-outlined</title><path d="M20,0A20,20,0,1,0,40,20,20,20,0,0,0,20,0ZM34.85,18H30.63A22.55,22.55,0,0,0,27,6.75,15,15,0,0,1,34.85,18ZM18,6.86V18H13.39C13.84,12.43,15.89,9,18,6.86ZM18,22V33.64c-2.17-2.18-4.3-5.77-4.65-11.64Zm4,11.64V22h4.65C26.3,27.87,24.17,31.46,22,33.64ZM22,18V6.86C24.11,9,26.16,12.43,26.61,18ZM13,6.75A22.55,22.55,0,0,0,9.37,18H5.15A15,15,0,0,1,13,6.75ZM5.15,22H9.36a23.3,23.3,0,0,0,3.13,11A15.05,15.05,0,0,1,5.15,22ZM27.51,33a23.3,23.3,0,0,0,3.13-11h4.21A15.05,15.05,0,0,1,27.51,33Z" style="fill:#4F66EE"/></svg>
|
@@ -0,0 +1,100 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<svg
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
8
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
9
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
10
|
+
class="seal-svg"
|
11
|
+
width="55"
|
12
|
+
height="55"
|
13
|
+
viewBox="0 0 55 55"
|
14
|
+
id="svg3516"
|
15
|
+
version="1.1"
|
16
|
+
inkscape:version="0.91 r13725"
|
17
|
+
sodipodi:docname="sf-logo-white.svg">
|
18
|
+
<metadata
|
19
|
+
id="metadata3542">
|
20
|
+
<rdf:RDF>
|
21
|
+
<cc:Work
|
22
|
+
rdf:about="">
|
23
|
+
<dc:format>image/svg+xml</dc:format>
|
24
|
+
<dc:type
|
25
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
26
|
+
</cc:Work>
|
27
|
+
</rdf:RDF>
|
28
|
+
</metadata>
|
29
|
+
<defs
|
30
|
+
id="defs3540" />
|
31
|
+
<sodipodi:namedview
|
32
|
+
pagecolor="#ffffff"
|
33
|
+
bordercolor="#666666"
|
34
|
+
borderopacity="1"
|
35
|
+
objecttolerance="10"
|
36
|
+
gridtolerance="10"
|
37
|
+
guidetolerance="10"
|
38
|
+
inkscape:pageopacity="0"
|
39
|
+
inkscape:pageshadow="2"
|
40
|
+
inkscape:window-width="1920"
|
41
|
+
inkscape:window-height="1056"
|
42
|
+
id="namedview3538"
|
43
|
+
showgrid="false"
|
44
|
+
inkscape:zoom="16.709091"
|
45
|
+
inkscape:cx="27.5"
|
46
|
+
inkscape:cy="27.5"
|
47
|
+
inkscape:window-x="0"
|
48
|
+
inkscape:window-y="24"
|
49
|
+
inkscape:window-maximized="1"
|
50
|
+
inkscape:current-layer="g3520" />
|
51
|
+
<title
|
52
|
+
id="title3518">City Seal of the City and County of San Francisco</title>
|
53
|
+
<g
|
54
|
+
stroke-width="0"
|
55
|
+
stroke="#FFF"
|
56
|
+
fill-rule="evenodd"
|
57
|
+
id="g3520">
|
58
|
+
<path
|
59
|
+
d="M28.217 51.22c.028.372-.173.806-.576.892-.372.03-.804-.172-.89-.547-.03-.4.173-.807.547-.92.403-.03.806.17.92.574z"
|
60
|
+
stroke="none"
|
61
|
+
id="path3522"
|
62
|
+
style="fill:#ffffff" />
|
63
|
+
<path
|
64
|
+
d="M52.395 16.046c4.2 8.434 2.936 20.35-2.908 27.63-6.85 8.78-17.182 12.522-28.12 10.307C11.582 52.11 2.255 42.67.645 32.827c-2.016-11.485 2.532-22.364 12.49-28.58 7.77-5.296 20.206-5.21 28.12-.345 4.75 2.59 8.922 7.425 11.14 12.144zM37.657 2.778c-8.75-3.8-20.147-2.043-27.285 4.087-8.49 7.08-11.715 18.162-8.405 28.726 2.792 9.614 12.808 17.615 22.71 18.394 10.763.922 20.29-3.855 25.99-13.01 4.862-7.6 4.862-19.716-.146-27.286-2.82-4.835-7.854-9.01-12.862-10.91z"
|
65
|
+
stroke="none"
|
66
|
+
id="path3524"
|
67
|
+
style="fill:#ffffff" />
|
68
|
+
<path
|
69
|
+
d="M45.14 16.557c3.6 5.498 4.116 14.218.895 20.032-4.175 7.8-12.29 12.29-21.155 11.194-6.994-.69-14.074-5.93-16.636-12.635-2.648-6.48-1.67-14.795 2.62-20.178 5.525-7.137 14.65-10.015 23.225-7.11 4.313 1.355 8.514 4.578 11.05 8.694zm-6.36-5.955c-5.73-4.06-14.91-4.46-21.012-.95-7.425 4.144-11.484 12.002-10.274 20.494.547-.29 1.15-.088 1.583.144.92-.49 1.266 1.582 2.273 1.036.662.69 1.324-.49 2.015.2.288-.575.26-1.322.547-1.93.518-.92-.375-1.667-.202-2.56-.374.402-.835.604-1.324.69-.317-.058-.432-.288-.633-.547-.086-.664-.086-1.27 0-1.874.92-.892 1.353-2.676 2.993-2.62.806-.084.777-.832.69-1.524-.546-.374-.46-1.065-1.18-1.295 0-1.007 1.383-.374 1.526-1.237.633.173.52-.718 1.037-.69.17.086.113.26.113.403-.086.23-.316.402-.547.402 0 .087 0 .173.086.23l.69-.49c.087.06.087.174.116.26v-.114c.057-.056.085-.085.143-.085.26 0 .088.605.145.288l.058-.49c.028-.662-.778-.43-1.238-.546-.374.172-.2.634-.547.748-.115-.058-.058-.23-.058-.346.145-.836 1.18-.605 1.785-.548.69.29.375 1.095.547 1.67.49-.027.834.23 1.18.548.403 1.037-1.065.66-1.324 1.238-1.18 1.438 1.007 1.784 1.612 2.618-.288 1.41 1.382 2.505.46 3.656-.086 1.583-.892 2.82-.892 4.434-.374.604-.777.98-.403 1.728.403.633 1.324.23 1.87.347-.143-.863-1.207-.06-1.812-.404V33.4c.576-.2 1.094-.2 1.67-.2l-.086-.2c-.634-.29-1.124.344-1.728-.09.43-.345 1.12-.144 1.67-.26-.174-.4-.95-.085-1.24-.285.173-.402.777-.087 1.094-.26v-.145c-.288-.26-.633.2-.892-.146.086-.373.547-.146.834-.2-.03-.433-.634-.03-.835-.347.087-.115.2-.172.347-.145.058.085-.2-.2 0-.288.202-.06.433.146.346.23l-.202-1.813c0-.085.117-.2.203-.2.518 2.908 1.122 5.76 2.13 8.435.173.404.49.95.98 1.037-1.93-4.402-2.908-9.41-2.36-14.59 2.877-.52 5.957-.72 8.98-.606 1.812.087 3.597.288 5.18.892.433 3.8-.346 7.454-1.294 10.85-.35 1.21-.98 2.448-1.24 3.516l.69-.404c1.785-4.433 2.85-9.41 2.273-14.593-4.72-1.064-10.39-1.208-15.138-.114-.086.346-.086.75-.2 1.094-.605-.345 0-.98 0-1.438 4.892-1.095 10.79-1.01 15.598.2.575 2.705.173 5.727-.2 8.434h.632c.174-.487-.432.26-.545-.286l.113-.146c.146.026.316-.06.432.086.03-.287-.026-.546-.285-.688l.775-3.396c-.088-1.525-.775-3.05-.23-4.547.23-.662 1.123-.835 1.18-1.526-1.12-1.64-.484 1.067-1.437 1.24-.114-.115-.228-.203-.286-.347l-.403.287c-.747-.69.634-1.353.75-1.87-.317-.95 1.295-.806.774-1.727.69-.49 1.557-.75 2.42-.634.058.517.346.287.746.345.232.116.663.23.49.634-.288.143-.46.487-.834.4.113.75.087 1.297.288 2.017-.115.26-.402.373-.634.4-.2.865.948 1.096.748 1.873.72-.43.114-1.037.288-1.583-.174-.057-.402.173-.633 0v-.2c0-.23.23-.117.345-.145.028-.202.174-.375.23-.548.288-.402-.116-.517-.145-.835-.06-.23.027-.546.346-.43.487-.203.46-.72.545-1.154.2-.287.55-.114.69.116.114 1.036.66 1.985 1.036 2.85l.49-.144c.257.143.23.402.345.632-.402.26-.864.634-1.383.403.26-.114.604-.402.95-.487 0-.06.028-.145-.058-.203-.06-.028-.087.03-.145.058-.75.605-.923-.46-1.44-.546 1.497.634-.23 1.9.145 2.764-2.304 1.21-1.064 4-1.61 6.016l-.26.347c.228 1.613.95 3.226.603 4.837l1.383-.06v-.144c-.403-.175-1.007.057-1.383-.203.49-.258 1.123-.115 1.67-.145h-.2c-.202-.633-.923-.66-1.24-1.123.52-.085.663-.72.692-1.237.085-.26.345-.314.4-.546-.06-.147.088-.26.2-.2.147.056.06.227.09.343h.603c.2-1.15.143.49.834.147-.03.2-.29.46 0 .604l-.06-.347c.146-.432.547-.286.69-.69-.145.49.52.262.462.69.573.087.345 1.152.487 1.584-.52-.03-.375.547-.69.776h1.73v-.144c-.402-.146-.923 0-1.297-.146.314-.403 1.036-.086 1.497-.26 2.13-4.836 1.754-11.542-.688-16.12-1.47-2.935-3.974-5.843-6.824-7.8l.004-.004zm-1.123 11.135c.086.432.66.605.92.893v-.26c-.374-.057-.634-.345-.92-.633zM21.08 24.3c-.347 2.186-.203 4.69.143 6.85.374.06.115-.575.547-.433.144.06.057.2.086.288-.058.028-.086.086-.145.058.635.06.52.662.635 1.035.662.115.662.836.892 1.325-.345.26-1.093.085-1.324.144.518.06 1.324-.06 1.526.604.287.03.632-.372.833.088-.086.26-.374.028-.49.2-.72-.114-1.15-.486-1.784-.143-.058.2.086.314.115.486.374-.142.892 0 1.382-.142.085.087.2.143.144.287-.345.113-1.064.2-1.44.06.146.892.607 1.667.895 2.476.375-.085.864.26.893-.2.26-.115.604-.35.834-.146l-.344.434c-.403.115-.835.316-1.238.146-.057 1.21 1.123.027 1.785.402-.432.173-.893.547-1.525.4.748.147 1.496.288 2.215.436l.087-.49h-.23c-.26.117-.432-.2-.346-.346 1.036-.375 2.015-1.266 2.763-1.783-.116 1.123-.26 2.247-.404 3.366-.173-.145-.288-.345-.49-.4.058.06.173.114.144.2-.086.115-.23.06-.345.06v.23c.806.26 1.755.4 2.62.344v-.144c-.577-.114-1.237-.027-1.728-.346 0-.087 0-.173.086-.203.75.436 1.957-.372 1.987.69 2.877-.92 2.935-4.2 3.74-6.56-.287-.026-.604.06-.834-.084-.145-.433-.777-.027-1.037-.347.23-.404.346-.894.75-1.18.085-.404-.176-.95.23-1.24.63-.057.284.66.46.98.345 0 .747.03.92-.2l-.92-.23c.285-.403 1.267.287 1.035-.46l-.75-.146c-.286-.2-.808-.087-.894-.433-.47.458-1.103.48-1.73.386-.563-.082-1.13-.258-1.575-.3-.088.462.632.49.747.837-.116.228-.402.085-.635.114.174.313.347.604.488.922.69.46.662-.55 1.037-.69.146.2.52.083.487.4-.03.346-.4.145-.633.2.23.347-.316.863.086 1.036l-1.036.145c.028.06.174.116.145.204.23.085.49-.173.604.085-.115.144-.26.23-.49.202-1.035-.434-2.59.573-3.106-.55-.69-.143-1.382.263-1.987-.085-.027-.086.088-.146.145-.2-.288-.548-.92-.69-1.267-1.095.146-.23.23.086.433 0 .806-.95 1.296-2.104 1.986-3.052l.143.146c-.057.633.46 1.15.893 1.438.172-.402.518-.086.834-.26l-.06-.088c.46-.2.636-.63 1.24-.486v-.202c.056-.172.372-.114.345-.144 1.007-1.698 3.367-.434 4.98-1.094.085-1.153.085-2.448 0-3.6-4.257-1.09-9.15-.86-13.553-.197l-.002-.003zm4.287-.202h1.583-1.583zm2.964 0h1.815-1.813zm-5.783.547h1.583-1.584zm2.965 0h1.44-1.44zm2.82 0h1.73-1.73zm3.11.057h1.81-1.81zm-10.13.49h.2-.2zm1.438 0h1.583-1.582zm2.907 0h1.38-1.38zm2.676.086h1.613-1.612zm2.908 0h1.813-1.812zm-10.014.547h.547-.547zm1.726 0h1.583-1.584.002zm2.762 0h1.324-1.324zm2.56 0h1.524-1.523zm2.824 0h1.61-1.61zm2.76 0h.49-.49zm-12.633.547h.834-.835zm2.014 0h1.44-1.44zm2.62 0h1.235-1.237zm2.415 0h1.383-1.383zm2.622 0h1.523-1.523zm2.705 0h.748-.748zm-12.377.547h1.122-1.122zm2.216 0h1.38-1.38zm2.475.083h1.18-1.18zm2.303 0h1.295-1.295zm2.474 0h1.44-1.44zm2.62 0h1.038-1.037zm-12 .547h1.38-1.38zm2.417 0h1.294-1.295zm2.33 0h1.036-1.036zm2.072 0h1.325-1.325zm2.42 0h1.322-1.323.002zm2.416 0h1.18-1.18zm-11.312.55h1.295-1.295zm2.274 0h1.238-1.238zm2.216 0h1.037-1.036zm1.986 0h1.237-1.238zm2.274 0h.346-.346zM22 28.645h1.294H22zm2.13 0h1.237-1.238zm2.62 0h.43-.43zm1.323 0h1.18-1.18zm-5.613.632h1.122-1.122zm1.957.06h.892-.894zm3.57 0h.576-.577zm-6.62.546h.49-.49zm1.525 0h1.036-1.036zm1.784 0h.288-.288zm-2.677.69h.344H22zm1.236 0h1.036-1.036zm-.777.634h.43-.43zm1.266 0h.604-.603zm7.168 0h.776-.775zm-1.64.288l.345.69-.347-.69zm10.474-8.923c0 .26.26.374.487.346v-.202c-.143-.086-.285-.173-.488-.144zm-3.37 8.78l.49 2.82c-.175 1.812-.69 3.453-.49 5.383h.95v-.117c-.145-.23-.635-.485-.547-.774l.69.435c.175-.638-.86-.953-.546-1.473l.488.49c.26-.52-.518-.95-.29-1.385l.436.49c.113-.52-.522-.774-.436-1.18.29-.03.262.314.49.402.258-.52-.432-.922-.347-1.383l.49.49c.46-.66-.605-.95-.347-1.524.174.115.23.402.488.574.46-.688-.604-1.18-.488-1.81.29.228.547.662.748.894.52-.722-.66-1.123-.748-1.785l.058-.06.894.892c.145-.086.06-.287.088-.433-.342-.806-1.177-1.583-2.07-.95v.002zm2.33-12.723c-.546 0-1.32.142-1.64.632.49-.317 1.324-.23 1.87-.634h-.23zm.982.286c.087.143.373.288.546.143-.144-.144-.345-.17-.546-.144zm-1.035.202v.144h.2c.086.028.172-.058.144-.145h-.344zm-.635.2c.06.145.2.058.287.086.087-.058.058-.143.058-.23-.145-.03-.287.087-.346.144zm1.61-.057l-.286-.086-.057.087h.343zm1.642 0v.144c.088 0 .174 0 .202-.086-.028-.086-.114-.057-.202-.057zm-3.712.346h.26v-.144c-.088-.172-.406.03-.26.144zm1.15.058c-.46.346-.347.777-.26 1.238.2.403.634.748 1.095.49v-.145l-.49-.058c.145-.23.115-.52.49-.49-.028-.116.057-.26-.057-.346-.2 0-.435.317-.55 0 .03-.028.086-.06.06-.144h-.146c-.23-.403.435-.346.546-.547-.255-.058-.428-.173-.69 0h.002zm-1.784.2h.402v-.056c-.17-.346-.2.086-.402.057zm4.49-.2l-.29.288.49.058c.004-.145-.028-.318-.2-.346zm-4.43.49c-.23-.06-.577.027-.462.344h.46v-.345h.002zm3.798.402c.287 0 .604.057.836-.058-.032-.288-.894-.375-.836.058zM38 20.7l-.115-.144.115.23V20.7zm3.943.086c-.114.2.26.403-.06.546-.374-.114-1.12.26-1.12-.345-.115.403-.316.776-.35 1.236.117-.346.578-.172.777-.49-.2-.028-.375.29-.547.088.06-.115.06-.26.2-.345.577.03 1.67-.172 1.585.547l-.485-1.237zm-.748.26c.145-.03.373.056.402-.06-.116-.113-.346-.113-.403.06zm-3.396.085l-.058.203c.144.374.634.892 1.036.69-.344-.23-.577-.834-.98-.892zm-1.785.06l-.49.633c.374 0 .432-.518.49-.633zm.26.06c0 .2-.23.43-.062.574.12-.145.06-.52.06-.576h.002zm1.12.774c-1.237.778-.834 2.39-.633 3.597l-.145.204c.26.46.52 1.324.23 1.87.345.26-.116.575-.087.807.087.864-.49 1.44-.403 2.304h.836c-.23-.058-.52.114-.635-.145l.203-.347.088.058c-.086-.2.146-.546.06-.893.374.027-.175-.373.198-.4-.172-.147 0-.434.146-.434l-.057-.06.115-.144c-.06 0-.145.026-.203-.06.088-.058.117-.174.203-.145l-.203-.287.203-.202c-.027-.06-.145-.115-.115-.203.058-.172-.174-.575.058-.546-.025-.23-.312-.72-.057-.98l-.23-.2c.26-.72-.43-1.123-.2-1.728.633.805.72 1.957 1.322 2.82v-.143c.03-.03.06-.087.146-.057-.145-.173-.145-.316 0-.49l.347.29.06-.635c.315-.115.344.317.4.432.175-.346-.17-.633.145-.92.09.172.403.2.29.49h.2c-.028-.23.06-.49-.058-.692.115-.116-.03-.547.347-.402l.057.402c.115-.346-.085-.575.29-.835l.258.49c.287-.318-.258-.72.2-.95.06.288.147.2.347.26-.228-.117-.173-.46-.46-.403-.72.72-1.496 1.84-2.504 2.072l-.06-.49h.06l-.06-.346h.203c-.314-.26-.488.116-.747-.146.202-.143.03-.517.402-.4l-.142-.142c-.028-.086.087-.144.144-.202-.112.116-.604-.23-.978-.2.23-.318.662-.29.834-.29l-.144-.144c-.028-.085.115-.144.144-.2-.114-.318-1.063.057-.548-.49.175-.46.723.058.635 0-.173-.257-.403-.46-.49-.747h-.008zm4.06.144c-.23-.26-.433.2-.547.344l-.202-.23c-.088.52-.144 1.295.546 1.47.348-.347.548-.75.548-1.24-.058-.143-.2-.373-.346-.345zm-2.476.258l-.147.49c.115.028.146-.086.2-.145.004-.113.064-.314-.054-.344zm.2.778h-.2c-.29.057-.06.402.057.46l.144-.46zm.2.69c-.083.23-.372.604-.055.748l.2-.2c.03-.23 0-.404-.143-.548zm.348 3.858v-1.18l-.116 1.18h.115zm-.807-.288c-.23.258-.72.085-.633.575l.347-.346.143.115c-.027.144.06.345-.086.43l-.115-.14v.2h.113c.316.23-.257.315 0 .547l.233-1.382zm.605.776v.2c.057-.058.173-.113.145-.2h-.145zm-1.295.403h.057v-.258h-.058v.258zm1.15 1.326l.146-1.18-.258 1.18h.113zm-1.44-.088v.288l.06-.057c0-.088.03-.174-.06-.23zm1.44.23h-.112c.172.316-.4.488.06.604l.053-.604zM38 31.206l.346.288v-.144c-.086-.116-.202-.172-.346-.143zm1.268.346l.347.346-.347-.347v.002zm.257.89c-.174.404.287.548.433.836-.116-.202-.028-.778-.433-.837v.002zm-.056.693l-.088.144c.06-.028.088-.087.145-.058.06.114.23.286.146.402-.058.03-.088-.03-.146-.06l.09.347-.232.06c-.978 1.295-.4 3.367-.746 4.98.285-.03.634.055.892-.09.115-.2-.633-.52-.2-.805.086.06.23.144.287.2l-.434-.835c.375-.315.145.317.488.29.088-.434-.433-.836-.346-1.268.172.113.287.373.4.574.26-.547-.575-1.008-.347-1.47l.49.55c.26-.463-.603-.808-.26-1.238l.403.49c.23-.49-.402-.722-.287-1.096.287-.086.2.26.433.346.057-.6-.317-1.032-.69-1.462zm-.893 1.18c-.03.517-.576 1.266-.087 1.52.03-.514.26-1.088.088-1.52zm-6.1.892c0 .23.402.146.433.086-.176.06-.262-.144-.433-.086zm-9.184 1.237h.288-.287zm11.197-8.002c-.346-.03-.69.03-.978.145l.98-.086v-.06l-.002.002zm-3.394.346c.432-.03.72.058 1.035-.06-.343 0-.833-.373-1.033.06zm2.504.144c.115.52.487.06.834.2v-.144c-.204-.23-.606-.142-.834-.056zm-1.47.343c.347.117.49-.287.836-.145-.345-.17-.548-.142-.835.145zm-6.072.405l-.2.49h.2c.172-.147 0-.318 0-.49zm.345.086v.403c.086-.028.23.06.288-.058l-.286-.345zm1.324 1.727h.75c.113 0 .23-.116.2-.23h-.2c-.834-.374.518-.432.434-.893-.404.375-1.384.346-1.182 1.123zm-3.194.547l.144.146c.49.113 1.123.113 1.238-.434-1.18 0 .202-.863-.058-1.295-.72.172-.95 1.007-1.324 1.582zm2.014-1.583c0 .23.2.603.403.747.057-.26-.145-.634.23-.748h-.633zm-.49.345l-.257.46c.057.028.143 0 .2.087l.144-.146c-.028-.145.058-.316-.086-.402zm.633.547l-.288-.548v.547h.288zm-5.324.055c-.086.402.058.835.547.69-.03-.114.03-.23.086-.347-.03-.312-.376-.37-.635-.342zm5.527.287h-.288l.288.402v-.402zm1.584.146c.058.202.314.348.488.115-.145-.06-.288-.172-.488-.114v-.002zm-1.872.348l-.202-.29v.29h.202zm1.266 0h.348v-.23c-.144-.204-.317.112-.346.23zm4.953-.088c-.288.172-.52.46-.605.834.2-.026.46.06.605-.06h-.26c-.146.06-.26-.084-.2-.228.172-.115.46-.027.687-.06-.402-.4.346-.374.547-.546-.315-.085-.458.148-.775.06zm-3.713.143l-.202.2c.113.2.373-.083.402 0l-.2-.2zm-1.383.2l.058.433.29-.286c-.118-.06-.204-.2-.348-.147zm5.67.348h.403v-.146c-.144-.142-.374.002-.404.146zm.26.346l-.347-.145v.145h.346zm-6.563 4.288l-1.094.69.057.057c.663.433.778-.43 1.037-.747zm-2.56 1.094h.23c.085.028.2 0 .2-.115-.115.144-.374-.03-.43.116zm3.452.343l.087.09c.258-.09.862.17 1.036-.2-.347.11-.808.142-1.125.11zm-5.18-7.02c.057.23.46.144.633.06-.175-.118-.405-.06-.635-.06zm.345.805c.46.114 1.18.114 1.47 0-.46-.085-1.008-.085-1.468 0zm8.637 0c-.26-.06-.777-.146-.95.086.26.09.69.09.95 0v-.085zm-.26.69c-.316-.145-.75 0-.98.147l.98-.06v-.086zm-8.03.23h1.18c-.288-.23-.92-.23-1.18 0zm2.015 0l.634.115c-.2.23-.316.027-.575.087v.26c-.346.115-.72.058-1.036.23H25.8c0-.49.575-.23.806-.49.172-.027.402.204.49-.085-.49-.144-1.067-.287-1.585-.116h.002zm7.197.06c-.347-.173-.778.058-1.037.058.346.026.72-.06 1.037.086v-.146zm-5.47.345c.06.316.52.03.547.403.345.06.835.116 1.124-.2l-.087-.06c-.634.635-.865-.374-1.584-.142zm2.073 0l.06.147c.375.26.98.112 1.27-.09-.41.087-.984.173-1.33-.056zm1.585.49l.69.058c.113-.026.4-.23.287-.346-.26.26-.776 0-.977.287zm1.667-.087c.026.145.172.06.26.086.2.03.46-.03.43-.203-.23.028-.604-.115-.69.115zm-.632.346h1.18v-.117c-.432.115-1.008-.318-1.18.115zm-5.383-.117c-.375.146-1.008 0-1.238.115.258.23.89-.174.89.345.26.146.664.06.835-.058-.288-.174-.69.2-.893-.202l.405-.2zm.547.115c.26.2.52-.028.777-.06-.258-.17-.575.06-.776.06zm1.325 0c.286.056.86.23 1.035-.116-.318.144-.81-.03-1.036.115h.002zm2.33-.116h-.807c.115.23.574.146.807.06v-.06zm-6.91.403c-.028.173.23.23.433.2.23-.114.663-.027.69-.346-.344.146-.747.32-1.122.146zm3.455.143c.375.26.95.115 1.18-.2-.287.057-.834.112-1.18.2zm1.726 0c.29.172.75-.088.98.2-.287.26-.893.087-1.093.145l1.15.2-.116.145c.49.088 1.237.404 1.644 0-.29-.172-.777.06-1.036-.2l.287-.23c-.23-.028-.55.113-.69-.115.085-.145.202-.173.345-.145-.43-.43-.978.058-1.47 0h-.002zm-2.876.144H25.8c-.663-.114-.29.49-.922.26.058-.06.173-.116.145-.2l-1.094.058c.373.4.833 0 1.092.346.374.2 1.007.26 1.324-.06l-.546-.2.344-.204h.003zm.605.2l.085.06c.547.286 1.353.114 1.785-.2-.604.055-1.296.17-1.87.14zm4.574.06c.316.145.95.286 1.152-.06-.43.115-1.037-.258-1.152.06zm-7.338.085c-.404 0-.834.23-1.238.06.317.228.864.143 1.238.058v-.12.002zm3.252.344c.92.146 2.13.605 3.05.116-.95-.23-2.07.23-3.05-.116zm-2.274.06l.144.2c.403.2.806-.03 1.238-.06-.46.147-.835-.314-1.382-.14zm7.454.06c-.574.057-1.064.057-1.727.144l.288.345c-.17.145-.43.06-.632.085v.116c.547 0 1.063.06 1.584.087.024.173.257.258.345.202.026-.147-.146-.088-.202-.203l.345-.288-.893.085c.287-.23.776-.43 1.096-.573h-.202V36.1zm-9.612.227v.26c.518-.087 1.065.518 1.38-.06l-.46-.085c.03-.03.087-.06.06-.115h-.98zm3.943 0l-.95.26.403.143c.258.058.547-.317.547-.403zm-2.42.06c.06.343.52.2.693.144l-.69-.144h-.002zm3.888.544l.807.147c-.23.23-.574.113-.894.145.548.145 1.47.315 1.87-.145-.2-.03-.46.056-.632-.06l.145-.288c-.346.06-.922.144-1.295.2zm-5.124.2c.547.118 1.036-.11 1.44-.256-.52-.027-.98.288-1.44.258zm1.784-.112l.576.4c-.173.175-.288-.085-.49 0v.202c-.115.26-.518.087-.777.145.403.29.892.06 1.267-.145.086-.575.892 0 1.15-.49l-1.726-.11v-.002zm5.61.203c.464.2 1.124.317 1.586.06-.518.084-1.122-.462-1.585-.06h-.002zm-2.357.403c.69-.086 1.238.75 1.814.29l-.633-.09c0-.2.347-.113.288-.345-.488.06-1.092.204-1.467.145zm2.85 0l.115.2-.807.09c.605.688.835-.49 1.498 0 .113 0 .23-.117.23-.203l-1.036-.087zm-2.906.835c.2.028.4-.028.547-.2-.087.172-.98-.375-.546.2zm3.512 0c-.69-.058-1.526-.23-2.218.144l.088.06c.402-.26 1.006-.085 1.523-.146.2.028.4.435.603.086l.003-.144zm-3.657.69c.03.086.23.145.344.2.576-.085 1.268-.085 1.728-.26-.66-.084-1.438.146-2.072.06zm2.966 0c-.2.06-.49-.115-.604.145h.605v-.145zm3.31.288c-.203-.025-.49.262-.262.46.315.062.662-.025.834-.198-.113-.028-.286.058-.344-.06.026-.144.172-.058.258-.085.03-.2-.314-.26-.486-.117zm1.033.26c.144.114.46.085.49-.058-.145-.202-.375.03-.49.057zm.575.547c-.49.056-1.123-.116-1.47.144l1.47-.06v-.085zm-20.262.086l-.057 1.93c2.705 1.322 5.986.46 8.778-.06.432.06.72.662 1.238.346-.776-.172-.89-1.094-1.726-.488-.173-.49.288-.866.49-1.24.632-.2.345.723.603.95l.632-.345-.345-.345c.345-.29.69.23 1.036.345-.143.433-.66.316-.833.634l.345.2c-.028.086.058.23-.057.287.288-.058.518-.172.748-.346.26-.345.173-.92-.2-1.18-3.427-1.582-7.254 1.412-10.65-.69h-.003zm-1.295.144c-.432-.058-.633.46-1.036.46.347.35.664-.345.894.087h.835v-.2c0-.404-.52-.09-.69-.29v-.056h-.002zm17.414.257c-.69.376-.75 1.21-.978 1.87l1.035-.057c2.13 1.01 5.152 1.61 7.31.26-.115-.52-.26-1.035-.2-1.642l-1.644.46c-2.043.58-3.68-.6-5.524-.89zm4.404.205c-.49.2-1.325-.172-1.786.146 1.036.086 2.247.173 3.254-.06l-1.468-.085zm-1.987 2.848c-3.627-.892-7.31-.086-10.85-.144.2.486-.52 2.015.603 2.015 2.908-.374 6.247-.72 9.126-.088 1.553.604 1.094-1.237 1.18-1.87l-.06.086zm-9.76-2.548c-2.373-41.235-.157.132-.157.228 0 .093.236.02.255.076.02.055-.098-.36-.098-.36v.055zM22 41.08l-.087.546c-.23-.115-.345-.546-.69-.4.115.4.028.978.345 1.177l.086-.633c.288.203.375.662.75.434-.146-.377.027-1.068-.405-1.124zm1.036-.26c-.316.287 0 .806 0 1.236h.116c-.173-.69.92-.373.633-1.035-.145-.373-.49-.14-.75-.2zm.46.345c-.057.06-.143.174-.26.116v-.2c.088.028.232-.06.26.086zm8.635 0c-.084.375-.373.778-.257 1.15.058-.52.75-.17.75-.46-.117-.114-.405-.114-.347-.347h.633c-.117-.315-.518-.227-.778-.343zm-12.087.346c.116.35.086.78.288 1.097.23-.174.634.06.835-.203-.144-.373-.46.117-.69-.143-.058-.315.317-.23.49-.344-.06-.29-.433-.03-.577-.203.086-.26.576-.086.576-.43-.345-.03-.662.057-.92.23v-.002zm-3.8-.43c-.287.2-.402.49-.345.836.145.26.403.517.777.4.288-.114.46-.433.49-.747-.086-.404-.518-.577-.92-.49h-.002zm.577.49c-.116.143-.087.43-.29.4-.2.058-.2-.057-.287-.2-.03-.344.432-.604.576-.2zm16.348 0c-.06.4-.434.833-.202 1.18.26-.29.374-.75.43-1.18h-.228zm-15.745-.288l-.202 1.18c.49.174.09-.517.55-.4.23.085.114.315.143.487h.288c.03-.374-.114-.575.117-.836-.03-.46-.52-.43-.893-.43v-.002zm.49.49h-.202v-.144h.203v.144zm.978-.345c-.17.086-.574.316-.43.634 0 .344.23.66.634.604.46-.028.547-.402.547-.808-.144-.287-.403-.544-.75-.43zm.405.49c-.03.17.086.4-.144.487-.143.027-.315-.057-.345-.2-.23-.403.432-.72.49-.287zm14.563-.203l-.346 1.18c.315.03.662.173.923.116-.088-.23-.434-.115-.576-.346.06-.26.46-.028.633-.202-.057-.23-.518-.058-.488-.4.145-.03.46-.03.633.06.056-.436-.548-.205-.778-.408h-.002zm3.8 0c-.316.115-.404.433-.404.748.088.347.433.604.835.49.173-.087.46-.288.347-.548.055-.487-.348-.718-.78-.69zm.49.548c0 .143.027.316-.147.402-.2.115-.344-.115-.4-.26l.2-.432c.117.116.347.09.347.29zm-1.988-.2l.057 1.18h.2v-.23c-.056-.172.09-.345.29-.26.06.147.145.26.2.403.547-.113-.2-.547.145-.893-.114-.375-.604-.144-.893-.2zm.547.256c0 .086-.03.113-.086.144-.057 0-.143.03-.2-.058.03-.027.202-.257.29-.086h-.003zm-1.812-.257v1.094c.373.088.06-.346.347-.402.345-.058.23.315.345.49.49-.115-.085-.634.288-.92-.09-.493-.637-.175-.98-.26zm.63.343c-.058.115-.172.027-.287.058v-.143c.116.03.233-.056.287.086zM28.62 43.7c-.115.23.2.863-.2 1.12-.492-.145-.175-.72-.347-1.035h-.145c-.115.23-.057.547-.057.835.06.114.117.373.348.345.202.06.547.06.69-.23 0-.462 0-.805-.287-1.037zm.634 0c-.117.374-.117.98 0 1.266.258-.027.573.06.805-.087-.117-.2-.49-.115-.69-.347.145-.26.46-.027.633-.2-.086-.29-.52.027-.546-.29.113-.228.4-.085.604-.112v-.145c-.234-.143-.55-.055-.807-.086zm-2.303.085c-.344.088-.574.433-.46.835.087.52.778.43 1.15.345.06-.26-.084-.433-.113-.634-.2-.056-.345.09-.432.148l.202.258c-.058.146-.23.06-.345.09-.144-.116-.2-.262-.26-.436.06-.49.52-.374.836-.202v-.2c-.202-.058-.318-.29-.575-.204h-.002zm-1.15.26c-.404-.058-.087.433-.29.575-.143-.202-.315-.547-.632-.49.086.2-.172.98.23 1.18l.115-.633c.288.146.288.634.69.49.06-.433-.084-.75-.113-1.124v.002zm-2.072.086v1.18h.806c.086-.43-.634-.057-.605-.485.143-.146.374-.06.546-.09.058-.4-.46 0-.547-.345.143-.26.49-.03.69-.202-.26-.115-.605-.03-.89-.058h-.002zm6.76-.345l-.142 1.18h.2c.087-.144-.028-.487.288-.432.145.116.23.288.202.49.432 0 .024-.69.344-.895-.142-.37-.603-.23-.892-.343zm.55.404c-.06.145-.174.06-.287.087v-.146c.114.03.23-.056.29.06h-.002zm.692-.26l-.145 1.237c.345.086.113-.316.287-.432.374-.23.345.4.546.488.23-.23-.172-.574.145-.748.23-.488-.518-.488-.834-.544zm.545.4c-.06.118-.23.06-.346.06 0-.2.257-.143.344-.06zm.834-.2c-.176.348-.377.81-.29 1.096.2-.46.72.027.98-.06-.174-.373-.145-1.063-.692-1.035zm.136.328c-33.146-44.458.177.443.15.384-.03-.06-.27.05-.28-.053-.012-.105.138-.27.138-.27l-.008-.062zm-22.79-8.702l-.546-.06.06.2.488-.058v-.082zm32.468 3.54c-.433-.434-.893-.06-1.47-.086.52.345 1.008.113 1.525.286.114-.2.4.2.433-.145-.143-.113-.346-.026-.49-.054zm-1.382 1.094l-2.072-.06v.06h2.073zm.26 0h.834-.835.002zm-12.694 2.07l.056.202c.316-.028.75.115.893-.115-.318-.027-.693.057-.95-.087zm5.58 2.217v.146c.69-.03 1.67.114 2.274-.146H34.688zm-12.287.288h.288-.287zm-.49 1.38l-.26-.085.06.086h.2zm2.074.692c.432.316.92-.06 1.468.06l-1.468-.06zm4.778.202c.26-.03.547.055.748-.09-.258.03-.547-.055-.748.088zM13.02 37.133l-1.382-.056c.03.025.086.43.26.4.114-.72.69-.028 1.122-.2v-.145zm4.2-18.85l-.056-.202.057.402v-.2zm.347.2l-.144-.345v.344h.144zm-2.705 1.18c1.036-.258 2.907-.086 4.03.347-1.18-.52-2.735-.75-4.03-.345zm.834.633c.23-.057.633-.23.777.145-.086.49-.748.317-.834.116-.204.517.373.517.4.92.087-.03.23.058.288-.086-.03-.03-.087-.06-.087-.145.087-.117.203-.145.346-.117.317-.028.202.23.23.346.116-.03.23.028.346.058.346-.26.46-.75.403-1.24-.547-.2-1.38-.2-1.87 0v.003zm1.814.26c-.432-.03-.03.345-.49.23l-.144-.23c-.058.085-.173.115-.144.23-.115 0-.03-.202-.058-.288.202-.173.576-.173.835-.06v.117zm-1.123 1.266l.49.057-.49-.056zm1.18.806l-.288.345.142.143c-.057.17-.23.344-.403.43-.2-.114-.145-.288-.2-.344-.06.2.026.345.2.46-.116.49.632.863.057 1.267.23 1.094.374 2.245.69 3.31.058-.03.086-.086.144-.086.203-1.237.146-2.274.29-3.57.23.288.057.95.2 1.382.23.69.807.374 1.18.058-.315-.172.2-.634-.142-.835h.056c0-.17-.057-.288-.2-.4.23-.29-.03-.72-.145-1.038-.23-.173-.403 0-.604-.087 0-.086-.058-.202.058-.26l-.49.145c-.085-.172.375-.43.145-.344l-.98 1.093c-.346-.548.92-.837.633-1.44l-.287.26c-.26-.088.026-.433-.06-.49zm-1.87.085c-.06.375.43.778 0 1.037-.174-.145-.202-.46-.347-.69.03.144 0 .258-.144.345-.23-.03-.086-.346-.2-.49-.318.547.287.95.2 1.382-.403-.203-.604-.75-.604-1.24-1.036-.2-1.353 1.066-1.87 1.584.4.03.66.576 1.092.29.087-.204-.115-.29-.115-.433.46.087.056-.546.46-.49.23.117-.087.204 0 .347.46 0 0 .346.143.577.69-.29 1.208-.778 1.67-1.382-.057-.463.144-.55-.288-.837h.002zm.69.547v.403h.145c0-.143.028-.316-.145-.403zm-.345.633c-1.008 1.353-2.706 1.612-4 2.532l-.06.576c.116.26.26.605.69.46l3.11-2.532h.603c.547.03.375-.604.432-.98l-.775-.055zm-3.6 1.037c-.43.086-.027.46 0 .69l-.46.058c.433.576.634-.2 1.095-.143-.23-.26.202-.116.202-.2-.204-.29-.49-.434-.838-.404zm3.455.403c-.402.287-.058.863-.26 1.237-.316-.057-.23-.46-.344-.605-.375.374.115.605-.144 1.036-.348-.03-.174-.576-.405-.69-.172.317.058.806-.23 1.094-.172-.172-.172-.518-.26-.69.03.056-.027.085-.085.143-.172.316-.258 1.008.087 1.24.173-.26.2.2.404.058.174-.03.087-.2.29-.2.633.085 1.208.17 1.928.2l-.633-2.764c0 .346.058.835-.058 1.036-.29-.202-.29-.692-.29-1.094zm3.944.978c-.344.403-1.38.288-1.293.605.058.23-.144.344-.144.488.604.287 1.15-.172 1.583-.404h-.634c0-.43.548-.287.577-.632l-.087-.058h-.002zM18.317 28.1c-.432.66-.058 1.524.086 2.215.175-.75-.056-1.467-.085-2.215zm-3.224.343c-.257.086-.862-.23-.775.287h.776v-.287zm.347 0v.346h.46v-.203c0-.26-.317-.086-.46-.145zm1.496.145c-.172-.06-.69-.23-.69.145l.69.06v-.205zM7.608 30.86c.115-.145.49-.113.346-.4-.144.056-.605.144-.346.4zm1.727-.287c-.2.087-.2.433 0 .49.086-.116.23-.03.345-.06.087-.285-.287-.256-.345-.43zm.345.693l.29.344c.142.03.258 0 .343-.112-.172-.175-.373-.264-.633-.232zm6.304.776l-.49 1.438c.23.086.375.4.403.547l.087-1.985zm19.254.058v.49l.98-.06v-.087c.057-.632-.634-.23-.98-.343zm-26.996.343h-.288l.144.146.144-.148zm26.94.29c-.23.314.086.286.29.487-.116.2-.317.086-.49.114-.26.547.4.087.49.433-.116.26-.636.028-.577.203l.086.057c.088.29.49.346.75.23.52.26-.402.287-.06.26.23.173.377.574.75.433-.028-.146.03-.26.087-.348l-.49-.23c.088-.26.46-.028.547-.2 0-.52-.717-.114-.892-.346.116-.26.547-.06.748-.2-.027-.348-.604-.49-.893-.402.146-.2.55-.23.75-.23v-.116c-.317-.174-.776-.003-1.093-.146h-.002zm-17.125.057c0 .26-.058.72.345.634-.087-.233-.115-.46-.345-.634zm-9.873.288l.26.402c.144-.29.633-.027.633-.402h-.893zm10.218.692c-.317-.115-.72-.086-1.036 0-.115.23-.49.086-.432.402.115.346.375-.087.576-.145.748-.317 1.353.346 1.84.774.635.406-.546.29-.603.693.374-.028.72-.287.95-.488-.317-.545-.777-.89-1.295-1.234zm-9.182 0l-.345.347c.805.026 1.698-.06 2.475.058.403-.027 1.065-.146 1.093-.402H9.22v-.003zm32.926-1.124c-.2.026-.748-.086-.547.346h.545v-.346zm.922 0c-.29-.027-.777.026-.633.346h.633v-.346zm.605.288l.144.146c.2-.028.52.086.547-.203-.143-.173-.663-.348-.69.057zm-1.87.29l-.347.26c.146.258.433.083.634.144.028-.116-.058-.26.057-.348-.115-.03-.258.057-.345-.057zm1.323.055c-.26.056-.69-.176-.748.2.2.144.488.314.748.144v-.346zm.978 0h-.287v.285l.287-.287zm.69.89l-.144-.892-.547.345c0 .2-.06.46.06.633l.632-.086zm-1.035-.345c-.148.113-.06.288.056.346-.03-.114.057-.316-.058-.345zm-1.615.086h-.604c-.2.49.375.29.605.347v-.346zm1.038 0h-.69v.347h.69v-.346zm-23.544.347c-.088.69.69.086 1.092.26-.058-.606-.72.028-1.093-.26zm-1.326.115l.145.777.2-.09c-.116-.23 0-.66-.346-.69v.002zm-1.15.288c-.75-.2-1.613-.26-2.16.29.605.315.95-.634 1.583-.23 2.073 1.093 3.052 3.136 4.635 4.776h.2c-1.352-1.64-2.503-3.712-4.26-4.835h.002zm23.485.06v.145h.805c-.173-.26-.547-.09-.806-.146zm-20.61.14v.147c.117.058.203.2.347.144.144-.197.576.117.49-.284-.173-.004-.548-.004-.836-.004v-.002zm-3.855.202c.03.547 1.036.146.98.347-.29-.23-.578-.404-.98-.35v.002zm3.74.232l-.144.2c.865 1.066 1.73 2.447 2.62 3.255-.69-1.21-1.696-2.36-2.474-3.457zm.548.06l.058.285c.2.172.375-.06.548-.088-.03-.345-.405-.144-.606-.2v.002zm13.96.14l-.086.346 1.668 2.477c0-.98-.978-1.987-1.582-2.822zm-14.852.26l-.142-.115-.204.114h.346zm1.296.23c-.03.23.346.145.346.058-.058-.114-.23-.058-.346-.058zm-1.583.058c-.086.433.432.374.69.288-.028-.402-.517-.086-.69-.288zm16.578.146c-.314.315-.025.947.203 1.035-.088-.26-.145-.863.085-1.18-.114.027-.228.06-.288.145zm-17.814 0v.26h.143c.03-.118-.087-.177-.144-.26zm-1.325.257l-.144 1.322c-.028.98-.287 2.016.49 2.707-.375-.23-.432-.69-.346-1.037-.142-.95-.055-1.926.002-2.992zm4.837.432l-.26-.432.26.432zm-1.87-.202l.287.404c.173-.03.403.054.547-.06-.143-.375-.46-.375-.834-.346zm-1.584.057h-.144v.4c.057-.027.086-.085.144-.056v-.344zm.346.06c.114.688-.376 1.034-.836 1.267l.92-.35c.116-.23.058-.632-.085-.92v.002zm1.87.574c-.03.288.402.432.632.26-.144-.317-.317-.26-.633-.26zm-1.238.46c0 .316.374.576.143.923-.287-.175-.345-.523-.49-.78-.23.46.49.807.203 1.324-.462-.173-.375-.92-.75-1.124.058.49.604.865.403 1.385h-.142c.344.402.748.66 1.18.834l.2-.49c.116-.488.433-1.44-.258-1.783l.058.056c-.03.116.057.29-.058.35-.288-.122-.346-.525-.49-.698h.002zm25.76-2.13c.374-.087 1.036.23 1.096-.287-.348.316-.982-.318-1.096.284v.002zm-2.763-.143c-.116.403.46.403.345 0h-.346zm.69 0v.346c.17-.03.46.113.546-.146-.087-.028-.058-.116-.058-.202h-.49zm.832 0v.346h.203c.086-.174-.173-.26-.203-.348zm.405.086l.203.547c.173-.2.43-.174.347-.49l-.55-.06v.002zm-2.274.343l-1.383-.146v.548c.29.604 1.354.287 1.872.287-.4-.573-1.323-.086-1.87-.43.403-.116.92-.03 1.382-.06v-.2zm3.05 0c0 .373.548.115.808.2 0-.085 0-.17.087-.2h-.893zm-2.358.118c-.115.028-.29-.06-.346.087l.345.145v-.23zm.29 0v.146l.458.086v.4h.433c-.405-.258-.233-.864-.892-.63zm.887 0c-.086.2.146.23.26.23.06-.06.087-.086.087-.146-.087-.143-.23-.056-.348-.083zm1.73.43l-1.038-.086c-.113.115-.402.086-.345.287h1.38v-.2h.002zm-2.706.144h.2-.2zm-.893.346l.288.202c.46-.03 1.296.057 1.64-.09-.373-.546-.545.55-.833-.11l-.402.2c-.058-.09-.172-.117-.145-.2h-.546v-.002zm2.216.06c.2.486.69-.088 1.094 0-.375-.203-.692.113-1.095 0zm-.348.69l-.487.49c-.376.143-.433-.23-.748 0h.114c.2.027.23.228.23.4.574-.172 1.697.462 1.784-.545-.284-.144-.775.03-.892-.345zm-1.467.056h-.2v.145l.2-.143zm-1.785.29l-.2-.202v.2h.2v.002zm-19.627-.145c.2.23.346.348.69.29-.057-.345-.402-.29-.69-.29zm-2.878.433l.26.604-.26-.604zm3.51.202c0 .26.174.317.405.26v-.114c-.087-.173-.26-.145-.404-.145zm-1.035.402l-.057.348c.086-.028.287.06.26-.06-.116-.085-.116-.2-.203-.288zm-2.82.29l-.087.345c.547.288.605 1.44 1.526 1.095-.088-.375-.635-.086-.75-.4l.057-.087h-.2c-.088-.06-.203-.146-.146-.26.03-.028.087-.09.146-.09h-.202c-.317.118-.375-.228-.432-.4.26-.228.49.117.69.202-.085-.262-.373-.346-.603-.405zm2.676.602c.374.145.346-.173.633-.26-.23-.17-.78-.057-.635.26zm1.67-.258c-.375.115-.98.548-.835.95l.75-.2-.2-.346c.402-.146.575.574.98.2l-.29-.46c.547-.202.432.72 1.036.403-.03-.147-.26-.29-.058-.405.317.115.345.49.75.346-.634-.374-1.325-.604-2.13-.49l-.002.002zm3.252.49l.604.26v-.145c-.2-.03-.374-.175-.604-.116v.002zm1.785.058l.058.287c.548.028 1.268-.23 1.873.06l-1.93-.347zm-6.765.49h.403-.402zm6.908 0c.317.633 1.295.23 1.784.143l-1.784-.143zm.403.603c.026.06.084.086.084.145.23.115.288-.173.46-.2-.172.027-.344.086-.546.056zm-.606 1.324v.49c.144-.03.346.057.46-.087-.057-.23-.316-.26-.46-.403zM16.82 25.277c.114 1.986.517 4.174.95 6.218l.2-.23c-.288-2.042-.777-4.06-1.15-5.987zm2.53 2.534c-1.466.29.06 2.305-1.035 3.05.46.606-1.123.925-.26 1.44.317.09.52-.112.75-.26l.345-2.503c.144-.115.23-.49 0-.548.317.057.23-.316.345-.49-.086 0-.172.027-.2-.06l.287-.286c-.202.033-.346-.285-.23-.342h-.002zm-4.95 1.614c-.345.345-.172.69-.43 1.036-.346 1.12-.433 2.1-.605 3.31.288-.115.46-.086.748.06.172-.263-.547-.577-.288-1.037.26.115.403.374.49.547.057-.028.086-.087.143-.06.058-.518-.776-.633-.49-1.18l.634.633c.086-.52-.663-.834-.432-1.322.086 0 .173 0 .23.09-.058.027-.116.06-.086.11.26.06.316.35.49.436.085-.403-.087-.72-.403-.98 0-.144-.2-.372.06-.487.23-.03.057.287.202.287l.29-.146c-.03-.173-.52-.345-.29-.603-.403-.003-.057-.665-.26-.693H14.4zm-6.446 1.64h.69c-.172-.086-.49-.086-.69 0zm8.375.144c-.06.893.084 2.072.142 2.82h.058c.346-.922-.028-1.985-.2-2.82zm-8.636.2c.23.376.864.202 1.237.146v-.2c-.517.085-.862-.205-1.236.055v-.002zm4.98.202h-.144c-.374-.03-.49.4-.633.633.288-.03.604.058.835-.058l-.058-.576zm-1.958.578h.633v-.29c-.174-.49-.577-.002-.634.29zm-2.82-.347v.35c.776.143 1.353-.378 2.014.112-.2-.66-1.294-.404-2.014-.46zm.49.95H9.42c.086-.575-.835-.4-1.036 0h.002zm1.783.086c.287 0 .46-.286.632-.432-.345-.142-.49.26-.633.432zm2.503-.432c-.49.117-1.18-.287-1.467.347l1.525.145c-.834.375-2.187-.2-2.964.49.92.114 1.928.03 2.907.06l.115-.837-.116-.204zm-4.23 1.182l.085.287.2-.23c-.085.002-.23.057-.287-.057h.003zm4.576.49c-.146.2-.23.517-.087.746.346-.2 1.036.116 1.324 0l-.086-.4c.116-.26.375-.087.576-.144-.576-.058-1.152-.144-1.727-.202zm.603 1.38c0 1.296.345 2.88.086 3.655.114-.29.43-.603.345-.893-.46-.89-.288-1.81-.432-2.76zm21.5 2.07l-.146-.144c-2.33 1.498-4.862 2.908-7.194 4.435l.202.2 7.137-4.49zm6.073.494l.2.2-.2.258c-.26-.027-.778.115-1.036-.115-.488 1.065 1.238.55 1.182 1.383-.433.314-1.297.23-1.814.06-.172.26-.573.087-.748.145-.547.03-.547-.633-.432-.98-.086-.255-.287-.312-.46-.255-.605 1.408 1.21.806 1.237 1.726-.52.317-1.382.23-1.93.06-.146.26-.574.087-.834.147-.66-.375-.17-1.063-.43-1.525-.95.23-2.39-.833-3.166.403.23.06.604-.115.688.145-1.207-.2-2.07.806-3.05 1.324h.23c-.06.488-1.036.113-1.325.688H30.4v.146c-.46 0-.947.29-1.38 0-.175.23-.402.316-.605.46.23.376.604.433.893.634 1.584.835.92-1.266 1.524-1.87.115-.778 1.12-.46 1.295-.892.75.058 1.295-.116 1.956.144-.46.374-1.148-.174-1.466.2 1.495.72 3.425 1.238 5.122.634.517 0 .977-.604 1.436-.345-.115.835.604 1.813-.145 2.42.577.056.807-.06 1.18-.435-.313-.027-.46.114-.69-.145.404-.345 1.326.2 1.584-.604-.488-.06-1.035.087-1.582.144-.113-.084-.146-.2-.146-.345.894-.316 2.13.403 2.505-.634-.805-.145-1.755.315-2.504-.145 1.065-.315 2.85.488 3.455-.834-.432-.174-.95.258-1.236-.2.172-.433.748-.316 1.123-.348l-.287.288c.17.112.518-.26.634.06l.807-1.095h-1.494c-.26.173-.402-.403-.576 0-.23-.06-.52.23-.75-.087.03-.03.09-.06.06-.114-.028-.316.346-.26.433-.35-.087-.207-.03-.466-.346-.35zm-14.938.544c-.318.55-.23 1.412-.06 1.986.692.374.404 1.268.98 1.73.432.26.806 1.034 1.382.632-.98-.72-2.188-1.842-2.075-3.252-.17-.405.665-1.067-.228-1.096zm-13.126.605v-.35c-.144.06-.26.174-.2.35h.2zm12.578.143c-1.007-.55-2.388-.46-3.454-.06h.202c1.037-.26 2.274.144 3.252.202v-.142zm-13.124.084c-.316.146-.864.146-1.094.117l.547.574.547-.692zm11.398.117c.172.52.834.2 1.237.287-.402-.086-.72-.403-1.236-.286zM8.73 34.374v.23c1.008-.06 2.102.114 3.023-.146l-3.022-.085zm.202.834c-.057.576.634.23.69.632-.085.116-.2.146-.345.146.115.92 1.467.2 1.93.604-.06.145-.23.06-.347.086-.03.23.058.605.2.55.06-.09.146-.06.23-.09-.142.03-.286 0-.343-.112.49-.29 1.38-.06 1.985-.23v-.06c-.547 0-1.007 0-1.44-.144.404-.287.893-.058 1.44-.143v-.202c-.086-.634-.834-.23-1.238-.347-.288-.145-.777.028-.978-.145.633-.46 1.38.03 2.158-.115-.028-.173.058-.373-.086-.488-1.265.03-2.762-.057-3.856.058zm1.44 1.583h-.202l.2.145.002-.143zm.345.635h-.26l.26.145v-.146zm1.266.288c.26 0 .288.315.604.202v-.146c.087-.403-.604-.373-.604-.057zm-.49.202v.257c.116-.025.03-.17.06-.256h-.06zm-.545.402l.057.2c.03-.028.086-.06.057-.114-.057 0-.086-.056-.114-.086zm.69.086l.058.2c.087-.026.288.06.288-.085-.174.06-.23-.085-.346-.115zm9.24 4.952l1.668-.06c-.547-.172-1.122.06-1.67.06h.002zm0 .776l1.726.06c-.605.084-1.15-.46-1.727-.06zm-2.418 0c.633.088 1.467.088 2.014 0H18.46zm-3.656-8.835c.145 1.354-.316 3.08.145 4.49-.75.547-1.413.92-2.42.948.03.23.29.23.403.433l1.93-.085c.085.086.2.146.143.287-.548.202-1.18-.114-1.727.06.287.603 1.236.286 1.726.49-.26.17-.69.228-1.094.2.287.805 1.15.172 1.583.632-.202.114-.518.2-.75.06.692.805 2.102.172 3.023.545-.663.26-1.41.114-2.13.145.402.72 1.41.315 2.07.633-.172.26-.66.087-.978.146.864.86 2.476.313 3.454.46.662.114 1.583-.23 2.015.286-1.438.115-2.677-.2-4.144 0 1.093 1.123 3.108.46 4.49.547l.346.2-.145.146H20.04c.836.4 1.757.633 2.65.892.777-.373 2.014.174 3.11.088.026.173-.377.23-.147.402l.95.086-.893-.143c.29-.433.98-.288 1.584-.433.26 0 .633 0 .633.287l-1.323.057h2.015c-.176-.03-.464.115-.55-.115 1.497-.633 2.966.634 4.403-.288l-2.877-.144c1.38-.575 3.51.315 4.893-.488-.175 0-.405.06-.55-.058.434-.72 1.18.23 1.73-.402-.317-.174-.778.057-1.037-.23.287-.23.864-.086 1.296-.115.374.2.806-.23 1.18-.346.316-.486.98-.46 1.382-.833l-3.655.2-.288-.2c1.41 0 2.88-.288 4.374-.288l.348-.26c-.2.03-.402-.058-.434-.23-1.27.577-2.792.75-4.29.577l-.057 1.496c-.81 1.063-2.273.346-3.452.346l.2.144c-1.095.29-2.476.06-3.655-.06.864-.285 2.073-.026 2.82-.198-2.475-.434-4.547.486-7.022.258-.805-.546-.49-1.784-.574-2.763.172-.374.604-.52.98-.547-2.534.576-6.16 1.354-8.694-.146.087-.748.087-1.524 0-2.33.145-.46.663-.06.893-.086v-1.93c-.172-.057-.317.058-.346.203.604.314-.086.604.403 1.035-.087.576-.835-.028-.893.432-.114-.058-.057-.202-.057-.288-.114-.26.145-.316.346-.287l-.348-.26c-.114-.26-.402-.778.058-.834-.057.058-.402-.057-.287-.346.086-1.148.49.26 1.123-.2v-.776c-.375.06-.663-.087-.98-.115.173-.402.69-.145 1.037-.23l.086-.46c-.52-.03-.78.028-1.18-.23.372-.317.832.058 1.18-.202-.176-1.127-.81.425-1.327-.265zM24.877 46.46c-.777.117-1.93.117-2.677 0 .836-.084 1.757-.084 2.677 0zm4.29.088c-1.325-.028-2.62.058-4-.087l.057-.113c1.323.058 2.733.115 3.942.202v-.002z"
|
70
|
+
stroke="none"
|
71
|
+
id="path3526"
|
72
|
+
style="fill:#ffffff" />
|
73
|
+
<path
|
74
|
+
class="seal-svg--stroke"
|
75
|
+
stroke-width=".25"
|
76
|
+
d="M25.396 24.163h1.583-1.585zm2.964 0h1.81-1.81zm-5.785.547h1.583-1.583zm2.965 0h1.438-1.438zm2.82 0h1.727-1.728zm3.11.057h1.813-1.812zm-10.132.49h.2-.2zm1.438 0h1.583-1.585zm2.908 0h1.382-1.382zm2.676.087h1.61-1.61zm2.908 0h1.813-1.812zm-10.018.546h.548-.547zm1.728 0h1.583-1.582zm2.762 0h1.325-1.324zm2.563 0h1.524-1.524zm2.82 0h1.61-1.61zm2.764 0h.49-.49zm-12.637.547h.836-.835zm2.016 0h1.44-1.44zm2.62 0h1.237-1.238zm2.417 0h1.38-1.38zm2.617 0h1.527-1.526zm2.707 0h.75-.75zm-12.377.547h1.124-1.123zm2.218 0h1.38-1.38zm2.474.086h1.18-1.18zm2.303 0h1.295-1.295zm2.475 0h1.44-1.44zm2.62 0h1.036-1.036zm-12.002.546h1.38-1.38zm2.417 0h1.296-1.294zm2.332 0h1.036-1.036zm2.07 0h1.325-1.324zm2.42 0H31.9h-1.323zm2.416 0h1.182-1.182zm-11.31.548h1.295-1.295zm2.274 0h1.237-1.237zm2.216 0h1.036-1.038zm1.985 0h1.238-1.238zm2.276 0h.346-.346zm-8.406.546h1.295-1.295zm2.13 0h1.237-1.237zm2.62 0h.43-.432zm1.324 0h1.182-1.182zm-5.612.634h1.122-1.123zm1.956.056h.892-.892zm3.57 0h.574-.574zm-6.62.548h.49-.49zm1.524 0h1.037-1.036zm1.785 0h.288-.288zm-2.677.692h.346-.346zm1.238-1h1.037-1.037zm-.776 1.63h.43-.43zm1.265 0h.604-.606zm7.165 0h.778-.777z"
|
77
|
+
id="path3528"
|
78
|
+
style="fill:#ffffff" />
|
79
|
+
<path
|
80
|
+
d="M27.094 12.017c1.094-.374 1.182 1.21 2.16 1.095 0 .604-.98.777-.434 1.525-.114-.03-.146.115-.146.2l.23.548c-.145-.028-.2.087-.287.144.17.977.86 1.87 1.583 2.503.145-.203-.23-.347-.202-.577h-.146c.316-1.41-.52-3.224 1.237-3.857 2.905-.23 6.302.576 8.92-.69.2.547-.575.374-.747.75-.834.457-1.268 1.35-2.16 1.61-.314.75-1.523.172-1.523 1.036-.46.547-1.353.258-1.437 1.15-.402.606-1.095.548-1.582 1.123-.113.23-.06.52-.144.75.348.143.52-.29.69-.49.433 1.093-.605 1.93-1.036 2.993-2.993-.115-6.073-.432-9.126 0-.69-.605-.546-1.64-1.438-2.015-.115-.49.23-.807.403-1.18l.142.286c.115-.17.058-.43.058-.632-.2-.374-.776-.058-.748-.605-.92-.116-.374-1.555-1.583-1.124-.49-.085-.174-.69-.55-.834-1.092.43-1.092-.864-2.07-.69-.548-.75-1.44-.95-2.074-1.643-.057-.086-.316-.2-.23-.43 1.18-.088 2.13.747 3.397.63 2.1.29 4.317-.574 6.275.202 1.093.777.286 2.216.43 3.195-.546-1.008.605-2.735-.978-3.253-1.698-.346-3.31.345-5.095.2-1.15-.2-2.36-.402-3.396-.632 2.1 1.267 5.24 1.094 7.742.69.432.086.98.26 1.18.69.116.75-.345 1.93.403 2.505-.086.287-.316.49-.49.748l.088.087c.863-1.296 2.763-2.246 2.273-4.146-.402-.2-.92-.43-1.122-.835.115.03.23.086.345.06l-.26-.406.403-.085c-.057-.29-.374-.29-.604-.26.114-.49.603-.634 1.093-.548.176.087.35.547.55.202v.003zm-.49.204c-.144-.256-.662-.112-.603 0l1.038.953c-.2.2-.46.2-.69.288.52.69.98-.517 1.38.26l.146-.26c.115.145.316.346.46.2v-.14h.347c-.145-.088-.145-.23-.057-.347-.547-.26-.72-1.065-1.44-.893-.03.604-.492.287-.577-.06h-.002zm4.72 1.643c-1.727.52-.807 2.562-1.266 3.655.633-.662.314-1.697.488-2.532.287-.46.833-.864 1.383-.98 2.186.52 4.773.29 6.85-.345-2.363.808-5.066-.056-7.457.203zm-3.05.49l-.2-.144.257.2-.056-.058zm-1.036.288l.058.46-.058-.46zm.345.058l-.058.2c.058.06.087.175.2.146-.084-.086-.026-.26-.142-.346zm.345 0c-.057.144.087.26.202.2-.057-.085 0-.286-.202-.2zm.145.98h.057v-.346h-.057v.346zm-.892 0h.06v-.29h-.058v.29zm.346-.29c-.03.174 0 .405.2.405v-.202c-.055-.086-.026-.287-.2-.2v-.002zm-.49.634l-.143.26c.086.058.23.144.288.2-.056-.142-.056-.316-.143-.46zm.347.06c-.115.23.172.43.345.4l-.345-.4zm.49.143l.258.144-.26-.145h.003zm-1.267.057h-.116l.115.2v-.2zm-.26.49h-.2v.345h.2v-.346.002zm.606.345l-.057-.346c-.086.03-.432.2-.202.346h.26zm.432-.346l.058.346c.2-.116-.03-.23-.058-.346zm1.095.29l-.2-.29.2.346v-.057zm.342.344v.2h.2c.03-.17-.14-.086-.2-.2zM18.747 14.64l-1.468-.087 1.523.145-.057-.058zm15.255.115c1.12.143 2.39.375 3.54.086-1.15.29-2.36-.26-3.54-.084zm-15.744.346l.202.23c1.38.087 2.82-.143 4.144-.344-1.497-.057-2.85.403-4.346.116zm15.744.145h.286-.286zm.49.087c.518.145 1.15.288 1.725.115l-1.726-.114h.002zm-11.11.403c-1.18-.116-2.36.173-3.54.29-.03.113.057.172.143.257l3.396-.547h.002zm11.052.288c-.604-.172-1.266-.316-1.87-.143.95-.058 1.812.518 2.678.258-.29 0-.607.06-.808-.114zm-2.073.347c.606.058 1.095.547 1.728.402-.605-.086-1.094-.46-1.726-.403zm-11.05.345c.518.114 1.036-.202 1.583-.288-.518.116-1.036.23-1.583.288zm10.563.057c.604.23 1.38.374 1.93.402-.72.087-1.24-.374-1.93-.403v.002zm-9.96.892l1.382-.748-1.438.69.057.058zm9.184-.547c.633.375 1.322.748 2.014.69-.632-.345-1.323-.46-2.013-.69zm-9.873.057c.028.202.46.202.49 0h-.49zm2.274.288h-.116l-.287.287.404-.288h-.002zm8.174.634l-.69-.23 1.036.49-.345-.26zm-5.123.344c-.06.432.113.95-.146 1.296-.432.086-.287-.634-.546-.892l-.403 1.035c-.173-.375-.576-.66-.69-1.036 0 .315.23.632.056.978-.2-.115-.46-.317-.49-.576v.69c-.373-.058-.43-.49-.49-.806-.314.26.118.72-.2.95-.345-.344-.402-.863-.546-1.236v.144c-.058.086-.145.057-.2.057 0 .374.517.634.258 1.036-.403-.23-.604-.864-.604-1.295-.086.202-.144.402-.202.604-.173-.06-.26-.375-.23-.346.116.402.576.833.346 1.18-.345-.144-.432-.546-.604-.835-.173.373.2.632.402.89 1.7-.26 3.425-.49 5.267-.403-.058-.374.087-.833-.23-1.093.086.345-.115.662-.345.806l-.403-1.152v.002zm1.44.346c-.03.402-.088.777-.348 1.093h.49c.058-.49-.086-.66-.144-1.094zm1.955.058l-.488.546c-.145-.086-.03-.316-.145-.402-.23.258-.06.748-.402.89-.088-.286-.176-.775-.145-.89l-.435.89 4.23.347c.173-.2.52-.43.347-.69l-.635.547-.06-.058c.175-.173-.058-.375-.085-.49l-.26.345-.2-.834c0 .43-.403.72-.633.978-.06-.173-.202-.66-.146-.777-.145.23-.2.604-.548.632-.2-.26.06-.518 0-.834-.06.374-.346.634-.633.892-.366-.374.238-.69.238-1.094zm-4.288 1.525c-.058.143-.317-.03-.2.2h.402v-.143c-.06-.087-.146-.058-.203-.058zm.547 0v.2c.288 0 .575.03.834-.058-.058-.057-.085-.085-.085-.144h-.748zm1.784 0c-.23.03-.633-.116-.75.143h.75v-.143zm1.035 0c-.23.057-.747-.174-.747.2.29-.03.604.06.836-.058.027-.085-.03-.114-.09-.143zm-4.257.057v.2c.173.058.316-.086.403-.115-.088-.143-.29-.056-.404-.085zm4.604 0c-.057.2.145.23.29.2.026-.028.085-.057.057-.115-.058-.143-.232-.056-.347-.085zm.692 0l-.06.2h.488v-.115c-.14-.028-.314.058-.43-.085h.002zm-6.074.086l.086.202c.144.03.288-.085.346-.144-.116-.113-.29-.056-.432-.056zm6.91 0l-.146.202h.346v-.144c-.058 0-.145.03-.2-.056zm-7.66.26c.174.03.346-.03.404-.143-.115-.087-.49-.145-.403.143h-.002zm8.203-.202l-.06.2h.347c.086-.17-.14-.2-.287-.2zm-8.835.203c.086-.03.288.058.288-.058-.058-.114-.317-.086-.288.058zm9.527-.144l-.057.23h.202c.026-.058.086-.088.086-.146-.085.002-.172.002-.23-.084zm-6.964.286l-.288.145.23.347c.115-.03.316.057.346-.086l-.288-.404zm4.434.06l-3.945-.06v.404c1.842-.06 4 .115 5.873.143l.06-.258c-.317-.116-.346.2-.604.2-.172-.085 0-.172 0-.286h-.344v.2c-.06.086-.146.086-.23.086-.116-.086-.03-.23-.06-.346-.2.03-.575-.114-.633.145l-.118-.23zm-5.47.085c.057.173.114.52.402.403.115.03.23-.028.23-.143-.086-.26-.374-.432-.633-.26h.002zm-.548 0c-.345.06.03.318.058.49.144 0 .23-.03.346-.087-.202-.114-.03-.547-.404-.402zm-.546.06c-.316.027.058.257 0 .43.086-.028.288.06.26-.087l-.26-.344zm8.894.43l.086-.345-.144.345h.058z"
|
81
|
+
stroke="none"
|
82
|
+
id="path3530"
|
83
|
+
style="fill:#ffffff" />
|
84
|
+
<path
|
85
|
+
d="M27.928 13.1v.146c-.288-.116-.72 0-.834-.433.144-.576.863-.086.834.288zM20.444 51.046c.02-.08.038-.192.15-.164.084.02.097.1.1.17.024.304.107.608.44.69.26.066.607-.016.68-.31.067-.266-.153-.428-.352-.553l-.234-.15c-.462-.288-.794-.647-.646-1.23.08-.314.318-.56.605-.7.316-.15.664-.153 1-.067.24.06.618.22.807.38.14.122.108.184.066.35l-.07.274c-.02.082-.048.277-.168.246-.12-.03-.107-.188-.11-.278-.005-.173-.007-.315-.096-.468-.106-.172-.292-.266-.478-.313-.316-.08-.726 0-.817.36-.1.406.306.64.585.842.355.268.785.615.658 1.118-.167.663-.984.83-1.562.687-.176-.045-.484-.18-.62-.297-.082-.075-.046-.15-.022-.245l.087-.344v.002zm-1.936-1.266c.06-.145.102-.22-.065-.29-.1-.042-.31-.13-.41-.146-.145-.03-.245.05-.335.158-.045.055-.118.137-.204.102-.076-.03-.072-.098-.044-.164.065-.13.125-.27.19-.403.055-.134.104-.28.15-.42.026-.06.074-.125.156-.093.23.096-.128.483.38.694l.21.075c.16.057.18-.016.232-.145l.232-.56c.05-.12.118-.3.083-.432-.038-.14-.182-.237-.312-.29-.333-.142-.67-.123-.95.116-.056.056-.145.136-.23.1-.078-.03-.093-.076-.06-.152.016-.044.097-.156.125-.2l.21-.36c.03-.057.05-.08.113-.055.354.146.7.312 1.055.46.46.187.928.357 1.387.55.066.025.107.062.078.134-.032.075-.115.074-.177.06-.346-.08-.375.02-.494.306l-.703 1.698c-.116.283-.192.427.095.602.058.034.14.098.123.136-.03.076-.095.097-.162.066-.287-.12-.557-.253-.844-.372-.498-.206-1.004-.394-1.507-.6-.105-.046-.047-.115-.012-.202l.16-.39c.03-.07.047-.153.158-.107.072.027.083.125.095.19.02.113.066.232.117.34.063.132.21.198.34.25.08.034.343.145.433.13.07-.01.12-.142.144-.196l.248-.592-.002.002zm-3.698-.72c-.15.11-.204.19-.38.08-.147-.088-.11-.14-.09-.294l.38-2.71c.015-.08.032-.21.026-.293-.008-.106-.032-.157-.118-.216-.073-.05-.166-.086-.104-.19.054-.087.145-.038.207 0 .19.11.356.235.534.343.222.135.446.242.66.37.06.038.135.096.085.18-.09.15-.328-.158-.424 0-.034.06-.048.144-.057.196l-.075.443c-.036.19-.044.172.116.27l.583.35c.156.093.137.095.275-.018.112-.097.263-.218.34-.347.19-.314-.365-.39-.245-.588.048-.08.14-.043.203-.006.138.083.274.18.412.26.138.083.285.16.423.242.068.04.13.097.083.177-.045.075-.117.042-.18.02-.143-.058-.192-.073-.33.006-.123.072-.34.255-.464.353l-.614.464-1.246.906zm1.11-1.098c.025-.02.1-.073.118-.104.037-.062-.067-.102-.107-.125l-.384-.233c-.032-.018-.136-.104-.168-.052-.013.022-.023.118-.027.135l-.16.937.732-.558h-.002zm-3.35-1.01c-.197.247-.306.33-.084.584.042.047.12.116.064.187-.05.062-.102.043-.158-.004-.21-.17-.398-.35-.608-.52-.194-.154-.4-.294-.59-.447-.057-.046-.09-.094-.04-.156.053-.063.124-.02.18.01.31.18.354.08.572-.188l1.158-1.44c.172-.214.267-.395-.023-.63-.583-.472-.99.016-1.15-.115-.063-.053-.046-.1 0-.153.126-.16.313-.28.454-.435.1-.104.12-.04.218.035.307.248.6.512.908.76.314.252.65.498.965.75.056.045.09.086.042.146-.052.06-.135.042-.19.013-.302-.17-.342-.097-.553.167l-1.16 1.433-.004.003zm-2.067-4.798c.005.48-.246.95-.614 1.246-.358.285-.817.398-1.268.343-.49-.06-.888-.298-1.195-.683-.616-.77-.705-1.892.12-2.553.785-.628 1.86-.396 2.467.36.27.34.485.85.488 1.287zM8.21 41.122c-.48.385-1.1 1.253-.622 1.85.415.52 1.204.153 1.616-.178.275-.22.513-.503.66-.825.143-.33.206-.73-.034-1.03-.417-.523-1.207-.15-1.62.18v.002zM6.37 39.23c.136-.076.218-.11.128-.27-.053-.095-.164-.294-.23-.37-.094-.112-.224-.11-.362-.08-.068.015-.176.033-.222-.048-.04-.07.003-.12.066-.154.132-.062.268-.142.4-.2.125-.07.256-.158.377-.237.06-.03.136-.05.18.025.122.217-.4.3-.13.78l.118.187c.092.147.15.103.272.032l.58-.324c.265-.15.383-.192.27-.502-.025-.063-.06-.157.022-.205.065-.035.112.005.144.063.132.233.24.47.373.705.122.218.262.425.384.64.037.064.044.12-.023.157-.073.04-.133-.014-.173-.062-.217-.27-.286-.215-.58-.05l-1.608.904c-.27.15-.402.2-.286.516.025.063.073.15-.003.19-.073.043-.116.007-.152-.056-.233-.416-.454-.852-.688-1.268-.163-.29-.348-.58-.51-.866-.067-.117-.08-.15.046-.223l.434-.243c.06-.033.135-.047.172.02.047.086-.034.196-.074.272-.075.13-.122.206-.112.357.01.166.106.326.188.473.03.055.103.204.17.237.056.026.133-.016.183-.044l.645-.353v-.003zm-.766-5.29c.292-.09.417-.105.368-.436-.01-.065-.025-.166.064-.192.074-.023.11.023.13.09.082.257.14.51.22.768.075.237.168.47.243.706.02.07.015.125-.06.147-.08.023-.126-.04-.155-.1-.156-.31-.236-.268-.558-.168l-2.086.655c-.136.05-.143.046-.1.186.106.334.28.428.605.526.072.02.212.07.237.147.02.06-.02.102-.08.12-.035.013-.08.01-.117.01l-.628.02c-.08.005-.18.018-.21-.08-.017-.054 0-.092.043-.12.126-.09.09-.114.047-.255l-.556-1.773c-.046-.15-.07-.28-.24-.324-.054-.013-.114-.03-.133-.09-.035-.113.064-.124.15-.14l.654-.137c.084-.014.205-.06.238.046.026.085-.04.153-.1.2-.31.255-.38.35-.25.758.04.128.056.13.185.09l2.092-.655zM3.73 30.514c-.024-.175-.02-.17-.21-.143l-.497.07c-.313.045-.45.033-.46.37 0 .06.008.167-.08.18-.082.012-.104-.038-.115-.11-.038-.266-.054-.525-.092-.79-.034-.247-.09-.49-.125-.73-.01-.07 0-.13.08-.144.084-.012.106.068.125.13.106.34.206.3.55.25l1.82-.26c.303-.042.43-.038.434-.368 0-.068 0-.168.094-.18.077-.014.105.04.115.105.037.27.053.526.09.793.036.246.09.488.126.734.01.072-.003.126-.08.138-.083.012-.12-.062-.138-.12-.104-.33-.19-.306-.523-.257l-.784.116c-.137.023-.12.032-.1.17l.13.913c.03.214.007.2.217.173l.718-.103c.303-.043.428-.04.434-.37 0-.07 0-.168.093-.182.078-.013.105.04.115.107.038.268.054.526.09.792.037.246.092.49.127.736.01.07-.003.125-.08.137-.082.013-.12-.062-.138-.122-.104-.33-.19-.304-.523-.255l-1.82.26c-.314.046-.452.032-.46.368-.002.064.007.167-.08.18-.082.014-.105-.035-.115-.107-.04-.267-.055-.526-.093-.792-.035-.245-.09-.49-.124-.73-.01-.07-.003-.13.08-.142.08-.013.103.07.122.13.106.34.205.3.548.25l.498-.07c.186-.025.185-.03.16-.21l-.13-.913zm-.41-3.162c.155.002.243.014.245-.17 0-.107.003-.335-.016-.434-.026-.145-.14-.21-.274-.25-.067-.022-.17-.06-.17-.153.002-.083.065-.103.137-.103.145.013.3.015.445.027.144 0 .3-.01.445-.018.067 0 .145.023.144.11-.004.25-.5.062-.505.612l.008.222c.008.172.08.162.22.164l.607.008c.13 0 .32-.003.43-.084.116-.087.154-.257.156-.398.004-.362-.138-.67-.463-.838-.072-.032-.18-.084-.18-.178 0-.083.038-.113.12-.112.047 0 .182.034.233.043l.415.064c.063.006.093.016.093.083-.003.383-.03.766-.032 1.15-.005.497.01.994.004 1.492 0 .07-.017.123-.095.122-.084 0-.114-.078-.124-.142-.053-.353-.157-.344-.468-.346l-1.838-.02c-.306-.002-.467-.02-.522.312-.01.067-.038.164-.08.164-.083 0-.124-.053-.123-.126.002-.31.026-.61.03-.922.006-.54-.008-1.078-.003-1.622 0-.113.09-.087.182-.086l.42.005c.077 0 .16-.015.16.104-.002.078-.085.124-.143.16-.1.062-.194.148-.27.235-.1.106-.108.27-.11.407 0 .088-.004.373.042.45.035.063.176.06.237.06l.637.007.003-.002zm2.412-6.402c.165.045.23.054.29.23.112.32.097.693.027 1.022-.097.446-.31.946-.66 1.253-.37.324-.907.48-1.393.376-.5-.104-.904-.455-1.118-.917-.207-.457-.23-1.03-.126-1.515.05-.238.152-.518.268-.738.07-.13.09-.125.237-.12l.266.014c.053 0 .1 0 .15.01.057.013.08.06.067.116-.05.233-.655.12-.8.805-.072.334.05.683.278.932.238.256.59.416.925.487.33.07.71.07 1.027-.047.34-.13.612-.39.69-.754.04-.198.01-.396-.08-.573-.095-.18-.243-.307-.396-.434-.05-.038-.093-.084-.08-.15.024-.11.14-.08.215-.06l.21.063h.002zm.342-1.51c.29.097.4.157.555-.136.03-.06.075-.15.164-.12.074.025.075.086.053.15-.085.255-.188.493-.274.75-.08.235-.14.478-.22.712-.023.07-.06.112-.132.087-.08-.026-.077-.108-.067-.17.055-.343-.034-.355-.353-.463l-1.74-.59c-.3-.1-.418-.173-.58.123-.028.057-.067.152-.15.125-.078-.028-.076-.08-.053-.15.086-.255.188-.494.274-.75.08-.235.14-.478.22-.71.022-.067.055-.117.134-.09.078.027.062.108.05.17-.057.352.05.36.378.472l1.744.59h-.002zm.986-2.313c.278.13.38.204.567-.07.038-.056.094-.138.178-.098.07.03.064.092.036.152-.113.244-.243.47-.36.713-.105.224-.193.457-.3.683-.03.064-.072.102-.142.068-.075-.035-.065-.116-.048-.177.094-.334.008-.357-.296-.5l-1.974-.937c-.134-.06-.136-.065-.198.066-.15.317-.084.503.086.796.04.064.108.194.073.27-.027.06-.085.062-.14.035-.034-.015-.065-.047-.093-.07l-.477-.41c-.062-.053-.142-.113-.1-.203.025-.05.062-.068.115-.06.15.02.144-.024.205-.155l.797-1.68c.07-.146.138-.255.042-.404-.033-.046-.064-.1-.037-.157.05-.106.13-.044.206 0l.57.347c.07.045.19.095.143.193-.038.08-.133.085-.21.08-.4-.024-.514-.004-.698.384-.058.123-.045.133.077.19l1.978.94v.003zm.423-4.357c-.026-.06-.07-.162-.13-.204-.092-.065-.202-.01-.283.08-.08.088-.13.193-.206.14-.072-.05-.04-.142 0-.197.088-.13.195-.245.29-.38.107-.153.204-.327.313-.483.042-.06.12-.118.197-.064.063.044.023.093-.008.146-.048.086-.075.187-.076.287.004.176.104.43.166.586l.387 1.063.69.485c.25.176.34.265.572.027.047-.05.116-.122.192-.067.064.045.048.104.01.16-.155.22-.32.42-.476.64-.14.205-.267.42-.41.623-.042.06-.09.09-.152.046-.067-.05-.044-.128-.017-.185.15-.312.07-.35-.206-.543l-.563-.396-1.59-.005c-.1 0-.23-.002-.33.02-.085.02-.13.03-.183.096-.05.065-.095.156-.188.09-.08-.057-.02-.147.022-.206.132-.187.274-.352.405-.54.16-.228.298-.46.457-.684.044-.064.113-.16.202-.1.09.062-.004.168-.05.232-.03.046-.067.16-.003.205.065.045.23.042.306.043l1.053.005-.387-.92h-.003zm2.533-3.457c-.063-.175-.123-.248.03-.388.124-.117.163-.068.307-.003l2.498 1.113c.077.037.196.088.276.105.105.022.16.013.24-.054.068-.056.13-.135.21-.048.07.076 0 .15-.055.2-.16.15-.324.274-.475.415-.19.177-.358.362-.54.532-.053.05-.128.105-.195.033-.12-.13.243-.27.116-.406-.046-.05-.122-.086-.172-.11l-.408-.194c-.172-.087-.155-.09-.29.038l-.498.462c-.132.124-.128.106-.06.27.06.134.135.312.238.422.25.27.474-.244.633-.073.06.068 0 .146-.053.197-.118.108-.246.215-.363.324-.117.11-.23.23-.35.34-.055.052-.127.098-.19.03-.06-.064-.01-.125.032-.18.092-.12.123-.163.084-.318-.035-.137-.15-.398-.207-.542l-.28-.717-.527-1.446zm.748 1.37c.014.03.044.116.07.143.048.053.114-.036.147-.068l.33-.308c.028-.024.14-.1.1-.146-.02-.02-.11-.055-.124-.063l-.854-.413.334.858-.002-.002z"
|
86
|
+
stroke="none"
|
87
|
+
id="path3532"
|
88
|
+
style="fill:#ffffff" />
|
89
|
+
<path
|
90
|
+
d="M14.586 6.47c-.058-.087-.154-.228-.24-.28-.117-.072-.223-.044-.33.01-.08.04-.152.127-.216.032-.06-.09.033-.153.098-.198.13-.087.26-.163.388-.25.124-.084.247-.18.372-.265.064-.045.128-.07.178.003.07.103-.096.172-.164.23-.184.162-.02.35.095.517l1.378 2.035c.08.12.155.182.01.282-.108.072-.224.02-.337-.016l-3.127-.965.96 1.415c.07.103.22.325.313.395.13.1.238.063.36-.006.06-.04.176-.13.24-.034.05.073-.007.136-.067.177-.137.093-.278.164-.415.256-.137.09-.262.2-.395.29-.06.043-.13.06-.177-.01-.064-.094.05-.16.115-.21.09-.066.122-.13.092-.25-.042-.164-.205-.386-.304-.53l-.902-1.335c-.113-.167-.227-.372-.45-.24-.07.042-.164.118-.228.024-.054-.08.032-.137.092-.177l.755-.51c.172-.118.165-.1.362-.04l2.253.687-.708-1.04zm1.392-.85c-.11-.24-.17-.41-.43-.27-.07.038-.16.113-.21.005-.1-.217 1.158-.845 1.366-.94.453-.205.903-.33 1.405-.264.526.076.97.37 1.19.86.44.97-.23 1.988-1.12 2.395-.396.18-.8.34-1.196.52-.085.04-.17.1-.26.142-.062.028-.127.023-.16-.052-.036-.075.033-.112.088-.155.27-.21.216-.275.073-.592l-.748-1.647zm1.474 1.18c.144.315.25.603.643.425.312-.142.513-.46.567-.792.06-.33-.03-.716-.167-1.02-.285-.625-.934-1.14-1.63-.82-.34.153-.31.23-.166.552l.75 1.655h.002zm7.17-1.83c.023.168.04.233-.1.355-.25.23-.6.362-.93.427-.445.088-.99.09-1.41-.112-.443-.214-.8-.645-.894-1.133-.1-.503.064-1.01.406-1.39.34-.368.856-.612 1.344-.71.24-.046.537-.063.783-.042.148.014.15.035.205.172l.09.25c.022.05.04.093.05.145.012.056-.023.094-.08.105-.233.046-.368-.556-1.054-.42-.334.065-.61.315-.75.623-.137.317-.145.703-.08 1.04.066.33.214.68.448.925.252.262.6.41.964.337.2-.04.368-.146.497-.298.126-.157.185-.343.242-.534.015-.06.04-.12.106-.132.112-.02.13.096.14.173l.027.22h-.002zm.852.08c-.387-.284-.614-.77-.628-1.24-.013-.456.17-.892.487-1.218.342-.357.772-.53 1.265-.545.983-.03 1.934.576 1.964 1.632.03 1.002-.805 1.722-1.77 1.75-.43.012-.97-.123-1.318-.38zm2.203-1.212c-.02-.616-.34-1.632-1.105-1.61-.663.02-.846.87-.83 1.398.01.353.093.713.264 1.024.175.312.458.603.842.59.667-.018.844-.873.83-1.402zm4.333.782c-.048.353-.087.662-.43.87-.318.192-.698.207-1.062.156-.338-.048-.73-.16-.994-.375-.338-.275-.346-.6-.29-.996l.196-1.4c.043-.313.094-.442-.228-.544-.062-.02-.162-.04-.15-.127.01-.082.064-.09.138-.08.268.036.52.093.787.13.246.034.494.048.735.082.072.01.126.033.115.116-.013.084-.095.083-.16.085-.354.007-.344.113-.394.458l-.155 1.128c-.028.21-.093.626-.04.816.076.32.36.474.666.516.268.04.562.012.763-.184.198-.188.222-.43.26-.682l.18-1.303c.018-.112.05-.3.013-.416-.04-.116-.14-.157-.252-.188-.08-.023-.202-.008-.186-.126.015-.102.11-.088.188-.078.153.022.308.054.46.074.148.022.307.032.46.054.06.01.112.047.103.12-.016.102-.12.07-.198.07-.12 0-.195.01-.255.132-.037.09-.068.268-.08.36l-.19 1.337V4.62zm3.758-.323c.03-.098.08-.262.067-.364-.02-.135-.104-.2-.215-.25-.083-.035-.194-.038-.16-.146.03-.104.14-.07.214-.048.148.044.29.1.438.143.146.045.296.08.44.125.07.022.132.056.105.14-.036.12-.194.033-.28.017-.243-.043-.286.205-.346.398l-.72 2.347c-.042.138-.044.235-.214.183-.123-.038-.154-.16-.197-.272l-1.207-3.04-.504 1.633c-.037.12-.116.376-.113.492.003.164.1.225.23.276.066.028.208.06.175.17-.024.084-.11.08-.18.058-.16-.05-.303-.114-.46-.164-.157-.048-.323-.076-.478-.125-.068-.02-.125-.066-.102-.146.032-.11.153-.06.233-.042.108.03.183.014.254-.083.102-.137.172-.4.225-.57l.474-1.54c.06-.196.15-.41-.096-.503-.078-.028-.194-.053-.162-.163.027-.088.127-.06.197-.037l.87.268c.195.062.18.066.256.258l.88 2.19.37-1.203.002-.003zm2.016 2.81c-.132.274-.203.377.07.565.056.038.138.095.098.18-.033.07-.095.064-.154.034-.243-.116-.47-.246-.712-.36-.225-.108-.457-.197-.684-.303-.063-.03-.104-.072-.068-.143.035-.075.116-.064.178-.047.332.095.357.01.502-.295l.94-1.973c.058-.134.063-.136-.067-.198-.316-.152-.505-.086-.798.085-.065.037-.196.107-.273.072-.06-.03-.062-.087-.033-.143.015-.03.047-.062.07-.09l.41-.475c.053-.062.112-.142.2-.1.056.025.07.062.062.116-.02.15.022.144.154.206l1.68.8c.145.068.256.14.403.042.045-.03.102-.062.154-.036.107.052.047.133 0 .208l-.346.57c-.043.07-.094.19-.192.142-.08-.036-.087-.13-.077-.208.025-.4.003-.515-.385-.7-.12-.06-.133-.046-.19.076l-.94 1.978v-.002zm4.35.373c.06-.025.162-.07.2-.13.064-.096.007-.203-.082-.283-.09-.08-.195-.126-.145-.204.05-.073.142-.042.197-.004.127.086.243.19.383.283.152.104.328.198.486.304.06.04.12.12.066.195-.04.066-.09.027-.143-.003-.09-.048-.188-.074-.29-.07-.175.005-.428.11-.58.174l-1.058.404-.476.7c-.17.252-.258.343-.016.57.05.045.12.113.068.19-.044.065-.104.05-.158.012-.224-.15-.427-.312-.647-.463-.206-.14-.423-.263-.63-.402-.062-.04-.092-.085-.047-.15.047-.07.123-.048.183-.022.315.144.35.063.54-.216l.386-.57-.022-1.593c-.002-.1 0-.23-.026-.33-.02-.082-.032-.13-.1-.18-.066-.05-.156-.093-.092-.187.056-.082.144-.02.206.02.188.128.355.266.545.395.232.156.467.29.694.445.062.043.16.11.102.2-.06.09-.17 0-.23-.044-.05-.032-.164-.066-.207-.002-.044.065-.037.23-.038.307l.014 1.053.91-.402.003.002zm1.102 3.86c-.043-.48.173-.97.52-1.292.333-.31.78-.46 1.234-.436.494.02.91.23 1.244.59.67.72.845 1.833.07 2.553-.734.686-1.826.533-2.484-.175-.295-.314-.55-.807-.584-1.24zm2.366.855c.45-.42 1.002-1.332.48-1.892-.453-.486-1.213-.062-1.6.3-.258.24-.475.54-.596.873-.117.336-.15.742.11 1.023.46.487 1.218.054 1.606-.306zm1.978 1.735c-.13.086-.206.127-.105.277.062.09.188.28.262.35.104.105.23.092.367.052.066-.023.172-.05.227.027.05.07.01.12-.053.16-.125.074-.254.162-.38.233-.12.082-.245.178-.356.27-.06.037-.134.063-.18-.01-.143-.207.372-.335.063-.79l-.133-.178c-.105-.136-.16-.087-.274-.008l-.55.37c-.254.173-.368.225-.23.525.03.06.072.15-.006.2-.064.045-.112.01-.15-.046-.152-.223-.28-.45-.43-.673-.142-.205-.297-.4-.437-.605-.04-.06-.053-.115.013-.158.068-.047.135.003.178.05.238.25.304.187.582 0l1.527-1.033c.258-.174.387-.236.242-.54-.027-.062-.084-.145-.012-.193.066-.044.113-.013.154.047.268.395.522.81.79 1.205.186.274.395.546.58.82.073.113.09.146-.03.227l-.41.28c-.057.036-.133.054-.176-.01-.053-.08.02-.198.053-.277.062-.136.104-.214.083-.37-.022-.164-.134-.315-.228-.453-.035-.05-.117-.194-.188-.22-.06-.024-.132.025-.18.057l-.61.412zm3.147 4.797c-.076.03-.18.084-.222-.02-.032-.083.02-.14.076-.184.23-.2.426-.45.295-.767-.103-.25-.375-.478-.653-.362-.254.104-.252.378-.233.612l.02.278c.045.542-.044 1.022-.6 1.25-.3.125-.64.08-.927-.066-.307-.165-.517-.442-.646-.763-.097-.23-.19-.626-.176-.874.014-.183.08-.195.238-.26l.265-.11c.075-.03.25-.124.3-.01.046.116-.088.2-.16.256-.134.106-.25.193-.314.355-.075.19-.04.394.03.57.125.3.434.584.775.443.39-.16.33-.625.328-.97.002-.445.023-.998.505-1.195.632-.26 1.254.295 1.48.845.067.168.145.494.132.675-.01.11-.094.128-.186.165l-.323.135h-.003zm1.063 1.918c.185.03.274.01.326.21.043.166-.02.176-.144.272l-2.177 1.66c-.065.05-.17.128-.224.19-.07.082-.09.135-.065.237.02.087.058.178-.062.208-.1.025-.13-.073-.146-.144-.055-.21-.085-.417-.14-.617-.06-.25-.145-.485-.206-.727-.017-.07-.03-.163.065-.186.17-.045.12.343.3.296.065-.016.134-.065.18-.098l.364-.266c.157-.11.15-.094.103-.274l-.162-.656c-.044-.177-.03-.165-.206-.184-.146-.01-.34-.03-.485.007-.355.09-.013.533-.237.59-.092.024-.13-.067-.146-.14-.04-.154-.07-.317-.11-.473-.04-.156-.093-.313-.132-.47-.02-.074-.024-.16.064-.182.084-.022.114.05.142.113.063.14.087.19.24.23.138.035.423.058.575.078l.766.098 1.52.23h-.003zm-1.56 0c-.034-.003-.124-.017-.156-.01-.07.02-.022.12-.013.165l.113.437c.008.036.02.17.082.156.025-.007.102-.068.114-.078l.77-.55-.91-.12z"
|
91
|
+
stroke="none"
|
92
|
+
id="path3534"
|
93
|
+
style="fill:#ffffff" />
|
94
|
+
<path
|
95
|
+
d="M52.107 26.007c.104-.01.272-.027.363-.078.115-.07.143-.178.146-.298 0-.09-.04-.194.073-.206.103-.01.117.103.123.18.018.155.02.305.037.46.018.15.042.302.06.452.008.076 0 .144-.09.153-.123.014-.105-.165-.123-.25-.057-.24-.3-.184-.502-.163l-2.443.25c-.145.015-.232.05-.25-.125-.016-.13.086-.207.172-.29l2.333-2.294-1.7.173c-.125.013-.392.04-.496.088-.145.067-.17.178-.164.32.004.07.028.214-.086.227-.087.008-.118-.072-.124-.144-.018-.164-.013-.32-.03-.485-.017-.166-.054-.33-.07-.49-.007-.07.015-.14.097-.148.11-.013.115.117.13.2.02.112.06.17.177.2.166.04.438.002.613-.015l1.604-.164c.2-.02.436-.023.424-.282 0-.083-.023-.2.09-.213.094-.01.104.094.11.166l.094.907c.02.206.01.192-.14.337l-1.674 1.66 1.247-.128zm-.543 3.987c-.153-.016-.24-.033-.258.146-.014.107-.033.336-.02.436.01.146.118.22.248.273.065.024.164.07.155.164-.01.084-.073.1-.147.092-.145-.025-.3-.04-.44-.064-.145-.014-.303-.018-.445-.02-.067-.007-.143-.036-.135-.124.022-.247.502-.02.555-.564l.012-.226c.006-.17-.068-.166-.207-.18l-.66-.062c-.304-.03-.426-.062-.51.257-.017.065-.04.163-.134.153-.077-.008-.093-.065-.086-.135.026-.267.07-.52.098-.79.023-.25.027-.5.052-.746.006-.07.032-.12.108-.112.084.008.103.09.104.15.023.348.115.34.45.372l1.835.176c.31.03.446.063.53-.26.02-.064.026-.164.113-.156.082.01.1.062.092.136-.046.475-.113.958-.16 1.432-.03.33-.044.675-.074 1.005-.015.132-.02.17-.167.152l-.494-.05c-.067-.007-.14-.04-.13-.116.01-.1.14-.145.215-.184.137-.062.22-.098.3-.23.087-.145.1-.327.114-.493.005-.062.03-.227-.003-.293-.03-.054-.12-.062-.178-.066l-.737-.076v.002zm-2.34 4.422c-.216.05-.33.048-.43.258-.03.057-.06.096-.13.08-.087-.022-.075-.11-.06-.175.036-.144.08-.276.11-.418.037-.14.063-.278.098-.42.027-.114.092-.11.203-.132l1.033-.23c.113-.026.34-.078.432-.14.058-.033.078-.098.094-.16.02-.096-.05-.085-.15-.11l-.67-.165c-.294-.074-.41-.125-.538.18-.026.063-.065.154-.155.135-.074-.02-.08-.08-.062-.146.062-.262.146-.51.213-.77.06-.24.103-.488.16-.728.017-.07.05-.115.126-.1.08.022.086.104.08.166-.026.346.062.354.39.434l1.79.445c.298.074.432.14.56-.154.023-.062.044-.16.13-.138.078.02.09.08.072.156-.06.23-.137.457-.193.688-.098.394-.172.777-.268 1.165-.055.22-.14.446-.312.594-.192.15-.44.203-.688.144-.48-.12-.596-.597-.527-1.04-.1.28-.313.352-.572.414l-.735.17v-.002zm1.794-1.3c-.125-.03-.22-.085-.252.05-.037.15-.052.318.014.47.07.183.246.31.435.356.32.08.68-.045.767-.396.02-.074.02-.22-.043-.25-.057-.025-.18-.045-.24-.06l-.683-.17zm-.393 4.45c.124.142.205.186.113.37-.072.154-.127.124-.284.115l-2.73-.13c-.085-.005-.215-.01-.294.003-.104.02-.156.045-.205.14-.04.078-.072.172-.18.12-.093-.047-.054-.142-.02-.206.096-.197.204-.373.294-.562.11-.23.2-.467.31-.69.03-.063.08-.145.17-.103.157.077-.13.342.037.422.062.03.146.036.2.04l.447.032c.195.017.18.025.26-.143l.295-.61c.076-.16.08-.145-.04-.27-.106-.105-.24-.24-.377-.308-.332-.16-.354.396-.562.298-.083-.04-.056-.138-.022-.2.07-.147.15-.29.222-.438.067-.145.13-.297.2-.44.034-.07.085-.14.17-.1.077.038.054.112.034.18-.042.146-.055.196.036.327.08.112.284.313.392.43l.52.567 1.01 1.16.003-.004zm-1.193-1.004c-.02-.023-.084-.092-.115-.107-.063-.032-.094.074-.112.117l-.194.406c-.015.03-.093.144-.035.172.023.01.12.012.137.014l.948.076-.626-.678h-.002zm-2.307 5.674c.084.06.225.158.324.18.133.023.223-.038.304-.126.06-.067.097-.173.19-.106.088.062.02.155-.022.22-.09.126-.185.24-.274.37-.087.12-.17.254-.257.377-.044.065-.096.11-.167.06-.102-.07.03-.19.07-.27.116-.216-.103-.333-.27-.45l-2.004-1.42c-.12-.086-.21-.117-.106-.262.075-.104.202-.1.32-.104l3.267-.194-1.394-.986c-.104-.073-.32-.23-.433-.264-.153-.047-.243.023-.334.135-.047.055-.12.18-.216.11-.07-.05-.04-.13.002-.187.097-.135.2-.25.297-.387.1-.134.177-.28.27-.41.042-.062.103-.102.17-.053.094.065.01.165-.033.235-.06.097-.066.17.002.27.1.14.327.288.473.393l1.314.932c.162.117.34.27.503.066.052-.064.112-.167.204-.103.076.055.018.14-.023.197l-.527.744c-.118.17-.117.15-.323.16l-2.355.15 1.024.73v-.004zm-4.348 1.832c-.115-.127-.17-.17-.125-.352.076-.33.285-.64.518-.882.316-.33.762-.644 1.223-.717.484-.08 1.022.07 1.38.416.37.354.528.862.466 1.368-.067.5-.35.996-.697 1.356-.168.177-.4.36-.615.485-.128.07-.143.058-.267-.023l-.22-.15c-.043-.03-.084-.054-.12-.09-.04-.04-.034-.092.006-.132.165-.174.62.24 1.104-.263.237-.245.317-.603.26-.937-.067-.344-.284-.666-.53-.9-.24-.233-.562-.436-.895-.503-.357-.07-.726.01-.982.276-.14.146-.22.33-.236.527-.014.2.046.39.107.576.02.06.035.12-.012.17-.078.08-.162-.005-.215-.062l-.15-.16zm-1.125 1.135c-.193-.236-.258-.346-.543-.178-.063.033-.148.084-.204.014-.052-.063-.02-.113.03-.157.21-.17.422-.32.63-.49.19-.157.372-.33.563-.49.057-.046.107-.063.16-.003.05.064.01.136-.035.184-.23.26-.156.317.055.58l1.17 1.42c.202.244.265.367.556.2.055-.032.14-.094.193-.025.05.06.02.107-.033.153-.21.172-.424.32-.63.49-.192.157-.372.33-.563.485-.056.046-.108.07-.162.007-.053-.064.007-.125.048-.172.235-.27.15-.334-.07-.6L41.652 45.2v.003zm-1.292 3.245c-.046-.07-.118-.16-.022-.222.072-.05.14-.006.194.04.24.186.522.33.807.138.224-.147.395-.46.23-.71-.154-.23-.423-.177-.648-.112l-.27.072c-.522.147-1.01.154-1.343-.346-.183-.27-.2-.613-.113-.92.1-.334.333-.595.622-.787.206-.136.577-.31.82-.34.186-.02.21.04.306.186l.156.238c.047.066.174.22.068.29-.104.066-.21-.05-.28-.106-.132-.11-.238-.208-.41-.243-.198-.036-.394.036-.554.144-.27.182-.487.536-.28.85.23.35.676.2 1.016.132.436-.083.982-.167 1.27.267.38.566-.045 1.285-.543 1.614-.15.102-.46.24-.638.262-.11.012-.144-.065-.198-.147l-.196-.3.002-.002zm-4.445-.074c-.065-.157-.1-.216.005-.37.186-.285.49-.5.79-.646.412-.198.937-.338 1.396-.248.482.095.937.423 1.152.87.225.462.193.993-.042 1.446-.235.44-.674.81-1.12 1.026-.22.104-.504.196-.748.24-.145.02-.152.003-.238-.114l-.15-.22c-.033-.044-.063-.08-.086-.126-.023-.053 0-.1.05-.123.218-.106.498.44 1.128.14.31-.15.51-.46.565-.794.06-.346-.03-.72-.18-1.027-.147-.305-.382-.605-.67-.784-.31-.188-.683-.244-1.02-.082-.18.088-.317.233-.4.414-.085.185-.096.378-.103.577.002.062-.01.125-.068.153-.103.05-.15-.06-.18-.132l-.08-.204v.002zm-.82.13c.446.178.79.588.923 1.04.13.438.062.906-.162 1.302-.238.434-.61.71-1.084.85-.943.277-2.018-.064-2.314-1.077-.285-.968.34-1.875 1.27-2.148.41-.125.96-.13 1.368.03v.002zm-1.824 1.73c.176.592.744 1.492 1.48 1.275.638-.19.597-1.06.448-1.564-.102-.338-.273-.664-.516-.924-.247-.256-.598-.467-.966-.356-.638.188-.592 1.062-.443 1.567h-.002z"
|
96
|
+
stroke="none"
|
97
|
+
id="path3536"
|
98
|
+
style="fill:#ffffff" />
|
99
|
+
</g>
|
100
|
+
</svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg class="seal-svg" width="55" height="55" viewBox="0 0 55 55" xmlns="http://www.w3.org/2000/svg"><title>City Seal of the City and County of San Francisco</title><g stroke-width="0" stroke="#000" fill-rule="evenodd"><path d="M28.217 51.22c.028.372-.173.806-.576.892-.372.03-.804-.172-.89-.547-.03-.4.173-.807.547-.92.403-.03.806.17.92.574z" stroke="none"></path><path d="M52.395 16.046c4.2 8.434 2.936 20.35-2.908 27.63-6.85 8.78-17.182 12.522-28.12 10.307C11.582 52.11 2.255 42.67.645 32.827c-2.016-11.485 2.532-22.364 12.49-28.58 7.77-5.296 20.206-5.21 28.12-.345 4.75 2.59 8.922 7.425 11.14 12.144zM37.657 2.778c-8.75-3.8-20.147-2.043-27.285 4.087-8.49 7.08-11.715 18.162-8.405 28.726 2.792 9.614 12.808 17.615 22.71 18.394 10.763.922 20.29-3.855 25.99-13.01 4.862-7.6 4.862-19.716-.146-27.286-2.82-4.835-7.854-9.01-12.862-10.91z" stroke="none"></path><path d="M45.14 16.557c3.6 5.498 4.116 14.218.895 20.032-4.175 7.8-12.29 12.29-21.155 11.194-6.994-.69-14.074-5.93-16.636-12.635-2.648-6.48-1.67-14.795 2.62-20.178 5.525-7.137 14.65-10.015 23.225-7.11 4.313 1.355 8.514 4.578 11.05 8.694zm-6.36-5.955c-5.73-4.06-14.91-4.46-21.012-.95-7.425 4.144-11.484 12.002-10.274 20.494.547-.29 1.15-.088 1.583.144.92-.49 1.266 1.582 2.273 1.036.662.69 1.324-.49 2.015.2.288-.575.26-1.322.547-1.93.518-.92-.375-1.667-.202-2.56-.374.402-.835.604-1.324.69-.317-.058-.432-.288-.633-.547-.086-.664-.086-1.27 0-1.874.92-.892 1.353-2.676 2.993-2.62.806-.084.777-.832.69-1.524-.546-.374-.46-1.065-1.18-1.295 0-1.007 1.383-.374 1.526-1.237.633.173.52-.718 1.037-.69.17.086.113.26.113.403-.086.23-.316.402-.547.402 0 .087 0 .173.086.23l.69-.49c.087.06.087.174.116.26v-.114c.057-.056.085-.085.143-.085.26 0 .088.605.145.288l.058-.49c.028-.662-.778-.43-1.238-.546-.374.172-.2.634-.547.748-.115-.058-.058-.23-.058-.346.145-.836 1.18-.605 1.785-.548.69.29.375 1.095.547 1.67.49-.027.834.23 1.18.548.403 1.037-1.065.66-1.324 1.238-1.18 1.438 1.007 1.784 1.612 2.618-.288 1.41 1.382 2.505.46 3.656-.086 1.583-.892 2.82-.892 4.434-.374.604-.777.98-.403 1.728.403.633 1.324.23 1.87.347-.143-.863-1.207-.06-1.812-.404V33.4c.576-.2 1.094-.2 1.67-.2l-.086-.2c-.634-.29-1.124.344-1.728-.09.43-.345 1.12-.144 1.67-.26-.174-.4-.95-.085-1.24-.285.173-.402.777-.087 1.094-.26v-.145c-.288-.26-.633.2-.892-.146.086-.373.547-.146.834-.2-.03-.433-.634-.03-.835-.347.087-.115.2-.172.347-.145.058.085-.2-.2 0-.288.202-.06.433.146.346.23l-.202-1.813c0-.085.117-.2.203-.2.518 2.908 1.122 5.76 2.13 8.435.173.404.49.95.98 1.037-1.93-4.402-2.908-9.41-2.36-14.59 2.877-.52 5.957-.72 8.98-.606 1.812.087 3.597.288 5.18.892.433 3.8-.346 7.454-1.294 10.85-.35 1.21-.98 2.448-1.24 3.516l.69-.404c1.785-4.433 2.85-9.41 2.273-14.593-4.72-1.064-10.39-1.208-15.138-.114-.086.346-.086.75-.2 1.094-.605-.345 0-.98 0-1.438 4.892-1.095 10.79-1.01 15.598.2.575 2.705.173 5.727-.2 8.434h.632c.174-.487-.432.26-.545-.286l.113-.146c.146.026.316-.06.432.086.03-.287-.026-.546-.285-.688l.775-3.396c-.088-1.525-.775-3.05-.23-4.547.23-.662 1.123-.835 1.18-1.526-1.12-1.64-.484 1.067-1.437 1.24-.114-.115-.228-.203-.286-.347l-.403.287c-.747-.69.634-1.353.75-1.87-.317-.95 1.295-.806.774-1.727.69-.49 1.557-.75 2.42-.634.058.517.346.287.746.345.232.116.663.23.49.634-.288.143-.46.487-.834.4.113.75.087 1.297.288 2.017-.115.26-.402.373-.634.4-.2.865.948 1.096.748 1.873.72-.43.114-1.037.288-1.583-.174-.057-.402.173-.633 0v-.2c0-.23.23-.117.345-.145.028-.202.174-.375.23-.548.288-.402-.116-.517-.145-.835-.06-.23.027-.546.346-.43.487-.203.46-.72.545-1.154.2-.287.55-.114.69.116.114 1.036.66 1.985 1.036 2.85l.49-.144c.257.143.23.402.345.632-.402.26-.864.634-1.383.403.26-.114.604-.402.95-.487 0-.06.028-.145-.058-.203-.06-.028-.087.03-.145.058-.75.605-.923-.46-1.44-.546 1.497.634-.23 1.9.145 2.764-2.304 1.21-1.064 4-1.61 6.016l-.26.347c.228 1.613.95 3.226.603 4.837l1.383-.06v-.144c-.403-.175-1.007.057-1.383-.203.49-.258 1.123-.115 1.67-.145h-.2c-.202-.633-.923-.66-1.24-1.123.52-.085.663-.72.692-1.237.085-.26.345-.314.4-.546-.06-.147.088-.26.2-.2.147.056.06.227.09.343h.603c.2-1.15.143.49.834.147-.03.2-.29.46 0 .604l-.06-.347c.146-.432.547-.286.69-.69-.145.49.52.262.462.69.573.087.345 1.152.487 1.584-.52-.03-.375.547-.69.776h1.73v-.144c-.402-.146-.923 0-1.297-.146.314-.403 1.036-.086 1.497-.26 2.13-4.836 1.754-11.542-.688-16.12-1.47-2.935-3.974-5.843-6.824-7.8l.004-.004zm-1.123 11.135c.086.432.66.605.92.893v-.26c-.374-.057-.634-.345-.92-.633zM21.08 24.3c-.347 2.186-.203 4.69.143 6.85.374.06.115-.575.547-.433.144.06.057.2.086.288-.058.028-.086.086-.145.058.635.06.52.662.635 1.035.662.115.662.836.892 1.325-.345.26-1.093.085-1.324.144.518.06 1.324-.06 1.526.604.287.03.632-.372.833.088-.086.26-.374.028-.49.2-.72-.114-1.15-.486-1.784-.143-.058.2.086.314.115.486.374-.142.892 0 1.382-.142.085.087.2.143.144.287-.345.113-1.064.2-1.44.06.146.892.607 1.667.895 2.476.375-.085.864.26.893-.2.26-.115.604-.35.834-.146l-.344.434c-.403.115-.835.316-1.238.146-.057 1.21 1.123.027 1.785.402-.432.173-.893.547-1.525.4.748.147 1.496.288 2.215.436l.087-.49h-.23c-.26.117-.432-.2-.346-.346 1.036-.375 2.015-1.266 2.763-1.783-.116 1.123-.26 2.247-.404 3.366-.173-.145-.288-.345-.49-.4.058.06.173.114.144.2-.086.115-.23.06-.345.06v.23c.806.26 1.755.4 2.62.344v-.144c-.577-.114-1.237-.027-1.728-.346 0-.087 0-.173.086-.203.75.436 1.957-.372 1.987.69 2.877-.92 2.935-4.2 3.74-6.56-.287-.026-.604.06-.834-.084-.145-.433-.777-.027-1.037-.347.23-.404.346-.894.75-1.18.085-.404-.176-.95.23-1.24.63-.057.284.66.46.98.345 0 .747.03.92-.2l-.92-.23c.285-.403 1.267.287 1.035-.46l-.75-.146c-.286-.2-.808-.087-.894-.433-.47.458-1.103.48-1.73.386-.563-.082-1.13-.258-1.575-.3-.088.462.632.49.747.837-.116.228-.402.085-.635.114.174.313.347.604.488.922.69.46.662-.55 1.037-.69.146.2.52.083.487.4-.03.346-.4.145-.633.2.23.347-.316.863.086 1.036l-1.036.145c.028.06.174.116.145.204.23.085.49-.173.604.085-.115.144-.26.23-.49.202-1.035-.434-2.59.573-3.106-.55-.69-.143-1.382.263-1.987-.085-.027-.086.088-.146.145-.2-.288-.548-.92-.69-1.267-1.095.146-.23.23.086.433 0 .806-.95 1.296-2.104 1.986-3.052l.143.146c-.057.633.46 1.15.893 1.438.172-.402.518-.086.834-.26l-.06-.088c.46-.2.636-.63 1.24-.486v-.202c.056-.172.372-.114.345-.144 1.007-1.698 3.367-.434 4.98-1.094.085-1.153.085-2.448 0-3.6-4.257-1.09-9.15-.86-13.553-.197l-.002-.003zm4.287-.202h1.583-1.583zm2.964 0h1.815-1.813zm-5.783.547h1.583-1.584zm2.965 0h1.44-1.44zm2.82 0h1.73-1.73zm3.11.057h1.81-1.81zm-10.13.49h.2-.2zm1.438 0h1.583-1.582zm2.907 0h1.38-1.38zm2.676.086h1.613-1.612zm2.908 0h1.813-1.812zm-10.014.547h.547-.547zm1.726 0h1.583-1.584.002zm2.762 0h1.324-1.324zm2.56 0h1.524-1.523zm2.824 0h1.61-1.61zm2.76 0h.49-.49zm-12.633.547h.834-.835zm2.014 0h1.44-1.44zm2.62 0h1.235-1.237zm2.415 0h1.383-1.383zm2.622 0h1.523-1.523zm2.705 0h.748-.748zm-12.377.547h1.122-1.122zm2.216 0h1.38-1.38zm2.475.083h1.18-1.18zm2.303 0h1.295-1.295zm2.474 0h1.44-1.44zm2.62 0h1.038-1.037zm-12 .547h1.38-1.38zm2.417 0h1.294-1.295zm2.33 0h1.036-1.036zm2.072 0h1.325-1.325zm2.42 0h1.322-1.323.002zm2.416 0h1.18-1.18zm-11.312.55h1.295-1.295zm2.274 0h1.238-1.238zm2.216 0h1.037-1.036zm1.986 0h1.237-1.238zm2.274 0h.346-.346zM22 28.645h1.294H22zm2.13 0h1.237-1.238zm2.62 0h.43-.43zm1.323 0h1.18-1.18zm-5.613.632h1.122-1.122zm1.957.06h.892-.894zm3.57 0h.576-.577zm-6.62.546h.49-.49zm1.525 0h1.036-1.036zm1.784 0h.288-.288zm-2.677.69h.344H22zm1.236 0h1.036-1.036zm-.777.634h.43-.43zm1.266 0h.604-.603zm7.168 0h.776-.775zm-1.64.288l.345.69-.347-.69zm10.474-8.923c0 .26.26.374.487.346v-.202c-.143-.086-.285-.173-.488-.144zm-3.37 8.78l.49 2.82c-.175 1.812-.69 3.453-.49 5.383h.95v-.117c-.145-.23-.635-.485-.547-.774l.69.435c.175-.638-.86-.953-.546-1.473l.488.49c.26-.52-.518-.95-.29-1.385l.436.49c.113-.52-.522-.774-.436-1.18.29-.03.262.314.49.402.258-.52-.432-.922-.347-1.383l.49.49c.46-.66-.605-.95-.347-1.524.174.115.23.402.488.574.46-.688-.604-1.18-.488-1.81.29.228.547.662.748.894.52-.722-.66-1.123-.748-1.785l.058-.06.894.892c.145-.086.06-.287.088-.433-.342-.806-1.177-1.583-2.07-.95v.002zm2.33-12.723c-.546 0-1.32.142-1.64.632.49-.317 1.324-.23 1.87-.634h-.23zm.982.286c.087.143.373.288.546.143-.144-.144-.345-.17-.546-.144zm-1.035.202v.144h.2c.086.028.172-.058.144-.145h-.344zm-.635.2c.06.145.2.058.287.086.087-.058.058-.143.058-.23-.145-.03-.287.087-.346.144zm1.61-.057l-.286-.086-.057.087h.343zm1.642 0v.144c.088 0 .174 0 .202-.086-.028-.086-.114-.057-.202-.057zm-3.712.346h.26v-.144c-.088-.172-.406.03-.26.144zm1.15.058c-.46.346-.347.777-.26 1.238.2.403.634.748 1.095.49v-.145l-.49-.058c.145-.23.115-.52.49-.49-.028-.116.057-.26-.057-.346-.2 0-.435.317-.55 0 .03-.028.086-.06.06-.144h-.146c-.23-.403.435-.346.546-.547-.255-.058-.428-.173-.69 0h.002zm-1.784.2h.402v-.056c-.17-.346-.2.086-.402.057zm4.49-.2l-.29.288.49.058c.004-.145-.028-.318-.2-.346zm-4.43.49c-.23-.06-.577.027-.462.344h.46v-.345h.002zm3.798.402c.287 0 .604.057.836-.058-.032-.288-.894-.375-.836.058zM38 20.7l-.115-.144.115.23V20.7zm3.943.086c-.114.2.26.403-.06.546-.374-.114-1.12.26-1.12-.345-.115.403-.316.776-.35 1.236.117-.346.578-.172.777-.49-.2-.028-.375.29-.547.088.06-.115.06-.26.2-.345.577.03 1.67-.172 1.585.547l-.485-1.237zm-.748.26c.145-.03.373.056.402-.06-.116-.113-.346-.113-.403.06zm-3.396.085l-.058.203c.144.374.634.892 1.036.69-.344-.23-.577-.834-.98-.892zm-1.785.06l-.49.633c.374 0 .432-.518.49-.633zm.26.06c0 .2-.23.43-.062.574.12-.145.06-.52.06-.576h.002zm1.12.774c-1.237.778-.834 2.39-.633 3.597l-.145.204c.26.46.52 1.324.23 1.87.345.26-.116.575-.087.807.087.864-.49 1.44-.403 2.304h.836c-.23-.058-.52.114-.635-.145l.203-.347.088.058c-.086-.2.146-.546.06-.893.374.027-.175-.373.198-.4-.172-.147 0-.434.146-.434l-.057-.06.115-.144c-.06 0-.145.026-.203-.06.088-.058.117-.174.203-.145l-.203-.287.203-.202c-.027-.06-.145-.115-.115-.203.058-.172-.174-.575.058-.546-.025-.23-.312-.72-.057-.98l-.23-.2c.26-.72-.43-1.123-.2-1.728.633.805.72 1.957 1.322 2.82v-.143c.03-.03.06-.087.146-.057-.145-.173-.145-.316 0-.49l.347.29.06-.635c.315-.115.344.317.4.432.175-.346-.17-.633.145-.92.09.172.403.2.29.49h.2c-.028-.23.06-.49-.058-.692.115-.116-.03-.547.347-.402l.057.402c.115-.346-.085-.575.29-.835l.258.49c.287-.318-.258-.72.2-.95.06.288.147.2.347.26-.228-.117-.173-.46-.46-.403-.72.72-1.496 1.84-2.504 2.072l-.06-.49h.06l-.06-.346h.203c-.314-.26-.488.116-.747-.146.202-.143.03-.517.402-.4l-.142-.142c-.028-.086.087-.144.144-.202-.112.116-.604-.23-.978-.2.23-.318.662-.29.834-.29l-.144-.144c-.028-.085.115-.144.144-.2-.114-.318-1.063.057-.548-.49.175-.46.723.058.635 0-.173-.257-.403-.46-.49-.747h-.008zm4.06.144c-.23-.26-.433.2-.547.344l-.202-.23c-.088.52-.144 1.295.546 1.47.348-.347.548-.75.548-1.24-.058-.143-.2-.373-.346-.345zm-2.476.258l-.147.49c.115.028.146-.086.2-.145.004-.113.064-.314-.054-.344zm.2.778h-.2c-.29.057-.06.402.057.46l.144-.46zm.2.69c-.083.23-.372.604-.055.748l.2-.2c.03-.23 0-.404-.143-.548zm.348 3.858v-1.18l-.116 1.18h.115zm-.807-.288c-.23.258-.72.085-.633.575l.347-.346.143.115c-.027.144.06.345-.086.43l-.115-.14v.2h.113c.316.23-.257.315 0 .547l.233-1.382zm.605.776v.2c.057-.058.173-.113.145-.2h-.145zm-1.295.403h.057v-.258h-.058v.258zm1.15 1.326l.146-1.18-.258 1.18h.113zm-1.44-.088v.288l.06-.057c0-.088.03-.174-.06-.23zm1.44.23h-.112c.172.316-.4.488.06.604l.053-.604zM38 31.206l.346.288v-.144c-.086-.116-.202-.172-.346-.143zm1.268.346l.347.346-.347-.347v.002zm.257.89c-.174.404.287.548.433.836-.116-.202-.028-.778-.433-.837v.002zm-.056.693l-.088.144c.06-.028.088-.087.145-.058.06.114.23.286.146.402-.058.03-.088-.03-.146-.06l.09.347-.232.06c-.978 1.295-.4 3.367-.746 4.98.285-.03.634.055.892-.09.115-.2-.633-.52-.2-.805.086.06.23.144.287.2l-.434-.835c.375-.315.145.317.488.29.088-.434-.433-.836-.346-1.268.172.113.287.373.4.574.26-.547-.575-1.008-.347-1.47l.49.55c.26-.463-.603-.808-.26-1.238l.403.49c.23-.49-.402-.722-.287-1.096.287-.086.2.26.433.346.057-.6-.317-1.032-.69-1.462zm-.893 1.18c-.03.517-.576 1.266-.087 1.52.03-.514.26-1.088.088-1.52zm-6.1.892c0 .23.402.146.433.086-.176.06-.262-.144-.433-.086zm-9.184 1.237h.288-.287zm11.197-8.002c-.346-.03-.69.03-.978.145l.98-.086v-.06l-.002.002zm-3.394.346c.432-.03.72.058 1.035-.06-.343 0-.833-.373-1.033.06zm2.504.144c.115.52.487.06.834.2v-.144c-.204-.23-.606-.142-.834-.056zm-1.47.343c.347.117.49-.287.836-.145-.345-.17-.548-.142-.835.145zm-6.072.405l-.2.49h.2c.172-.147 0-.318 0-.49zm.345.086v.403c.086-.028.23.06.288-.058l-.286-.345zm1.324 1.727h.75c.113 0 .23-.116.2-.23h-.2c-.834-.374.518-.432.434-.893-.404.375-1.384.346-1.182 1.123zm-3.194.547l.144.146c.49.113 1.123.113 1.238-.434-1.18 0 .202-.863-.058-1.295-.72.172-.95 1.007-1.324 1.582zm2.014-1.583c0 .23.2.603.403.747.057-.26-.145-.634.23-.748h-.633zm-.49.345l-.257.46c.057.028.143 0 .2.087l.144-.146c-.028-.145.058-.316-.086-.402zm.633.547l-.288-.548v.547h.288zm-5.324.055c-.086.402.058.835.547.69-.03-.114.03-.23.086-.347-.03-.312-.376-.37-.635-.342zm5.527.287h-.288l.288.402v-.402zm1.584.146c.058.202.314.348.488.115-.145-.06-.288-.172-.488-.114v-.002zm-1.872.348l-.202-.29v.29h.202zm1.266 0h.348v-.23c-.144-.204-.317.112-.346.23zm4.953-.088c-.288.172-.52.46-.605.834.2-.026.46.06.605-.06h-.26c-.146.06-.26-.084-.2-.228.172-.115.46-.027.687-.06-.402-.4.346-.374.547-.546-.315-.085-.458.148-.775.06zm-3.713.143l-.202.2c.113.2.373-.083.402 0l-.2-.2zm-1.383.2l.058.433.29-.286c-.118-.06-.204-.2-.348-.147zm5.67.348h.403v-.146c-.144-.142-.374.002-.404.146zm.26.346l-.347-.145v.145h.346zm-6.563 4.288l-1.094.69.057.057c.663.433.778-.43 1.037-.747zm-2.56 1.094h.23c.085.028.2 0 .2-.115-.115.144-.374-.03-.43.116zm3.452.343l.087.09c.258-.09.862.17 1.036-.2-.347.11-.808.142-1.125.11zm-5.18-7.02c.057.23.46.144.633.06-.175-.118-.405-.06-.635-.06zm.345.805c.46.114 1.18.114 1.47 0-.46-.085-1.008-.085-1.468 0zm8.637 0c-.26-.06-.777-.146-.95.086.26.09.69.09.95 0v-.085zm-.26.69c-.316-.145-.75 0-.98.147l.98-.06v-.086zm-8.03.23h1.18c-.288-.23-.92-.23-1.18 0zm2.015 0l.634.115c-.2.23-.316.027-.575.087v.26c-.346.115-.72.058-1.036.23H25.8c0-.49.575-.23.806-.49.172-.027.402.204.49-.085-.49-.144-1.067-.287-1.585-.116h.002zm7.197.06c-.347-.173-.778.058-1.037.058.346.026.72-.06 1.037.086v-.146zm-5.47.345c.06.316.52.03.547.403.345.06.835.116 1.124-.2l-.087-.06c-.634.635-.865-.374-1.584-.142zm2.073 0l.06.147c.375.26.98.112 1.27-.09-.41.087-.984.173-1.33-.056zm1.585.49l.69.058c.113-.026.4-.23.287-.346-.26.26-.776 0-.977.287zm1.667-.087c.026.145.172.06.26.086.2.03.46-.03.43-.203-.23.028-.604-.115-.69.115zm-.632.346h1.18v-.117c-.432.115-1.008-.318-1.18.115zm-5.383-.117c-.375.146-1.008 0-1.238.115.258.23.89-.174.89.345.26.146.664.06.835-.058-.288-.174-.69.2-.893-.202l.405-.2zm.547.115c.26.2.52-.028.777-.06-.258-.17-.575.06-.776.06zm1.325 0c.286.056.86.23 1.035-.116-.318.144-.81-.03-1.036.115h.002zm2.33-.116h-.807c.115.23.574.146.807.06v-.06zm-6.91.403c-.028.173.23.23.433.2.23-.114.663-.027.69-.346-.344.146-.747.32-1.122.146zm3.455.143c.375.26.95.115 1.18-.2-.287.057-.834.112-1.18.2zm1.726 0c.29.172.75-.088.98.2-.287.26-.893.087-1.093.145l1.15.2-.116.145c.49.088 1.237.404 1.644 0-.29-.172-.777.06-1.036-.2l.287-.23c-.23-.028-.55.113-.69-.115.085-.145.202-.173.345-.145-.43-.43-.978.058-1.47 0h-.002zm-2.876.144H25.8c-.663-.114-.29.49-.922.26.058-.06.173-.116.145-.2l-1.094.058c.373.4.833 0 1.092.346.374.2 1.007.26 1.324-.06l-.546-.2.344-.204h.003zm.605.2l.085.06c.547.286 1.353.114 1.785-.2-.604.055-1.296.17-1.87.14zm4.574.06c.316.145.95.286 1.152-.06-.43.115-1.037-.258-1.152.06zm-7.338.085c-.404 0-.834.23-1.238.06.317.228.864.143 1.238.058v-.12.002zm3.252.344c.92.146 2.13.605 3.05.116-.95-.23-2.07.23-3.05-.116zm-2.274.06l.144.2c.403.2.806-.03 1.238-.06-.46.147-.835-.314-1.382-.14zm7.454.06c-.574.057-1.064.057-1.727.144l.288.345c-.17.145-.43.06-.632.085v.116c.547 0 1.063.06 1.584.087.024.173.257.258.345.202.026-.147-.146-.088-.202-.203l.345-.288-.893.085c.287-.23.776-.43 1.096-.573h-.202V36.1zm-9.612.227v.26c.518-.087 1.065.518 1.38-.06l-.46-.085c.03-.03.087-.06.06-.115h-.98zm3.943 0l-.95.26.403.143c.258.058.547-.317.547-.403zm-2.42.06c.06.343.52.2.693.144l-.69-.144h-.002zm3.888.544l.807.147c-.23.23-.574.113-.894.145.548.145 1.47.315 1.87-.145-.2-.03-.46.056-.632-.06l.145-.288c-.346.06-.922.144-1.295.2zm-5.124.2c.547.118 1.036-.11 1.44-.256-.52-.027-.98.288-1.44.258zm1.784-.112l.576.4c-.173.175-.288-.085-.49 0v.202c-.115.26-.518.087-.777.145.403.29.892.06 1.267-.145.086-.575.892 0 1.15-.49l-1.726-.11v-.002zm5.61.203c.464.2 1.124.317 1.586.06-.518.084-1.122-.462-1.585-.06h-.002zm-2.357.403c.69-.086 1.238.75 1.814.29l-.633-.09c0-.2.347-.113.288-.345-.488.06-1.092.204-1.467.145zm2.85 0l.115.2-.807.09c.605.688.835-.49 1.498 0 .113 0 .23-.117.23-.203l-1.036-.087zm-2.906.835c.2.028.4-.028.547-.2-.087.172-.98-.375-.546.2zm3.512 0c-.69-.058-1.526-.23-2.218.144l.088.06c.402-.26 1.006-.085 1.523-.146.2.028.4.435.603.086l.003-.144zm-3.657.69c.03.086.23.145.344.2.576-.085 1.268-.085 1.728-.26-.66-.084-1.438.146-2.072.06zm2.966 0c-.2.06-.49-.115-.604.145h.605v-.145zm3.31.288c-.203-.025-.49.262-.262.46.315.062.662-.025.834-.198-.113-.028-.286.058-.344-.06.026-.144.172-.058.258-.085.03-.2-.314-.26-.486-.117zm1.033.26c.144.114.46.085.49-.058-.145-.202-.375.03-.49.057zm.575.547c-.49.056-1.123-.116-1.47.144l1.47-.06v-.085zm-20.262.086l-.057 1.93c2.705 1.322 5.986.46 8.778-.06.432.06.72.662 1.238.346-.776-.172-.89-1.094-1.726-.488-.173-.49.288-.866.49-1.24.632-.2.345.723.603.95l.632-.345-.345-.345c.345-.29.69.23 1.036.345-.143.433-.66.316-.833.634l.345.2c-.028.086.058.23-.057.287.288-.058.518-.172.748-.346.26-.345.173-.92-.2-1.18-3.427-1.582-7.254 1.412-10.65-.69h-.003zm-1.295.144c-.432-.058-.633.46-1.036.46.347.35.664-.345.894.087h.835v-.2c0-.404-.52-.09-.69-.29v-.056h-.002zm17.414.257c-.69.376-.75 1.21-.978 1.87l1.035-.057c2.13 1.01 5.152 1.61 7.31.26-.115-.52-.26-1.035-.2-1.642l-1.644.46c-2.043.58-3.68-.6-5.524-.89zm4.404.205c-.49.2-1.325-.172-1.786.146 1.036.086 2.247.173 3.254-.06l-1.468-.085zm-1.987 2.848c-3.627-.892-7.31-.086-10.85-.144.2.486-.52 2.015.603 2.015 2.908-.374 6.247-.72 9.126-.088 1.553.604 1.094-1.237 1.18-1.87l-.06.086zm-9.76-2.548c-2.373-41.235-.157.132-.157.228 0 .093.236.02.255.076.02.055-.098-.36-.098-.36v.055zM22 41.08l-.087.546c-.23-.115-.345-.546-.69-.4.115.4.028.978.345 1.177l.086-.633c.288.203.375.662.75.434-.146-.377.027-1.068-.405-1.124zm1.036-.26c-.316.287 0 .806 0 1.236h.116c-.173-.69.92-.373.633-1.035-.145-.373-.49-.14-.75-.2zm.46.345c-.057.06-.143.174-.26.116v-.2c.088.028.232-.06.26.086zm8.635 0c-.084.375-.373.778-.257 1.15.058-.52.75-.17.75-.46-.117-.114-.405-.114-.347-.347h.633c-.117-.315-.518-.227-.778-.343zm-12.087.346c.116.35.086.78.288 1.097.23-.174.634.06.835-.203-.144-.373-.46.117-.69-.143-.058-.315.317-.23.49-.344-.06-.29-.433-.03-.577-.203.086-.26.576-.086.576-.43-.345-.03-.662.057-.92.23v-.002zm-3.8-.43c-.287.2-.402.49-.345.836.145.26.403.517.777.4.288-.114.46-.433.49-.747-.086-.404-.518-.577-.92-.49h-.002zm.577.49c-.116.143-.087.43-.29.4-.2.058-.2-.057-.287-.2-.03-.344.432-.604.576-.2zm16.348 0c-.06.4-.434.833-.202 1.18.26-.29.374-.75.43-1.18h-.228zm-15.745-.288l-.202 1.18c.49.174.09-.517.55-.4.23.085.114.315.143.487h.288c.03-.374-.114-.575.117-.836-.03-.46-.52-.43-.893-.43v-.002zm.49.49h-.202v-.144h.203v.144zm.978-.345c-.17.086-.574.316-.43.634 0 .344.23.66.634.604.46-.028.547-.402.547-.808-.144-.287-.403-.544-.75-.43zm.405.49c-.03.17.086.4-.144.487-.143.027-.315-.057-.345-.2-.23-.403.432-.72.49-.287zm14.563-.203l-.346 1.18c.315.03.662.173.923.116-.088-.23-.434-.115-.576-.346.06-.26.46-.028.633-.202-.057-.23-.518-.058-.488-.4.145-.03.46-.03.633.06.056-.436-.548-.205-.778-.408h-.002zm3.8 0c-.316.115-.404.433-.404.748.088.347.433.604.835.49.173-.087.46-.288.347-.548.055-.487-.348-.718-.78-.69zm.49.548c0 .143.027.316-.147.402-.2.115-.344-.115-.4-.26l.2-.432c.117.116.347.09.347.29zm-1.988-.2l.057 1.18h.2v-.23c-.056-.172.09-.345.29-.26.06.147.145.26.2.403.547-.113-.2-.547.145-.893-.114-.375-.604-.144-.893-.2zm.547.256c0 .086-.03.113-.086.144-.057 0-.143.03-.2-.058.03-.027.202-.257.29-.086h-.003zm-1.812-.257v1.094c.373.088.06-.346.347-.402.345-.058.23.315.345.49.49-.115-.085-.634.288-.92-.09-.493-.637-.175-.98-.26zm.63.343c-.058.115-.172.027-.287.058v-.143c.116.03.233-.056.287.086zM28.62 43.7c-.115.23.2.863-.2 1.12-.492-.145-.175-.72-.347-1.035h-.145c-.115.23-.057.547-.057.835.06.114.117.373.348.345.202.06.547.06.69-.23 0-.462 0-.805-.287-1.037zm.634 0c-.117.374-.117.98 0 1.266.258-.027.573.06.805-.087-.117-.2-.49-.115-.69-.347.145-.26.46-.027.633-.2-.086-.29-.52.027-.546-.29.113-.228.4-.085.604-.112v-.145c-.234-.143-.55-.055-.807-.086zm-2.303.085c-.344.088-.574.433-.46.835.087.52.778.43 1.15.345.06-.26-.084-.433-.113-.634-.2-.056-.345.09-.432.148l.202.258c-.058.146-.23.06-.345.09-.144-.116-.2-.262-.26-.436.06-.49.52-.374.836-.202v-.2c-.202-.058-.318-.29-.575-.204h-.002zm-1.15.26c-.404-.058-.087.433-.29.575-.143-.202-.315-.547-.632-.49.086.2-.172.98.23 1.18l.115-.633c.288.146.288.634.69.49.06-.433-.084-.75-.113-1.124v.002zm-2.072.086v1.18h.806c.086-.43-.634-.057-.605-.485.143-.146.374-.06.546-.09.058-.4-.46 0-.547-.345.143-.26.49-.03.69-.202-.26-.115-.605-.03-.89-.058h-.002zm6.76-.345l-.142 1.18h.2c.087-.144-.028-.487.288-.432.145.116.23.288.202.49.432 0 .024-.69.344-.895-.142-.37-.603-.23-.892-.343zm.55.404c-.06.145-.174.06-.287.087v-.146c.114.03.23-.056.29.06h-.002zm.692-.26l-.145 1.237c.345.086.113-.316.287-.432.374-.23.345.4.546.488.23-.23-.172-.574.145-.748.23-.488-.518-.488-.834-.544zm.545.4c-.06.118-.23.06-.346.06 0-.2.257-.143.344-.06zm.834-.2c-.176.348-.377.81-.29 1.096.2-.46.72.027.98-.06-.174-.373-.145-1.063-.692-1.035zm.136.328c-33.146-44.458.177.443.15.384-.03-.06-.27.05-.28-.053-.012-.105.138-.27.138-.27l-.008-.062zm-22.79-8.702l-.546-.06.06.2.488-.058v-.082zm32.468 3.54c-.433-.434-.893-.06-1.47-.086.52.345 1.008.113 1.525.286.114-.2.4.2.433-.145-.143-.113-.346-.026-.49-.054zm-1.382 1.094l-2.072-.06v.06h2.073zm.26 0h.834-.835.002zm-12.694 2.07l.056.202c.316-.028.75.115.893-.115-.318-.027-.693.057-.95-.087zm5.58 2.217v.146c.69-.03 1.67.114 2.274-.146H34.688zm-12.287.288h.288-.287zm-.49 1.38l-.26-.085.06.086h.2zm2.074.692c.432.316.92-.06 1.468.06l-1.468-.06zm4.778.202c.26-.03.547.055.748-.09-.258.03-.547-.055-.748.088zM13.02 37.133l-1.382-.056c.03.025.086.43.26.4.114-.72.69-.028 1.122-.2v-.145zm4.2-18.85l-.056-.202.057.402v-.2zm.347.2l-.144-.345v.344h.144zm-2.705 1.18c1.036-.258 2.907-.086 4.03.347-1.18-.52-2.735-.75-4.03-.345zm.834.633c.23-.057.633-.23.777.145-.086.49-.748.317-.834.116-.204.517.373.517.4.92.087-.03.23.058.288-.086-.03-.03-.087-.06-.087-.145.087-.117.203-.145.346-.117.317-.028.202.23.23.346.116-.03.23.028.346.058.346-.26.46-.75.403-1.24-.547-.2-1.38-.2-1.87 0v.003zm1.814.26c-.432-.03-.03.345-.49.23l-.144-.23c-.058.085-.173.115-.144.23-.115 0-.03-.202-.058-.288.202-.173.576-.173.835-.06v.117zm-1.123 1.266l.49.057-.49-.056zm1.18.806l-.288.345.142.143c-.057.17-.23.344-.403.43-.2-.114-.145-.288-.2-.344-.06.2.026.345.2.46-.116.49.632.863.057 1.267.23 1.094.374 2.245.69 3.31.058-.03.086-.086.144-.086.203-1.237.146-2.274.29-3.57.23.288.057.95.2 1.382.23.69.807.374 1.18.058-.315-.172.2-.634-.142-.835h.056c0-.17-.057-.288-.2-.4.23-.29-.03-.72-.145-1.038-.23-.173-.403 0-.604-.087 0-.086-.058-.202.058-.26l-.49.145c-.085-.172.375-.43.145-.344l-.98 1.093c-.346-.548.92-.837.633-1.44l-.287.26c-.26-.088.026-.433-.06-.49zm-1.87.085c-.06.375.43.778 0 1.037-.174-.145-.202-.46-.347-.69.03.144 0 .258-.144.345-.23-.03-.086-.346-.2-.49-.318.547.287.95.2 1.382-.403-.203-.604-.75-.604-1.24-1.036-.2-1.353 1.066-1.87 1.584.4.03.66.576 1.092.29.087-.204-.115-.29-.115-.433.46.087.056-.546.46-.49.23.117-.087.204 0 .347.46 0 0 .346.143.577.69-.29 1.208-.778 1.67-1.382-.057-.463.144-.55-.288-.837h.002zm.69.547v.403h.145c0-.143.028-.316-.145-.403zm-.345.633c-1.008 1.353-2.706 1.612-4 2.532l-.06.576c.116.26.26.605.69.46l3.11-2.532h.603c.547.03.375-.604.432-.98l-.775-.055zm-3.6 1.037c-.43.086-.027.46 0 .69l-.46.058c.433.576.634-.2 1.095-.143-.23-.26.202-.116.202-.2-.204-.29-.49-.434-.838-.404zm3.455.403c-.402.287-.058.863-.26 1.237-.316-.057-.23-.46-.344-.605-.375.374.115.605-.144 1.036-.348-.03-.174-.576-.405-.69-.172.317.058.806-.23 1.094-.172-.172-.172-.518-.26-.69.03.056-.027.085-.085.143-.172.316-.258 1.008.087 1.24.173-.26.2.2.404.058.174-.03.087-.2.29-.2.633.085 1.208.17 1.928.2l-.633-2.764c0 .346.058.835-.058 1.036-.29-.202-.29-.692-.29-1.094zm3.944.978c-.344.403-1.38.288-1.293.605.058.23-.144.344-.144.488.604.287 1.15-.172 1.583-.404h-.634c0-.43.548-.287.577-.632l-.087-.058h-.002zM18.317 28.1c-.432.66-.058 1.524.086 2.215.175-.75-.056-1.467-.085-2.215zm-3.224.343c-.257.086-.862-.23-.775.287h.776v-.287zm.347 0v.346h.46v-.203c0-.26-.317-.086-.46-.145zm1.496.145c-.172-.06-.69-.23-.69.145l.69.06v-.205zM7.608 30.86c.115-.145.49-.113.346-.4-.144.056-.605.144-.346.4zm1.727-.287c-.2.087-.2.433 0 .49.086-.116.23-.03.345-.06.087-.285-.287-.256-.345-.43zm.345.693l.29.344c.142.03.258 0 .343-.112-.172-.175-.373-.264-.633-.232zm6.304.776l-.49 1.438c.23.086.375.4.403.547l.087-1.985zm19.254.058v.49l.98-.06v-.087c.057-.632-.634-.23-.98-.343zm-26.996.343h-.288l.144.146.144-.148zm26.94.29c-.23.314.086.286.29.487-.116.2-.317.086-.49.114-.26.547.4.087.49.433-.116.26-.636.028-.577.203l.086.057c.088.29.49.346.75.23.52.26-.402.287-.06.26.23.173.377.574.75.433-.028-.146.03-.26.087-.348l-.49-.23c.088-.26.46-.028.547-.2 0-.52-.717-.114-.892-.346.116-.26.547-.06.748-.2-.027-.348-.604-.49-.893-.402.146-.2.55-.23.75-.23v-.116c-.317-.174-.776-.003-1.093-.146h-.002zm-17.125.057c0 .26-.058.72.345.634-.087-.233-.115-.46-.345-.634zm-9.873.288l.26.402c.144-.29.633-.027.633-.402h-.893zm10.218.692c-.317-.115-.72-.086-1.036 0-.115.23-.49.086-.432.402.115.346.375-.087.576-.145.748-.317 1.353.346 1.84.774.635.406-.546.29-.603.693.374-.028.72-.287.95-.488-.317-.545-.777-.89-1.295-1.234zm-9.182 0l-.345.347c.805.026 1.698-.06 2.475.058.403-.027 1.065-.146 1.093-.402H9.22v-.003zm32.926-1.124c-.2.026-.748-.086-.547.346h.545v-.346zm.922 0c-.29-.027-.777.026-.633.346h.633v-.346zm.605.288l.144.146c.2-.028.52.086.547-.203-.143-.173-.663-.348-.69.057zm-1.87.29l-.347.26c.146.258.433.083.634.144.028-.116-.058-.26.057-.348-.115-.03-.258.057-.345-.057zm1.323.055c-.26.056-.69-.176-.748.2.2.144.488.314.748.144v-.346zm.978 0h-.287v.285l.287-.287zm.69.89l-.144-.892-.547.345c0 .2-.06.46.06.633l.632-.086zm-1.035-.345c-.148.113-.06.288.056.346-.03-.114.057-.316-.058-.345zm-1.615.086h-.604c-.2.49.375.29.605.347v-.346zm1.038 0h-.69v.347h.69v-.346zm-23.544.347c-.088.69.69.086 1.092.26-.058-.606-.72.028-1.093-.26zm-1.326.115l.145.777.2-.09c-.116-.23 0-.66-.346-.69v.002zm-1.15.288c-.75-.2-1.613-.26-2.16.29.605.315.95-.634 1.583-.23 2.073 1.093 3.052 3.136 4.635 4.776h.2c-1.352-1.64-2.503-3.712-4.26-4.835h.002zm23.485.06v.145h.805c-.173-.26-.547-.09-.806-.146zm-20.61.14v.147c.117.058.203.2.347.144.144-.197.576.117.49-.284-.173-.004-.548-.004-.836-.004v-.002zm-3.855.202c.03.547 1.036.146.98.347-.29-.23-.578-.404-.98-.35v.002zm3.74.232l-.144.2c.865 1.066 1.73 2.447 2.62 3.255-.69-1.21-1.696-2.36-2.474-3.457zm.548.06l.058.285c.2.172.375-.06.548-.088-.03-.345-.405-.144-.606-.2v.002zm13.96.14l-.086.346 1.668 2.477c0-.98-.978-1.987-1.582-2.822zm-14.852.26l-.142-.115-.204.114h.346zm1.296.23c-.03.23.346.145.346.058-.058-.114-.23-.058-.346-.058zm-1.583.058c-.086.433.432.374.69.288-.028-.402-.517-.086-.69-.288zm16.578.146c-.314.315-.025.947.203 1.035-.088-.26-.145-.863.085-1.18-.114.027-.228.06-.288.145zm-17.814 0v.26h.143c.03-.118-.087-.177-.144-.26zm-1.325.257l-.144 1.322c-.028.98-.287 2.016.49 2.707-.375-.23-.432-.69-.346-1.037-.142-.95-.055-1.926.002-2.992zm4.837.432l-.26-.432.26.432zm-1.87-.202l.287.404c.173-.03.403.054.547-.06-.143-.375-.46-.375-.834-.346zm-1.584.057h-.144v.4c.057-.027.086-.085.144-.056v-.344zm.346.06c.114.688-.376 1.034-.836 1.267l.92-.35c.116-.23.058-.632-.085-.92v.002zm1.87.574c-.03.288.402.432.632.26-.144-.317-.317-.26-.633-.26zm-1.238.46c0 .316.374.576.143.923-.287-.175-.345-.523-.49-.78-.23.46.49.807.203 1.324-.462-.173-.375-.92-.75-1.124.058.49.604.865.403 1.385h-.142c.344.402.748.66 1.18.834l.2-.49c.116-.488.433-1.44-.258-1.783l.058.056c-.03.116.057.29-.058.35-.288-.122-.346-.525-.49-.698h.002zm25.76-2.13c.374-.087 1.036.23 1.096-.287-.348.316-.982-.318-1.096.284v.002zm-2.763-.143c-.116.403.46.403.345 0h-.346zm.69 0v.346c.17-.03.46.113.546-.146-.087-.028-.058-.116-.058-.202h-.49zm.832 0v.346h.203c.086-.174-.173-.26-.203-.348zm.405.086l.203.547c.173-.2.43-.174.347-.49l-.55-.06v.002zm-2.274.343l-1.383-.146v.548c.29.604 1.354.287 1.872.287-.4-.573-1.323-.086-1.87-.43.403-.116.92-.03 1.382-.06v-.2zm3.05 0c0 .373.548.115.808.2 0-.085 0-.17.087-.2h-.893zm-2.358.118c-.115.028-.29-.06-.346.087l.345.145v-.23zm.29 0v.146l.458.086v.4h.433c-.405-.258-.233-.864-.892-.63zm.887 0c-.086.2.146.23.26.23.06-.06.087-.086.087-.146-.087-.143-.23-.056-.348-.083zm1.73.43l-1.038-.086c-.113.115-.402.086-.345.287h1.38v-.2h.002zm-2.706.144h.2-.2zm-.893.346l.288.202c.46-.03 1.296.057 1.64-.09-.373-.546-.545.55-.833-.11l-.402.2c-.058-.09-.172-.117-.145-.2h-.546v-.002zm2.216.06c.2.486.69-.088 1.094 0-.375-.203-.692.113-1.095 0zm-.348.69l-.487.49c-.376.143-.433-.23-.748 0h.114c.2.027.23.228.23.4.574-.172 1.697.462 1.784-.545-.284-.144-.775.03-.892-.345zm-1.467.056h-.2v.145l.2-.143zm-1.785.29l-.2-.202v.2h.2v.002zm-19.627-.145c.2.23.346.348.69.29-.057-.345-.402-.29-.69-.29zm-2.878.433l.26.604-.26-.604zm3.51.202c0 .26.174.317.405.26v-.114c-.087-.173-.26-.145-.404-.145zm-1.035.402l-.057.348c.086-.028.287.06.26-.06-.116-.085-.116-.2-.203-.288zm-2.82.29l-.087.345c.547.288.605 1.44 1.526 1.095-.088-.375-.635-.086-.75-.4l.057-.087h-.2c-.088-.06-.203-.146-.146-.26.03-.028.087-.09.146-.09h-.202c-.317.118-.375-.228-.432-.4.26-.228.49.117.69.202-.085-.262-.373-.346-.603-.405zm2.676.602c.374.145.346-.173.633-.26-.23-.17-.78-.057-.635.26zm1.67-.258c-.375.115-.98.548-.835.95l.75-.2-.2-.346c.402-.146.575.574.98.2l-.29-.46c.547-.202.432.72 1.036.403-.03-.147-.26-.29-.058-.405.317.115.345.49.75.346-.634-.374-1.325-.604-2.13-.49l-.002.002zm3.252.49l.604.26v-.145c-.2-.03-.374-.175-.604-.116v.002zm1.785.058l.058.287c.548.028 1.268-.23 1.873.06l-1.93-.347zm-6.765.49h.403-.402zm6.908 0c.317.633 1.295.23 1.784.143l-1.784-.143zm.403.603c.026.06.084.086.084.145.23.115.288-.173.46-.2-.172.027-.344.086-.546.056zm-.606 1.324v.49c.144-.03.346.057.46-.087-.057-.23-.316-.26-.46-.403zM16.82 25.277c.114 1.986.517 4.174.95 6.218l.2-.23c-.288-2.042-.777-4.06-1.15-5.987zm2.53 2.534c-1.466.29.06 2.305-1.035 3.05.46.606-1.123.925-.26 1.44.317.09.52-.112.75-.26l.345-2.503c.144-.115.23-.49 0-.548.317.057.23-.316.345-.49-.086 0-.172.027-.2-.06l.287-.286c-.202.033-.346-.285-.23-.342h-.002zm-4.95 1.614c-.345.345-.172.69-.43 1.036-.346 1.12-.433 2.1-.605 3.31.288-.115.46-.086.748.06.172-.263-.547-.577-.288-1.037.26.115.403.374.49.547.057-.028.086-.087.143-.06.058-.518-.776-.633-.49-1.18l.634.633c.086-.52-.663-.834-.432-1.322.086 0 .173 0 .23.09-.058.027-.116.06-.086.11.26.06.316.35.49.436.085-.403-.087-.72-.403-.98 0-.144-.2-.372.06-.487.23-.03.057.287.202.287l.29-.146c-.03-.173-.52-.345-.29-.603-.403-.003-.057-.665-.26-.693H14.4zm-6.446 1.64h.69c-.172-.086-.49-.086-.69 0zm8.375.144c-.06.893.084 2.072.142 2.82h.058c.346-.922-.028-1.985-.2-2.82zm-8.636.2c.23.376.864.202 1.237.146v-.2c-.517.085-.862-.205-1.236.055v-.002zm4.98.202h-.144c-.374-.03-.49.4-.633.633.288-.03.604.058.835-.058l-.058-.576zm-1.958.578h.633v-.29c-.174-.49-.577-.002-.634.29zm-2.82-.347v.35c.776.143 1.353-.378 2.014.112-.2-.66-1.294-.404-2.014-.46zm.49.95H9.42c.086-.575-.835-.4-1.036 0h.002zm1.783.086c.287 0 .46-.286.632-.432-.345-.142-.49.26-.633.432zm2.503-.432c-.49.117-1.18-.287-1.467.347l1.525.145c-.834.375-2.187-.2-2.964.49.92.114 1.928.03 2.907.06l.115-.837-.116-.204zm-4.23 1.182l.085.287.2-.23c-.085.002-.23.057-.287-.057h.003zm4.576.49c-.146.2-.23.517-.087.746.346-.2 1.036.116 1.324 0l-.086-.4c.116-.26.375-.087.576-.144-.576-.058-1.152-.144-1.727-.202zm.603 1.38c0 1.296.345 2.88.086 3.655.114-.29.43-.603.345-.893-.46-.89-.288-1.81-.432-2.76zm21.5 2.07l-.146-.144c-2.33 1.498-4.862 2.908-7.194 4.435l.202.2 7.137-4.49zm6.073.494l.2.2-.2.258c-.26-.027-.778.115-1.036-.115-.488 1.065 1.238.55 1.182 1.383-.433.314-1.297.23-1.814.06-.172.26-.573.087-.748.145-.547.03-.547-.633-.432-.98-.086-.255-.287-.312-.46-.255-.605 1.408 1.21.806 1.237 1.726-.52.317-1.382.23-1.93.06-.146.26-.574.087-.834.147-.66-.375-.17-1.063-.43-1.525-.95.23-2.39-.833-3.166.403.23.06.604-.115.688.145-1.207-.2-2.07.806-3.05 1.324h.23c-.06.488-1.036.113-1.325.688H30.4v.146c-.46 0-.947.29-1.38 0-.175.23-.402.316-.605.46.23.376.604.433.893.634 1.584.835.92-1.266 1.524-1.87.115-.778 1.12-.46 1.295-.892.75.058 1.295-.116 1.956.144-.46.374-1.148-.174-1.466.2 1.495.72 3.425 1.238 5.122.634.517 0 .977-.604 1.436-.345-.115.835.604 1.813-.145 2.42.577.056.807-.06 1.18-.435-.313-.027-.46.114-.69-.145.404-.345 1.326.2 1.584-.604-.488-.06-1.035.087-1.582.144-.113-.084-.146-.2-.146-.345.894-.316 2.13.403 2.505-.634-.805-.145-1.755.315-2.504-.145 1.065-.315 2.85.488 3.455-.834-.432-.174-.95.258-1.236-.2.172-.433.748-.316 1.123-.348l-.287.288c.17.112.518-.26.634.06l.807-1.095h-1.494c-.26.173-.402-.403-.576 0-.23-.06-.52.23-.75-.087.03-.03.09-.06.06-.114-.028-.316.346-.26.433-.35-.087-.207-.03-.466-.346-.35zm-14.938.544c-.318.55-.23 1.412-.06 1.986.692.374.404 1.268.98 1.73.432.26.806 1.034 1.382.632-.98-.72-2.188-1.842-2.075-3.252-.17-.405.665-1.067-.228-1.096zm-13.126.605v-.35c-.144.06-.26.174-.2.35h.2zm12.578.143c-1.007-.55-2.388-.46-3.454-.06h.202c1.037-.26 2.274.144 3.252.202v-.142zm-13.124.084c-.316.146-.864.146-1.094.117l.547.574.547-.692zm11.398.117c.172.52.834.2 1.237.287-.402-.086-.72-.403-1.236-.286zM8.73 34.374v.23c1.008-.06 2.102.114 3.023-.146l-3.022-.085zm.202.834c-.057.576.634.23.69.632-.085.116-.2.146-.345.146.115.92 1.467.2 1.93.604-.06.145-.23.06-.347.086-.03.23.058.605.2.55.06-.09.146-.06.23-.09-.142.03-.286 0-.343-.112.49-.29 1.38-.06 1.985-.23v-.06c-.547 0-1.007 0-1.44-.144.404-.287.893-.058 1.44-.143v-.202c-.086-.634-.834-.23-1.238-.347-.288-.145-.777.028-.978-.145.633-.46 1.38.03 2.158-.115-.028-.173.058-.373-.086-.488-1.265.03-2.762-.057-3.856.058zm1.44 1.583h-.202l.2.145.002-.143zm.345.635h-.26l.26.145v-.146zm1.266.288c.26 0 .288.315.604.202v-.146c.087-.403-.604-.373-.604-.057zm-.49.202v.257c.116-.025.03-.17.06-.256h-.06zm-.545.402l.057.2c.03-.028.086-.06.057-.114-.057 0-.086-.056-.114-.086zm.69.086l.058.2c.087-.026.288.06.288-.085-.174.06-.23-.085-.346-.115zm9.24 4.952l1.668-.06c-.547-.172-1.122.06-1.67.06h.002zm0 .776l1.726.06c-.605.084-1.15-.46-1.727-.06zm-2.418 0c.633.088 1.467.088 2.014 0H18.46zm-3.656-8.835c.145 1.354-.316 3.08.145 4.49-.75.547-1.413.92-2.42.948.03.23.29.23.403.433l1.93-.085c.085.086.2.146.143.287-.548.202-1.18-.114-1.727.06.287.603 1.236.286 1.726.49-.26.17-.69.228-1.094.2.287.805 1.15.172 1.583.632-.202.114-.518.2-.75.06.692.805 2.102.172 3.023.545-.663.26-1.41.114-2.13.145.402.72 1.41.315 2.07.633-.172.26-.66.087-.978.146.864.86 2.476.313 3.454.46.662.114 1.583-.23 2.015.286-1.438.115-2.677-.2-4.144 0 1.093 1.123 3.108.46 4.49.547l.346.2-.145.146H20.04c.836.4 1.757.633 2.65.892.777-.373 2.014.174 3.11.088.026.173-.377.23-.147.402l.95.086-.893-.143c.29-.433.98-.288 1.584-.433.26 0 .633 0 .633.287l-1.323.057h2.015c-.176-.03-.464.115-.55-.115 1.497-.633 2.966.634 4.403-.288l-2.877-.144c1.38-.575 3.51.315 4.893-.488-.175 0-.405.06-.55-.058.434-.72 1.18.23 1.73-.402-.317-.174-.778.057-1.037-.23.287-.23.864-.086 1.296-.115.374.2.806-.23 1.18-.346.316-.486.98-.46 1.382-.833l-3.655.2-.288-.2c1.41 0 2.88-.288 4.374-.288l.348-.26c-.2.03-.402-.058-.434-.23-1.27.577-2.792.75-4.29.577l-.057 1.496c-.81 1.063-2.273.346-3.452.346l.2.144c-1.095.29-2.476.06-3.655-.06.864-.285 2.073-.026 2.82-.198-2.475-.434-4.547.486-7.022.258-.805-.546-.49-1.784-.574-2.763.172-.374.604-.52.98-.547-2.534.576-6.16 1.354-8.694-.146.087-.748.087-1.524 0-2.33.145-.46.663-.06.893-.086v-1.93c-.172-.057-.317.058-.346.203.604.314-.086.604.403 1.035-.087.576-.835-.028-.893.432-.114-.058-.057-.202-.057-.288-.114-.26.145-.316.346-.287l-.348-.26c-.114-.26-.402-.778.058-.834-.057.058-.402-.057-.287-.346.086-1.148.49.26 1.123-.2v-.776c-.375.06-.663-.087-.98-.115.173-.402.69-.145 1.037-.23l.086-.46c-.52-.03-.78.028-1.18-.23.372-.317.832.058 1.18-.202-.176-1.127-.81.425-1.327-.265zM24.877 46.46c-.777.117-1.93.117-2.677 0 .836-.084 1.757-.084 2.677 0zm4.29.088c-1.325-.028-2.62.058-4-.087l.057-.113c1.323.058 2.733.115 3.942.202v-.002z" stroke="none"></path><path class="seal-svg--stroke" stroke-width=".25" d="M25.396 24.163h1.583-1.585zm2.964 0h1.81-1.81zm-5.785.547h1.583-1.583zm2.965 0h1.438-1.438zm2.82 0h1.727-1.728zm3.11.057h1.813-1.812zm-10.132.49h.2-.2zm1.438 0h1.583-1.585zm2.908 0h1.382-1.382zm2.676.087h1.61-1.61zm2.908 0h1.813-1.812zm-10.018.546h.548-.547zm1.728 0h1.583-1.582zm2.762 0h1.325-1.324zm2.563 0h1.524-1.524zm2.82 0h1.61-1.61zm2.764 0h.49-.49zm-12.637.547h.836-.835zm2.016 0h1.44-1.44zm2.62 0h1.237-1.238zm2.417 0h1.38-1.38zm2.617 0h1.527-1.526zm2.707 0h.75-.75zm-12.377.547h1.124-1.123zm2.218 0h1.38-1.38zm2.474.086h1.18-1.18zm2.303 0h1.295-1.295zm2.475 0h1.44-1.44zm2.62 0h1.036-1.036zm-12.002.546h1.38-1.38zm2.417 0h1.296-1.294zm2.332 0h1.036-1.036zm2.07 0h1.325-1.324zm2.42 0H31.9h-1.323zm2.416 0h1.182-1.182zm-11.31.548h1.295-1.295zm2.274 0h1.237-1.237zm2.216 0h1.036-1.038zm1.985 0h1.238-1.238zm2.276 0h.346-.346zm-8.406.546h1.295-1.295zm2.13 0h1.237-1.237zm2.62 0h.43-.432zm1.324 0h1.182-1.182zm-5.612.634h1.122-1.123zm1.956.056h.892-.892zm3.57 0h.574-.574zm-6.62.548h.49-.49zm1.524 0h1.037-1.036zm1.785 0h.288-.288zm-2.677.692h.346-.346zm1.238-1h1.037-1.037zm-.776 1.63h.43-.43zm1.265 0h.604-.606zm7.165 0h.778-.777z"></path><path d="M27.094 12.017c1.094-.374 1.182 1.21 2.16 1.095 0 .604-.98.777-.434 1.525-.114-.03-.146.115-.146.2l.23.548c-.145-.028-.2.087-.287.144.17.977.86 1.87 1.583 2.503.145-.203-.23-.347-.202-.577h-.146c.316-1.41-.52-3.224 1.237-3.857 2.905-.23 6.302.576 8.92-.69.2.547-.575.374-.747.75-.834.457-1.268 1.35-2.16 1.61-.314.75-1.523.172-1.523 1.036-.46.547-1.353.258-1.437 1.15-.402.606-1.095.548-1.582 1.123-.113.23-.06.52-.144.75.348.143.52-.29.69-.49.433 1.093-.605 1.93-1.036 2.993-2.993-.115-6.073-.432-9.126 0-.69-.605-.546-1.64-1.438-2.015-.115-.49.23-.807.403-1.18l.142.286c.115-.17.058-.43.058-.632-.2-.374-.776-.058-.748-.605-.92-.116-.374-1.555-1.583-1.124-.49-.085-.174-.69-.55-.834-1.092.43-1.092-.864-2.07-.69-.548-.75-1.44-.95-2.074-1.643-.057-.086-.316-.2-.23-.43 1.18-.088 2.13.747 3.397.63 2.1.29 4.317-.574 6.275.202 1.093.777.286 2.216.43 3.195-.546-1.008.605-2.735-.978-3.253-1.698-.346-3.31.345-5.095.2-1.15-.2-2.36-.402-3.396-.632 2.1 1.267 5.24 1.094 7.742.69.432.086.98.26 1.18.69.116.75-.345 1.93.403 2.505-.086.287-.316.49-.49.748l.088.087c.863-1.296 2.763-2.246 2.273-4.146-.402-.2-.92-.43-1.122-.835.115.03.23.086.345.06l-.26-.406.403-.085c-.057-.29-.374-.29-.604-.26.114-.49.603-.634 1.093-.548.176.087.35.547.55.202v.003zm-.49.204c-.144-.256-.662-.112-.603 0l1.038.953c-.2.2-.46.2-.69.288.52.69.98-.517 1.38.26l.146-.26c.115.145.316.346.46.2v-.14h.347c-.145-.088-.145-.23-.057-.347-.547-.26-.72-1.065-1.44-.893-.03.604-.492.287-.577-.06h-.002zm4.72 1.643c-1.727.52-.807 2.562-1.266 3.655.633-.662.314-1.697.488-2.532.287-.46.833-.864 1.383-.98 2.186.52 4.773.29 6.85-.345-2.363.808-5.066-.056-7.457.203zm-3.05.49l-.2-.144.257.2-.056-.058zm-1.036.288l.058.46-.058-.46zm.345.058l-.058.2c.058.06.087.175.2.146-.084-.086-.026-.26-.142-.346zm.345 0c-.057.144.087.26.202.2-.057-.085 0-.286-.202-.2zm.145.98h.057v-.346h-.057v.346zm-.892 0h.06v-.29h-.058v.29zm.346-.29c-.03.174 0 .405.2.405v-.202c-.055-.086-.026-.287-.2-.2v-.002zm-.49.634l-.143.26c.086.058.23.144.288.2-.056-.142-.056-.316-.143-.46zm.347.06c-.115.23.172.43.345.4l-.345-.4zm.49.143l.258.144-.26-.145h.003zm-1.267.057h-.116l.115.2v-.2zm-.26.49h-.2v.345h.2v-.346.002zm.606.345l-.057-.346c-.086.03-.432.2-.202.346h.26zm.432-.346l.058.346c.2-.116-.03-.23-.058-.346zm1.095.29l-.2-.29.2.346v-.057zm.342.344v.2h.2c.03-.17-.14-.086-.2-.2zM18.747 14.64l-1.468-.087 1.523.145-.057-.058zm15.255.115c1.12.143 2.39.375 3.54.086-1.15.29-2.36-.26-3.54-.084zm-15.744.346l.202.23c1.38.087 2.82-.143 4.144-.344-1.497-.057-2.85.403-4.346.116zm15.744.145h.286-.286zm.49.087c.518.145 1.15.288 1.725.115l-1.726-.114h.002zm-11.11.403c-1.18-.116-2.36.173-3.54.29-.03.113.057.172.143.257l3.396-.547h.002zm11.052.288c-.604-.172-1.266-.316-1.87-.143.95-.058 1.812.518 2.678.258-.29 0-.607.06-.808-.114zm-2.073.347c.606.058 1.095.547 1.728.402-.605-.086-1.094-.46-1.726-.403zm-11.05.345c.518.114 1.036-.202 1.583-.288-.518.116-1.036.23-1.583.288zm10.563.057c.604.23 1.38.374 1.93.402-.72.087-1.24-.374-1.93-.403v.002zm-9.96.892l1.382-.748-1.438.69.057.058zm9.184-.547c.633.375 1.322.748 2.014.69-.632-.345-1.323-.46-2.013-.69zm-9.873.057c.028.202.46.202.49 0h-.49zm2.274.288h-.116l-.287.287.404-.288h-.002zm8.174.634l-.69-.23 1.036.49-.345-.26zm-5.123.344c-.06.432.113.95-.146 1.296-.432.086-.287-.634-.546-.892l-.403 1.035c-.173-.375-.576-.66-.69-1.036 0 .315.23.632.056.978-.2-.115-.46-.317-.49-.576v.69c-.373-.058-.43-.49-.49-.806-.314.26.118.72-.2.95-.345-.344-.402-.863-.546-1.236v.144c-.058.086-.145.057-.2.057 0 .374.517.634.258 1.036-.403-.23-.604-.864-.604-1.295-.086.202-.144.402-.202.604-.173-.06-.26-.375-.23-.346.116.402.576.833.346 1.18-.345-.144-.432-.546-.604-.835-.173.373.2.632.402.89 1.7-.26 3.425-.49 5.267-.403-.058-.374.087-.833-.23-1.093.086.345-.115.662-.345.806l-.403-1.152v.002zm1.44.346c-.03.402-.088.777-.348 1.093h.49c.058-.49-.086-.66-.144-1.094zm1.955.058l-.488.546c-.145-.086-.03-.316-.145-.402-.23.258-.06.748-.402.89-.088-.286-.176-.775-.145-.89l-.435.89 4.23.347c.173-.2.52-.43.347-.69l-.635.547-.06-.058c.175-.173-.058-.375-.085-.49l-.26.345-.2-.834c0 .43-.403.72-.633.978-.06-.173-.202-.66-.146-.777-.145.23-.2.604-.548.632-.2-.26.06-.518 0-.834-.06.374-.346.634-.633.892-.366-.374.238-.69.238-1.094zm-4.288 1.525c-.058.143-.317-.03-.2.2h.402v-.143c-.06-.087-.146-.058-.203-.058zm.547 0v.2c.288 0 .575.03.834-.058-.058-.057-.085-.085-.085-.144h-.748zm1.784 0c-.23.03-.633-.116-.75.143h.75v-.143zm1.035 0c-.23.057-.747-.174-.747.2.29-.03.604.06.836-.058.027-.085-.03-.114-.09-.143zm-4.257.057v.2c.173.058.316-.086.403-.115-.088-.143-.29-.056-.404-.085zm4.604 0c-.057.2.145.23.29.2.026-.028.085-.057.057-.115-.058-.143-.232-.056-.347-.085zm.692 0l-.06.2h.488v-.115c-.14-.028-.314.058-.43-.085h.002zm-6.074.086l.086.202c.144.03.288-.085.346-.144-.116-.113-.29-.056-.432-.056zm6.91 0l-.146.202h.346v-.144c-.058 0-.145.03-.2-.056zm-7.66.26c.174.03.346-.03.404-.143-.115-.087-.49-.145-.403.143h-.002zm8.203-.202l-.06.2h.347c.086-.17-.14-.2-.287-.2zm-8.835.203c.086-.03.288.058.288-.058-.058-.114-.317-.086-.288.058zm9.527-.144l-.057.23h.202c.026-.058.086-.088.086-.146-.085.002-.172.002-.23-.084zm-6.964.286l-.288.145.23.347c.115-.03.316.057.346-.086l-.288-.404zm4.434.06l-3.945-.06v.404c1.842-.06 4 .115 5.873.143l.06-.258c-.317-.116-.346.2-.604.2-.172-.085 0-.172 0-.286h-.344v.2c-.06.086-.146.086-.23.086-.116-.086-.03-.23-.06-.346-.2.03-.575-.114-.633.145l-.118-.23zm-5.47.085c.057.173.114.52.402.403.115.03.23-.028.23-.143-.086-.26-.374-.432-.633-.26h.002zm-.548 0c-.345.06.03.318.058.49.144 0 .23-.03.346-.087-.202-.114-.03-.547-.404-.402zm-.546.06c-.316.027.058.257 0 .43.086-.028.288.06.26-.087l-.26-.344zm8.894.43l.086-.345-.144.345h.058z" stroke="none"></path><path d="M27.928 13.1v.146c-.288-.116-.72 0-.834-.433.144-.576.863-.086.834.288zM20.444 51.046c.02-.08.038-.192.15-.164.084.02.097.1.1.17.024.304.107.608.44.69.26.066.607-.016.68-.31.067-.266-.153-.428-.352-.553l-.234-.15c-.462-.288-.794-.647-.646-1.23.08-.314.318-.56.605-.7.316-.15.664-.153 1-.067.24.06.618.22.807.38.14.122.108.184.066.35l-.07.274c-.02.082-.048.277-.168.246-.12-.03-.107-.188-.11-.278-.005-.173-.007-.315-.096-.468-.106-.172-.292-.266-.478-.313-.316-.08-.726 0-.817.36-.1.406.306.64.585.842.355.268.785.615.658 1.118-.167.663-.984.83-1.562.687-.176-.045-.484-.18-.62-.297-.082-.075-.046-.15-.022-.245l.087-.344v.002zm-1.936-1.266c.06-.145.102-.22-.065-.29-.1-.042-.31-.13-.41-.146-.145-.03-.245.05-.335.158-.045.055-.118.137-.204.102-.076-.03-.072-.098-.044-.164.065-.13.125-.27.19-.403.055-.134.104-.28.15-.42.026-.06.074-.125.156-.093.23.096-.128.483.38.694l.21.075c.16.057.18-.016.232-.145l.232-.56c.05-.12.118-.3.083-.432-.038-.14-.182-.237-.312-.29-.333-.142-.67-.123-.95.116-.056.056-.145.136-.23.1-.078-.03-.093-.076-.06-.152.016-.044.097-.156.125-.2l.21-.36c.03-.057.05-.08.113-.055.354.146.7.312 1.055.46.46.187.928.357 1.387.55.066.025.107.062.078.134-.032.075-.115.074-.177.06-.346-.08-.375.02-.494.306l-.703 1.698c-.116.283-.192.427.095.602.058.034.14.098.123.136-.03.076-.095.097-.162.066-.287-.12-.557-.253-.844-.372-.498-.206-1.004-.394-1.507-.6-.105-.046-.047-.115-.012-.202l.16-.39c.03-.07.047-.153.158-.107.072.027.083.125.095.19.02.113.066.232.117.34.063.132.21.198.34.25.08.034.343.145.433.13.07-.01.12-.142.144-.196l.248-.592-.002.002zm-3.698-.72c-.15.11-.204.19-.38.08-.147-.088-.11-.14-.09-.294l.38-2.71c.015-.08.032-.21.026-.293-.008-.106-.032-.157-.118-.216-.073-.05-.166-.086-.104-.19.054-.087.145-.038.207 0 .19.11.356.235.534.343.222.135.446.242.66.37.06.038.135.096.085.18-.09.15-.328-.158-.424 0-.034.06-.048.144-.057.196l-.075.443c-.036.19-.044.172.116.27l.583.35c.156.093.137.095.275-.018.112-.097.263-.218.34-.347.19-.314-.365-.39-.245-.588.048-.08.14-.043.203-.006.138.083.274.18.412.26.138.083.285.16.423.242.068.04.13.097.083.177-.045.075-.117.042-.18.02-.143-.058-.192-.073-.33.006-.123.072-.34.255-.464.353l-.614.464-1.246.906zm1.11-1.098c.025-.02.1-.073.118-.104.037-.062-.067-.102-.107-.125l-.384-.233c-.032-.018-.136-.104-.168-.052-.013.022-.023.118-.027.135l-.16.937.732-.558h-.002zm-3.35-1.01c-.197.247-.306.33-.084.584.042.047.12.116.064.187-.05.062-.102.043-.158-.004-.21-.17-.398-.35-.608-.52-.194-.154-.4-.294-.59-.447-.057-.046-.09-.094-.04-.156.053-.063.124-.02.18.01.31.18.354.08.572-.188l1.158-1.44c.172-.214.267-.395-.023-.63-.583-.472-.99.016-1.15-.115-.063-.053-.046-.1 0-.153.126-.16.313-.28.454-.435.1-.104.12-.04.218.035.307.248.6.512.908.76.314.252.65.498.965.75.056.045.09.086.042.146-.052.06-.135.042-.19.013-.302-.17-.342-.097-.553.167l-1.16 1.433-.004.003zm-2.067-4.798c.005.48-.246.95-.614 1.246-.358.285-.817.398-1.268.343-.49-.06-.888-.298-1.195-.683-.616-.77-.705-1.892.12-2.553.785-.628 1.86-.396 2.467.36.27.34.485.85.488 1.287zM8.21 41.122c-.48.385-1.1 1.253-.622 1.85.415.52 1.204.153 1.616-.178.275-.22.513-.503.66-.825.143-.33.206-.73-.034-1.03-.417-.523-1.207-.15-1.62.18v.002zM6.37 39.23c.136-.076.218-.11.128-.27-.053-.095-.164-.294-.23-.37-.094-.112-.224-.11-.362-.08-.068.015-.176.033-.222-.048-.04-.07.003-.12.066-.154.132-.062.268-.142.4-.2.125-.07.256-.158.377-.237.06-.03.136-.05.18.025.122.217-.4.3-.13.78l.118.187c.092.147.15.103.272.032l.58-.324c.265-.15.383-.192.27-.502-.025-.063-.06-.157.022-.205.065-.035.112.005.144.063.132.233.24.47.373.705.122.218.262.425.384.64.037.064.044.12-.023.157-.073.04-.133-.014-.173-.062-.217-.27-.286-.215-.58-.05l-1.608.904c-.27.15-.402.2-.286.516.025.063.073.15-.003.19-.073.043-.116.007-.152-.056-.233-.416-.454-.852-.688-1.268-.163-.29-.348-.58-.51-.866-.067-.117-.08-.15.046-.223l.434-.243c.06-.033.135-.047.172.02.047.086-.034.196-.074.272-.075.13-.122.206-.112.357.01.166.106.326.188.473.03.055.103.204.17.237.056.026.133-.016.183-.044l.645-.353v-.003zm-.766-5.29c.292-.09.417-.105.368-.436-.01-.065-.025-.166.064-.192.074-.023.11.023.13.09.082.257.14.51.22.768.075.237.168.47.243.706.02.07.015.125-.06.147-.08.023-.126-.04-.155-.1-.156-.31-.236-.268-.558-.168l-2.086.655c-.136.05-.143.046-.1.186.106.334.28.428.605.526.072.02.212.07.237.147.02.06-.02.102-.08.12-.035.013-.08.01-.117.01l-.628.02c-.08.005-.18.018-.21-.08-.017-.054 0-.092.043-.12.126-.09.09-.114.047-.255l-.556-1.773c-.046-.15-.07-.28-.24-.324-.054-.013-.114-.03-.133-.09-.035-.113.064-.124.15-.14l.654-.137c.084-.014.205-.06.238.046.026.085-.04.153-.1.2-.31.255-.38.35-.25.758.04.128.056.13.185.09l2.092-.655zM3.73 30.514c-.024-.175-.02-.17-.21-.143l-.497.07c-.313.045-.45.033-.46.37 0 .06.008.167-.08.18-.082.012-.104-.038-.115-.11-.038-.266-.054-.525-.092-.79-.034-.247-.09-.49-.125-.73-.01-.07 0-.13.08-.144.084-.012.106.068.125.13.106.34.206.3.55.25l1.82-.26c.303-.042.43-.038.434-.368 0-.068 0-.168.094-.18.077-.014.105.04.115.105.037.27.053.526.09.793.036.246.09.488.126.734.01.072-.003.126-.08.138-.083.012-.12-.062-.138-.12-.104-.33-.19-.306-.523-.257l-.784.116c-.137.023-.12.032-.1.17l.13.913c.03.214.007.2.217.173l.718-.103c.303-.043.428-.04.434-.37 0-.07 0-.168.093-.182.078-.013.105.04.115.107.038.268.054.526.09.792.037.246.092.49.127.736.01.07-.003.125-.08.137-.082.013-.12-.062-.138-.122-.104-.33-.19-.304-.523-.255l-1.82.26c-.314.046-.452.032-.46.368-.002.064.007.167-.08.18-.082.014-.105-.035-.115-.107-.04-.267-.055-.526-.093-.792-.035-.245-.09-.49-.124-.73-.01-.07-.003-.13.08-.142.08-.013.103.07.122.13.106.34.205.3.548.25l.498-.07c.186-.025.185-.03.16-.21l-.13-.913zm-.41-3.162c.155.002.243.014.245-.17 0-.107.003-.335-.016-.434-.026-.145-.14-.21-.274-.25-.067-.022-.17-.06-.17-.153.002-.083.065-.103.137-.103.145.013.3.015.445.027.144 0 .3-.01.445-.018.067 0 .145.023.144.11-.004.25-.5.062-.505.612l.008.222c.008.172.08.162.22.164l.607.008c.13 0 .32-.003.43-.084.116-.087.154-.257.156-.398.004-.362-.138-.67-.463-.838-.072-.032-.18-.084-.18-.178 0-.083.038-.113.12-.112.047 0 .182.034.233.043l.415.064c.063.006.093.016.093.083-.003.383-.03.766-.032 1.15-.005.497.01.994.004 1.492 0 .07-.017.123-.095.122-.084 0-.114-.078-.124-.142-.053-.353-.157-.344-.468-.346l-1.838-.02c-.306-.002-.467-.02-.522.312-.01.067-.038.164-.08.164-.083 0-.124-.053-.123-.126.002-.31.026-.61.03-.922.006-.54-.008-1.078-.003-1.622 0-.113.09-.087.182-.086l.42.005c.077 0 .16-.015.16.104-.002.078-.085.124-.143.16-.1.062-.194.148-.27.235-.1.106-.108.27-.11.407 0 .088-.004.373.042.45.035.063.176.06.237.06l.637.007.003-.002zm2.412-6.402c.165.045.23.054.29.23.112.32.097.693.027 1.022-.097.446-.31.946-.66 1.253-.37.324-.907.48-1.393.376-.5-.104-.904-.455-1.118-.917-.207-.457-.23-1.03-.126-1.515.05-.238.152-.518.268-.738.07-.13.09-.125.237-.12l.266.014c.053 0 .1 0 .15.01.057.013.08.06.067.116-.05.233-.655.12-.8.805-.072.334.05.683.278.932.238.256.59.416.925.487.33.07.71.07 1.027-.047.34-.13.612-.39.69-.754.04-.198.01-.396-.08-.573-.095-.18-.243-.307-.396-.434-.05-.038-.093-.084-.08-.15.024-.11.14-.08.215-.06l.21.063h.002zm.342-1.51c.29.097.4.157.555-.136.03-.06.075-.15.164-.12.074.025.075.086.053.15-.085.255-.188.493-.274.75-.08.235-.14.478-.22.712-.023.07-.06.112-.132.087-.08-.026-.077-.108-.067-.17.055-.343-.034-.355-.353-.463l-1.74-.59c-.3-.1-.418-.173-.58.123-.028.057-.067.152-.15.125-.078-.028-.076-.08-.053-.15.086-.255.188-.494.274-.75.08-.235.14-.478.22-.71.022-.067.055-.117.134-.09.078.027.062.108.05.17-.057.352.05.36.378.472l1.744.59h-.002zm.986-2.313c.278.13.38.204.567-.07.038-.056.094-.138.178-.098.07.03.064.092.036.152-.113.244-.243.47-.36.713-.105.224-.193.457-.3.683-.03.064-.072.102-.142.068-.075-.035-.065-.116-.048-.177.094-.334.008-.357-.296-.5l-1.974-.937c-.134-.06-.136-.065-.198.066-.15.317-.084.503.086.796.04.064.108.194.073.27-.027.06-.085.062-.14.035-.034-.015-.065-.047-.093-.07l-.477-.41c-.062-.053-.142-.113-.1-.203.025-.05.062-.068.115-.06.15.02.144-.024.205-.155l.797-1.68c.07-.146.138-.255.042-.404-.033-.046-.064-.1-.037-.157.05-.106.13-.044.206 0l.57.347c.07.045.19.095.143.193-.038.08-.133.085-.21.08-.4-.024-.514-.004-.698.384-.058.123-.045.133.077.19l1.978.94v.003zm.423-4.357c-.026-.06-.07-.162-.13-.204-.092-.065-.202-.01-.283.08-.08.088-.13.193-.206.14-.072-.05-.04-.142 0-.197.088-.13.195-.245.29-.38.107-.153.204-.327.313-.483.042-.06.12-.118.197-.064.063.044.023.093-.008.146-.048.086-.075.187-.076.287.004.176.104.43.166.586l.387 1.063.69.485c.25.176.34.265.572.027.047-.05.116-.122.192-.067.064.045.048.104.01.16-.155.22-.32.42-.476.64-.14.205-.267.42-.41.623-.042.06-.09.09-.152.046-.067-.05-.044-.128-.017-.185.15-.312.07-.35-.206-.543l-.563-.396-1.59-.005c-.1 0-.23-.002-.33.02-.085.02-.13.03-.183.096-.05.065-.095.156-.188.09-.08-.057-.02-.147.022-.206.132-.187.274-.352.405-.54.16-.228.298-.46.457-.684.044-.064.113-.16.202-.1.09.062-.004.168-.05.232-.03.046-.067.16-.003.205.065.045.23.042.306.043l1.053.005-.387-.92h-.003zm2.533-3.457c-.063-.175-.123-.248.03-.388.124-.117.163-.068.307-.003l2.498 1.113c.077.037.196.088.276.105.105.022.16.013.24-.054.068-.056.13-.135.21-.048.07.076 0 .15-.055.2-.16.15-.324.274-.475.415-.19.177-.358.362-.54.532-.053.05-.128.105-.195.033-.12-.13.243-.27.116-.406-.046-.05-.122-.086-.172-.11l-.408-.194c-.172-.087-.155-.09-.29.038l-.498.462c-.132.124-.128.106-.06.27.06.134.135.312.238.422.25.27.474-.244.633-.073.06.068 0 .146-.053.197-.118.108-.246.215-.363.324-.117.11-.23.23-.35.34-.055.052-.127.098-.19.03-.06-.064-.01-.125.032-.18.092-.12.123-.163.084-.318-.035-.137-.15-.398-.207-.542l-.28-.717-.527-1.446zm.748 1.37c.014.03.044.116.07.143.048.053.114-.036.147-.068l.33-.308c.028-.024.14-.1.1-.146-.02-.02-.11-.055-.124-.063l-.854-.413.334.858-.002-.002z" stroke="none"></path><path d="M14.586 6.47c-.058-.087-.154-.228-.24-.28-.117-.072-.223-.044-.33.01-.08.04-.152.127-.216.032-.06-.09.033-.153.098-.198.13-.087.26-.163.388-.25.124-.084.247-.18.372-.265.064-.045.128-.07.178.003.07.103-.096.172-.164.23-.184.162-.02.35.095.517l1.378 2.035c.08.12.155.182.01.282-.108.072-.224.02-.337-.016l-3.127-.965.96 1.415c.07.103.22.325.313.395.13.1.238.063.36-.006.06-.04.176-.13.24-.034.05.073-.007.136-.067.177-.137.093-.278.164-.415.256-.137.09-.262.2-.395.29-.06.043-.13.06-.177-.01-.064-.094.05-.16.115-.21.09-.066.122-.13.092-.25-.042-.164-.205-.386-.304-.53l-.902-1.335c-.113-.167-.227-.372-.45-.24-.07.042-.164.118-.228.024-.054-.08.032-.137.092-.177l.755-.51c.172-.118.165-.1.362-.04l2.253.687-.708-1.04zm1.392-.85c-.11-.24-.17-.41-.43-.27-.07.038-.16.113-.21.005-.1-.217 1.158-.845 1.366-.94.453-.205.903-.33 1.405-.264.526.076.97.37 1.19.86.44.97-.23 1.988-1.12 2.395-.396.18-.8.34-1.196.52-.085.04-.17.1-.26.142-.062.028-.127.023-.16-.052-.036-.075.033-.112.088-.155.27-.21.216-.275.073-.592l-.748-1.647zm1.474 1.18c.144.315.25.603.643.425.312-.142.513-.46.567-.792.06-.33-.03-.716-.167-1.02-.285-.625-.934-1.14-1.63-.82-.34.153-.31.23-.166.552l.75 1.655h.002zm7.17-1.83c.023.168.04.233-.1.355-.25.23-.6.362-.93.427-.445.088-.99.09-1.41-.112-.443-.214-.8-.645-.894-1.133-.1-.503.064-1.01.406-1.39.34-.368.856-.612 1.344-.71.24-.046.537-.063.783-.042.148.014.15.035.205.172l.09.25c.022.05.04.093.05.145.012.056-.023.094-.08.105-.233.046-.368-.556-1.054-.42-.334.065-.61.315-.75.623-.137.317-.145.703-.08 1.04.066.33.214.68.448.925.252.262.6.41.964.337.2-.04.368-.146.497-.298.126-.157.185-.343.242-.534.015-.06.04-.12.106-.132.112-.02.13.096.14.173l.027.22h-.002zm.852.08c-.387-.284-.614-.77-.628-1.24-.013-.456.17-.892.487-1.218.342-.357.772-.53 1.265-.545.983-.03 1.934.576 1.964 1.632.03 1.002-.805 1.722-1.77 1.75-.43.012-.97-.123-1.318-.38zm2.203-1.212c-.02-.616-.34-1.632-1.105-1.61-.663.02-.846.87-.83 1.398.01.353.093.713.264 1.024.175.312.458.603.842.59.667-.018.844-.873.83-1.402zm4.333.782c-.048.353-.087.662-.43.87-.318.192-.698.207-1.062.156-.338-.048-.73-.16-.994-.375-.338-.275-.346-.6-.29-.996l.196-1.4c.043-.313.094-.442-.228-.544-.062-.02-.162-.04-.15-.127.01-.082.064-.09.138-.08.268.036.52.093.787.13.246.034.494.048.735.082.072.01.126.033.115.116-.013.084-.095.083-.16.085-.354.007-.344.113-.394.458l-.155 1.128c-.028.21-.093.626-.04.816.076.32.36.474.666.516.268.04.562.012.763-.184.198-.188.222-.43.26-.682l.18-1.303c.018-.112.05-.3.013-.416-.04-.116-.14-.157-.252-.188-.08-.023-.202-.008-.186-.126.015-.102.11-.088.188-.078.153.022.308.054.46.074.148.022.307.032.46.054.06.01.112.047.103.12-.016.102-.12.07-.198.07-.12 0-.195.01-.255.132-.037.09-.068.268-.08.36l-.19 1.337V4.62zm3.758-.323c.03-.098.08-.262.067-.364-.02-.135-.104-.2-.215-.25-.083-.035-.194-.038-.16-.146.03-.104.14-.07.214-.048.148.044.29.1.438.143.146.045.296.08.44.125.07.022.132.056.105.14-.036.12-.194.033-.28.017-.243-.043-.286.205-.346.398l-.72 2.347c-.042.138-.044.235-.214.183-.123-.038-.154-.16-.197-.272l-1.207-3.04-.504 1.633c-.037.12-.116.376-.113.492.003.164.1.225.23.276.066.028.208.06.175.17-.024.084-.11.08-.18.058-.16-.05-.303-.114-.46-.164-.157-.048-.323-.076-.478-.125-.068-.02-.125-.066-.102-.146.032-.11.153-.06.233-.042.108.03.183.014.254-.083.102-.137.172-.4.225-.57l.474-1.54c.06-.196.15-.41-.096-.503-.078-.028-.194-.053-.162-.163.027-.088.127-.06.197-.037l.87.268c.195.062.18.066.256.258l.88 2.19.37-1.203.002-.003zm2.016 2.81c-.132.274-.203.377.07.565.056.038.138.095.098.18-.033.07-.095.064-.154.034-.243-.116-.47-.246-.712-.36-.225-.108-.457-.197-.684-.303-.063-.03-.104-.072-.068-.143.035-.075.116-.064.178-.047.332.095.357.01.502-.295l.94-1.973c.058-.134.063-.136-.067-.198-.316-.152-.505-.086-.798.085-.065.037-.196.107-.273.072-.06-.03-.062-.087-.033-.143.015-.03.047-.062.07-.09l.41-.475c.053-.062.112-.142.2-.1.056.025.07.062.062.116-.02.15.022.144.154.206l1.68.8c.145.068.256.14.403.042.045-.03.102-.062.154-.036.107.052.047.133 0 .208l-.346.57c-.043.07-.094.19-.192.142-.08-.036-.087-.13-.077-.208.025-.4.003-.515-.385-.7-.12-.06-.133-.046-.19.076l-.94 1.978v-.002zm4.35.373c.06-.025.162-.07.2-.13.064-.096.007-.203-.082-.283-.09-.08-.195-.126-.145-.204.05-.073.142-.042.197-.004.127.086.243.19.383.283.152.104.328.198.486.304.06.04.12.12.066.195-.04.066-.09.027-.143-.003-.09-.048-.188-.074-.29-.07-.175.005-.428.11-.58.174l-1.058.404-.476.7c-.17.252-.258.343-.016.57.05.045.12.113.068.19-.044.065-.104.05-.158.012-.224-.15-.427-.312-.647-.463-.206-.14-.423-.263-.63-.402-.062-.04-.092-.085-.047-.15.047-.07.123-.048.183-.022.315.144.35.063.54-.216l.386-.57-.022-1.593c-.002-.1 0-.23-.026-.33-.02-.082-.032-.13-.1-.18-.066-.05-.156-.093-.092-.187.056-.082.144-.02.206.02.188.128.355.266.545.395.232.156.467.29.694.445.062.043.16.11.102.2-.06.09-.17 0-.23-.044-.05-.032-.164-.066-.207-.002-.044.065-.037.23-.038.307l.014 1.053.91-.402.003.002zm1.102 3.86c-.043-.48.173-.97.52-1.292.333-.31.78-.46 1.234-.436.494.02.91.23 1.244.59.67.72.845 1.833.07 2.553-.734.686-1.826.533-2.484-.175-.295-.314-.55-.807-.584-1.24zm2.366.855c.45-.42 1.002-1.332.48-1.892-.453-.486-1.213-.062-1.6.3-.258.24-.475.54-.596.873-.117.336-.15.742.11 1.023.46.487 1.218.054 1.606-.306zm1.978 1.735c-.13.086-.206.127-.105.277.062.09.188.28.262.35.104.105.23.092.367.052.066-.023.172-.05.227.027.05.07.01.12-.053.16-.125.074-.254.162-.38.233-.12.082-.245.178-.356.27-.06.037-.134.063-.18-.01-.143-.207.372-.335.063-.79l-.133-.178c-.105-.136-.16-.087-.274-.008l-.55.37c-.254.173-.368.225-.23.525.03.06.072.15-.006.2-.064.045-.112.01-.15-.046-.152-.223-.28-.45-.43-.673-.142-.205-.297-.4-.437-.605-.04-.06-.053-.115.013-.158.068-.047.135.003.178.05.238.25.304.187.582 0l1.527-1.033c.258-.174.387-.236.242-.54-.027-.062-.084-.145-.012-.193.066-.044.113-.013.154.047.268.395.522.81.79 1.205.186.274.395.546.58.82.073.113.09.146-.03.227l-.41.28c-.057.036-.133.054-.176-.01-.053-.08.02-.198.053-.277.062-.136.104-.214.083-.37-.022-.164-.134-.315-.228-.453-.035-.05-.117-.194-.188-.22-.06-.024-.132.025-.18.057l-.61.412zm3.147 4.797c-.076.03-.18.084-.222-.02-.032-.083.02-.14.076-.184.23-.2.426-.45.295-.767-.103-.25-.375-.478-.653-.362-.254.104-.252.378-.233.612l.02.278c.045.542-.044 1.022-.6 1.25-.3.125-.64.08-.927-.066-.307-.165-.517-.442-.646-.763-.097-.23-.19-.626-.176-.874.014-.183.08-.195.238-.26l.265-.11c.075-.03.25-.124.3-.01.046.116-.088.2-.16.256-.134.106-.25.193-.314.355-.075.19-.04.394.03.57.125.3.434.584.775.443.39-.16.33-.625.328-.97.002-.445.023-.998.505-1.195.632-.26 1.254.295 1.48.845.067.168.145.494.132.675-.01.11-.094.128-.186.165l-.323.135h-.003zm1.063 1.918c.185.03.274.01.326.21.043.166-.02.176-.144.272l-2.177 1.66c-.065.05-.17.128-.224.19-.07.082-.09.135-.065.237.02.087.058.178-.062.208-.1.025-.13-.073-.146-.144-.055-.21-.085-.417-.14-.617-.06-.25-.145-.485-.206-.727-.017-.07-.03-.163.065-.186.17-.045.12.343.3.296.065-.016.134-.065.18-.098l.364-.266c.157-.11.15-.094.103-.274l-.162-.656c-.044-.177-.03-.165-.206-.184-.146-.01-.34-.03-.485.007-.355.09-.013.533-.237.59-.092.024-.13-.067-.146-.14-.04-.154-.07-.317-.11-.473-.04-.156-.093-.313-.132-.47-.02-.074-.024-.16.064-.182.084-.022.114.05.142.113.063.14.087.19.24.23.138.035.423.058.575.078l.766.098 1.52.23h-.003zm-1.56 0c-.034-.003-.124-.017-.156-.01-.07.02-.022.12-.013.165l.113.437c.008.036.02.17.082.156.025-.007.102-.068.114-.078l.77-.55-.91-.12z" stroke="none"></path><path d="M52.107 26.007c.104-.01.272-.027.363-.078.115-.07.143-.178.146-.298 0-.09-.04-.194.073-.206.103-.01.117.103.123.18.018.155.02.305.037.46.018.15.042.302.06.452.008.076 0 .144-.09.153-.123.014-.105-.165-.123-.25-.057-.24-.3-.184-.502-.163l-2.443.25c-.145.015-.232.05-.25-.125-.016-.13.086-.207.172-.29l2.333-2.294-1.7.173c-.125.013-.392.04-.496.088-.145.067-.17.178-.164.32.004.07.028.214-.086.227-.087.008-.118-.072-.124-.144-.018-.164-.013-.32-.03-.485-.017-.166-.054-.33-.07-.49-.007-.07.015-.14.097-.148.11-.013.115.117.13.2.02.112.06.17.177.2.166.04.438.002.613-.015l1.604-.164c.2-.02.436-.023.424-.282 0-.083-.023-.2.09-.213.094-.01.104.094.11.166l.094.907c.02.206.01.192-.14.337l-1.674 1.66 1.247-.128zm-.543 3.987c-.153-.016-.24-.033-.258.146-.014.107-.033.336-.02.436.01.146.118.22.248.273.065.024.164.07.155.164-.01.084-.073.1-.147.092-.145-.025-.3-.04-.44-.064-.145-.014-.303-.018-.445-.02-.067-.007-.143-.036-.135-.124.022-.247.502-.02.555-.564l.012-.226c.006-.17-.068-.166-.207-.18l-.66-.062c-.304-.03-.426-.062-.51.257-.017.065-.04.163-.134.153-.077-.008-.093-.065-.086-.135.026-.267.07-.52.098-.79.023-.25.027-.5.052-.746.006-.07.032-.12.108-.112.084.008.103.09.104.15.023.348.115.34.45.372l1.835.176c.31.03.446.063.53-.26.02-.064.026-.164.113-.156.082.01.1.062.092.136-.046.475-.113.958-.16 1.432-.03.33-.044.675-.074 1.005-.015.132-.02.17-.167.152l-.494-.05c-.067-.007-.14-.04-.13-.116.01-.1.14-.145.215-.184.137-.062.22-.098.3-.23.087-.145.1-.327.114-.493.005-.062.03-.227-.003-.293-.03-.054-.12-.062-.178-.066l-.737-.076v.002zm-2.34 4.422c-.216.05-.33.048-.43.258-.03.057-.06.096-.13.08-.087-.022-.075-.11-.06-.175.036-.144.08-.276.11-.418.037-.14.063-.278.098-.42.027-.114.092-.11.203-.132l1.033-.23c.113-.026.34-.078.432-.14.058-.033.078-.098.094-.16.02-.096-.05-.085-.15-.11l-.67-.165c-.294-.074-.41-.125-.538.18-.026.063-.065.154-.155.135-.074-.02-.08-.08-.062-.146.062-.262.146-.51.213-.77.06-.24.103-.488.16-.728.017-.07.05-.115.126-.1.08.022.086.104.08.166-.026.346.062.354.39.434l1.79.445c.298.074.432.14.56-.154.023-.062.044-.16.13-.138.078.02.09.08.072.156-.06.23-.137.457-.193.688-.098.394-.172.777-.268 1.165-.055.22-.14.446-.312.594-.192.15-.44.203-.688.144-.48-.12-.596-.597-.527-1.04-.1.28-.313.352-.572.414l-.735.17v-.002zm1.794-1.3c-.125-.03-.22-.085-.252.05-.037.15-.052.318.014.47.07.183.246.31.435.356.32.08.68-.045.767-.396.02-.074.02-.22-.043-.25-.057-.025-.18-.045-.24-.06l-.683-.17zm-.393 4.45c.124.142.205.186.113.37-.072.154-.127.124-.284.115l-2.73-.13c-.085-.005-.215-.01-.294.003-.104.02-.156.045-.205.14-.04.078-.072.172-.18.12-.093-.047-.054-.142-.02-.206.096-.197.204-.373.294-.562.11-.23.2-.467.31-.69.03-.063.08-.145.17-.103.157.077-.13.342.037.422.062.03.146.036.2.04l.447.032c.195.017.18.025.26-.143l.295-.61c.076-.16.08-.145-.04-.27-.106-.105-.24-.24-.377-.308-.332-.16-.354.396-.562.298-.083-.04-.056-.138-.022-.2.07-.147.15-.29.222-.438.067-.145.13-.297.2-.44.034-.07.085-.14.17-.1.077.038.054.112.034.18-.042.146-.055.196.036.327.08.112.284.313.392.43l.52.567 1.01 1.16.003-.004zm-1.193-1.004c-.02-.023-.084-.092-.115-.107-.063-.032-.094.074-.112.117l-.194.406c-.015.03-.093.144-.035.172.023.01.12.012.137.014l.948.076-.626-.678h-.002zm-2.307 5.674c.084.06.225.158.324.18.133.023.223-.038.304-.126.06-.067.097-.173.19-.106.088.062.02.155-.022.22-.09.126-.185.24-.274.37-.087.12-.17.254-.257.377-.044.065-.096.11-.167.06-.102-.07.03-.19.07-.27.116-.216-.103-.333-.27-.45l-2.004-1.42c-.12-.086-.21-.117-.106-.262.075-.104.202-.1.32-.104l3.267-.194-1.394-.986c-.104-.073-.32-.23-.433-.264-.153-.047-.243.023-.334.135-.047.055-.12.18-.216.11-.07-.05-.04-.13.002-.187.097-.135.2-.25.297-.387.1-.134.177-.28.27-.41.042-.062.103-.102.17-.053.094.065.01.165-.033.235-.06.097-.066.17.002.27.1.14.327.288.473.393l1.314.932c.162.117.34.27.503.066.052-.064.112-.167.204-.103.076.055.018.14-.023.197l-.527.744c-.118.17-.117.15-.323.16l-2.355.15 1.024.73v-.004zm-4.348 1.832c-.115-.127-.17-.17-.125-.352.076-.33.285-.64.518-.882.316-.33.762-.644 1.223-.717.484-.08 1.022.07 1.38.416.37.354.528.862.466 1.368-.067.5-.35.996-.697 1.356-.168.177-.4.36-.615.485-.128.07-.143.058-.267-.023l-.22-.15c-.043-.03-.084-.054-.12-.09-.04-.04-.034-.092.006-.132.165-.174.62.24 1.104-.263.237-.245.317-.603.26-.937-.067-.344-.284-.666-.53-.9-.24-.233-.562-.436-.895-.503-.357-.07-.726.01-.982.276-.14.146-.22.33-.236.527-.014.2.046.39.107.576.02.06.035.12-.012.17-.078.08-.162-.005-.215-.062l-.15-.16zm-1.125 1.135c-.193-.236-.258-.346-.543-.178-.063.033-.148.084-.204.014-.052-.063-.02-.113.03-.157.21-.17.422-.32.63-.49.19-.157.372-.33.563-.49.057-.046.107-.063.16-.003.05.064.01.136-.035.184-.23.26-.156.317.055.58l1.17 1.42c.202.244.265.367.556.2.055-.032.14-.094.193-.025.05.06.02.107-.033.153-.21.172-.424.32-.63.49-.192.157-.372.33-.563.485-.056.046-.108.07-.162.007-.053-.064.007-.125.048-.172.235-.27.15-.334-.07-.6L41.652 45.2v.003zm-1.292 3.245c-.046-.07-.118-.16-.022-.222.072-.05.14-.006.194.04.24.186.522.33.807.138.224-.147.395-.46.23-.71-.154-.23-.423-.177-.648-.112l-.27.072c-.522.147-1.01.154-1.343-.346-.183-.27-.2-.613-.113-.92.1-.334.333-.595.622-.787.206-.136.577-.31.82-.34.186-.02.21.04.306.186l.156.238c.047.066.174.22.068.29-.104.066-.21-.05-.28-.106-.132-.11-.238-.208-.41-.243-.198-.036-.394.036-.554.144-.27.182-.487.536-.28.85.23.35.676.2 1.016.132.436-.083.982-.167 1.27.267.38.566-.045 1.285-.543 1.614-.15.102-.46.24-.638.262-.11.012-.144-.065-.198-.147l-.196-.3.002-.002zm-4.445-.074c-.065-.157-.1-.216.005-.37.186-.285.49-.5.79-.646.412-.198.937-.338 1.396-.248.482.095.937.423 1.152.87.225.462.193.993-.042 1.446-.235.44-.674.81-1.12 1.026-.22.104-.504.196-.748.24-.145.02-.152.003-.238-.114l-.15-.22c-.033-.044-.063-.08-.086-.126-.023-.053 0-.1.05-.123.218-.106.498.44 1.128.14.31-.15.51-.46.565-.794.06-.346-.03-.72-.18-1.027-.147-.305-.382-.605-.67-.784-.31-.188-.683-.244-1.02-.082-.18.088-.317.233-.4.414-.085.185-.096.378-.103.577.002.062-.01.125-.068.153-.103.05-.15-.06-.18-.132l-.08-.204v.002zm-.82.13c.446.178.79.588.923 1.04.13.438.062.906-.162 1.302-.238.434-.61.71-1.084.85-.943.277-2.018-.064-2.314-1.077-.285-.968.34-1.875 1.27-2.148.41-.125.96-.13 1.368.03v.002zm-1.824 1.73c.176.592.744 1.492 1.48 1.275.638-.19.597-1.06.448-1.564-.102-.338-.273-.664-.516-.924-.247-.256-.598-.467-.966-.356-.638.188-.592 1.062-.443 1.567h-.002z" stroke="none"></path></g></svg>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M9.96008 14.755C9.79577 14.7556 9.63298 14.7236 9.48109 14.661C9.3292 14.5983 9.19121 14.5062 9.07508 14.39L1.57508 6.89C1.34036 6.65528 1.2085 6.33694 1.2085 6.005C1.2085 5.67306 1.34036 5.35471 1.57508 5.12C1.80979 4.88528 2.12814 4.75342 2.46008 4.75342C2.79201 4.75342 3.11036 4.88528 3.34508 5.12L9.96008 11.74L16.5751 5.12C16.8098 4.88528 17.1281 4.75342 17.4601 4.75342C17.792 4.75342 18.1104 4.88528 18.3451 5.12C18.5798 5.35471 18.7117 5.67306 18.7117 6.005C18.7117 6.33694 18.5798 6.65528 18.3451 6.89L10.8451 14.39C10.7289 14.5062 10.591 14.5983 10.4391 14.661C10.2872 14.7236 10.1244 14.7556 9.96008 14.755Z" fill="#1C3E57"/>
|
3
|
+
</svg>
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<svg width="135" height="29" viewBox="0 0 135 29" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M11.164 28.3909C8.82234 28.3909 6.81889 28.0396 5.15368 27.3371C3.48848 26.6346 2.22656 25.7109 1.36794 24.5661C0.509321 23.4213 0.0539908 22.1724 0.00195312 20.8194C0.00195312 20.6112 0.0800097 20.4291 0.236123 20.273C0.392236 20.0909 0.587377 19.9998 0.821547 19.9998H4.37312C4.65933 19.9998 4.8935 20.0648 5.07563 20.1949C5.25776 20.325 5.42688 20.5072 5.583 20.7413C5.84318 21.626 6.42861 22.3675 7.33927 22.966C8.27595 23.5644 9.55087 23.8636 11.164 23.8636C12.9854 23.8636 14.3513 23.5644 15.262 22.966C16.1987 22.3415 16.667 21.4959 16.667 20.4291C16.667 19.7266 16.4329 19.1412 15.9645 18.6728C15.4962 18.2045 14.7807 17.8012 13.818 17.463C12.8813 17.0987 11.4763 16.6694 9.60291 16.175C6.53268 15.4465 4.28205 14.4838 2.85102 13.2869C1.41998 12.0901 0.704462 10.3728 0.704462 8.13521C0.704462 6.62612 1.12076 5.28615 1.95337 4.1153C2.78597 2.91843 3.96983 1.98175 5.50494 1.30526C7.06607 0.628773 8.87438 0.290527 10.9299 0.290527C13.0894 0.290527 14.9498 0.6678 16.5109 1.42235C18.0981 2.17689 19.2949 3.12658 20.1015 4.27141C20.9341 5.39022 21.3764 6.50903 21.4285 7.62784C21.4285 7.83599 21.3504 8.03113 21.1943 8.21327C21.0382 8.36938 20.8431 8.44743 20.6089 8.44743H16.9012C16.3288 8.44743 15.9385 8.21326 15.7303 7.74493C15.6003 6.91232 15.0929 6.22282 14.2082 5.67643C13.3236 5.10401 12.2308 4.81781 10.9299 4.81781C9.49883 4.81781 8.36701 5.091 7.53441 5.6374C6.72783 6.1838 6.32453 6.97737 6.32453 8.01812C6.32453 8.72063 6.53268 9.30606 6.94899 9.7744C7.36529 10.2427 8.01576 10.659 8.9004 11.0233C9.78504 11.3615 11.073 11.7518 12.7642 12.1941C15.0799 12.7145 16.9142 13.2999 18.2672 13.9504C19.6462 14.6009 20.6609 15.4205 21.3114 16.4092C21.9619 17.3979 22.2871 18.6598 22.2871 20.1949C22.2871 21.8862 21.8188 23.3562 20.8821 24.6051C19.9714 25.828 18.6705 26.7647 16.9792 27.4152C15.314 28.0656 13.3756 28.3909 11.164 28.3909Z" fill="#212123"/>
|
3
|
+
<path d="M28.6836 28.0006C28.4234 28.0006 28.2022 27.9095 28.0201 27.7274C27.838 27.5453 27.7469 27.3241 27.7469 27.0639V1.65652C27.7469 1.37031 27.825 1.13614 27.9811 0.954009C28.1632 0.771876 28.3974 0.680809 28.6836 0.680809H45.6609C45.9471 0.680809 46.1813 0.771876 46.3634 0.954009C46.5455 1.13614 46.6366 1.37031 46.6366 1.65652V4.46655C46.6366 4.72674 46.5455 4.9479 46.3634 5.13003C46.1813 5.31216 45.9471 5.40323 45.6609 5.40323H33.1718V12.7405H44.8803C45.1665 12.7405 45.4007 12.8316 45.5828 13.0137C45.765 13.1959 45.856 13.417 45.856 13.6772V16.4873C45.856 16.7474 45.765 16.9686 45.5828 17.1507C45.4007 17.3329 45.1665 17.4239 44.8803 17.4239H33.1718V27.0639C33.1718 27.3241 33.0808 27.5453 32.8986 27.7274C32.7165 27.9095 32.4823 28.0006 32.1961 28.0006H28.6836Z" fill="#212123"/>
|
4
|
+
<path d="M50.8613 28.0006C50.6011 28.0006 50.3929 27.9225 50.2368 27.7664C50.0807 27.6103 50.0027 27.4022 50.0027 27.142V25.2686C50.0027 25.0084 50.0807 24.8003 50.2368 24.6442C50.3929 24.462 50.6011 24.371 50.8613 24.371H52.7346C52.9948 24.371 53.203 24.462 53.3591 24.6442C53.5412 24.8003 53.6323 25.0084 53.6323 25.2686V27.142C53.6323 27.4022 53.5412 27.6103 53.3591 27.7664C53.203 27.9225 52.9948 28.0006 52.7346 28.0006H50.8613Z" fill="#212123"/>
|
5
|
+
<path d="M69.4887 28.3909C66.2364 28.3909 63.7126 27.4542 61.9173 25.5808C60.1219 23.7075 59.1723 21.1967 59.0682 18.0484C59.0422 17.2678 59.0292 16.0319 59.0292 14.3407C59.0292 12.6495 59.0422 11.4136 59.0682 10.633C59.1723 7.48474 60.1219 4.97392 61.9173 3.10056C63.7126 1.22721 66.2364 0.290527 69.4887 0.290527C71.7003 0.290527 73.5607 0.706829 75.0698 1.53943C76.5789 2.37204 77.6977 3.36075 78.4262 4.50558C79.1808 5.62439 79.584 6.62612 79.6361 7.51076V7.58881C79.6361 7.79696 79.558 7.96609 79.4019 8.09618C79.2458 8.22628 79.0507 8.29132 78.8165 8.29132H77.9579C77.7237 8.29132 77.5546 8.23928 77.4505 8.13521C77.3464 8.03113 77.2424 7.82298 77.1383 7.51076C76.696 6.13176 75.8373 4.97392 74.5624 4.03724C73.3135 3.10056 71.6223 2.63222 69.4887 2.63222C67.069 2.63222 65.1566 3.2957 63.7516 4.62266C62.3726 5.94963 61.631 8.01812 61.527 10.8282C61.5009 11.6087 61.4879 12.7796 61.4879 14.3407C61.4879 15.9018 61.5009 17.0727 61.527 17.8532C61.631 20.6633 62.3726 22.7318 63.7516 24.0587C65.1566 25.3857 67.069 26.0492 69.4887 26.0492C71.9085 26.0492 73.8599 25.3597 75.343 23.9807C76.826 22.6017 77.5676 20.5592 77.5676 17.8532V15.8628H70.7767C70.5165 15.8628 70.3083 15.7847 70.1522 15.6286C69.9961 15.4465 69.9181 15.2253 69.9181 14.9652V14.4188C69.9181 14.1586 69.9961 13.9504 70.1522 13.7943C70.3083 13.6122 70.5165 13.5211 70.7767 13.5211H79.1287C79.4149 13.5211 79.6361 13.5992 79.7922 13.7553C79.9483 13.9114 80.0264 14.1326 80.0264 14.4188V17.8532C80.0264 19.9348 79.6101 21.7691 78.7775 23.3562C77.9449 24.9434 76.735 26.1793 75.1478 27.0639C73.5607 27.9486 71.6743 28.3909 69.4887 28.3909Z" fill="#212123"/>
|
6
|
+
<path d="M96.3159 28.3909C89.6291 28.3909 86.1946 24.8003 86.0125 17.6191C85.9864 16.8385 85.9734 15.7457 85.9734 14.3407C85.9734 12.9357 85.9864 11.8429 86.0125 11.0623C86.1165 7.52377 87.0792 4.84382 88.9006 3.02251C90.7219 1.20119 93.1937 0.290527 96.3159 0.290527C99.4382 0.290527 101.91 1.20119 103.731 3.02251C105.553 4.84382 106.515 7.52377 106.619 11.0623C106.671 12.6235 106.697 13.7163 106.697 14.3407C106.697 14.9652 106.671 16.0579 106.619 17.6191C106.437 24.8003 103.003 28.3909 96.3159 28.3909ZM96.3159 26.0492C98.6576 26.0492 100.518 25.3467 101.897 23.9417C103.302 22.5106 104.057 20.338 104.161 17.4239C104.213 15.8628 104.239 14.8351 104.239 14.3407C104.239 13.8463 104.213 12.8186 104.161 11.2575C104.057 8.34336 103.302 6.1838 101.897 4.77878C100.492 3.34774 98.6316 2.63222 96.3159 2.63222C94.0002 2.63222 92.1399 3.34774 90.7349 4.77878C89.3299 6.1838 88.5753 8.34336 88.4712 11.2575C88.4452 12.038 88.4322 13.0658 88.4322 14.3407C88.4322 15.6156 88.4452 16.6434 88.4712 17.4239C88.5753 20.338 89.3169 22.5106 90.6959 23.9417C92.1009 25.3467 93.9742 26.0492 96.3159 26.0492Z" fill="#212123"/>
|
7
|
+
<path d="M122.472 28.0006C121.822 28.0006 121.379 27.6884 121.145 27.0639L112.091 1.89069L112.013 1.46138C112.013 1.25323 112.091 1.07109 112.247 0.914981C112.403 0.758867 112.585 0.680809 112.793 0.680809H113.613C113.847 0.680809 114.029 0.745857 114.159 0.875951C114.315 1.00605 114.419 1.13614 114.471 1.26623L123.019 25.1515L131.566 1.26623C131.618 1.13614 131.709 1.00605 131.839 0.875951C131.995 0.745857 132.19 0.680809 132.424 0.680809H133.244C133.452 0.680809 133.634 0.758867 133.79 0.914981C133.946 1.07109 134.024 1.25323 134.024 1.46138L133.946 1.89069L124.892 27.0639C124.658 27.6884 124.215 28.0006 123.565 28.0006H122.472Z" fill="#212123"/>
|
8
|
+
</svg>
|
data/assets/js/jquery.js
ADDED
@@ -0,0 +1,2 @@
|
|
1
|
+
/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/license */
|
2
|
+
!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],E=C.document,r=Object.getPrototypeOf,s=t.slice,g=t.concat,u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.4.1",k=function(e,t){return new k.fn.init(e,t)},p=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;function d(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0<t&&t-1 in e)}k.fn=k.prototype={jquery:f,constructor:k,length:0,toArray:function(){return s.call(this)},get:function(e){return null==e?s.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=k.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return k.each(this,e)},map:function(n){return this.pushStack(k.map(this,function(e,t){return n.call(e,t,e)}))},slice:function(){return this.pushStack(s.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(0<=n&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:u,sort:t.sort,splice:t.splice},k.extend=k.fn.extend=function(){var e,t,n,r,i,o,a=arguments[0]||{},s=1,u=arguments.length,l=!1;for("boolean"==typeof a&&(l=a,a=arguments[s]||{},s++),"object"==typeof a||m(a)||(a={}),s===u&&(a=this,s--);s<u;s++)if(null!=(e=arguments[s]))for(t in e)r=e[t],"__proto__"!==t&&a!==r&&(l&&r&&(k.isPlainObject(r)||(i=Array.isArray(r)))?(n=a[t],o=i&&!Array.isArray(n)?[]:i||k.isPlainObject(n)?n:{},i=!1,a[t]=k.extend(l,o,r)):void 0!==r&&(a[t]=r));return a},k.extend({expando:"jQuery"+(f+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||"[object Object]"!==o.call(e))&&(!(t=r(e))||"function"==typeof(n=v.call(t,"constructor")&&t.constructor)&&a.call(n)===l)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e,t){b(e,{nonce:t&&t.nonce})},each:function(e,t){var n,r=0;if(d(e)){for(n=e.length;r<n;r++)if(!1===t.call(e[r],r,e[r]))break}else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},trim:function(e){return null==e?"":(e+"").replace(p,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(d(Object(e))?k.merge(n,"string"==typeof e?[e]:e):u.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:i.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r<n;r++)e[i++]=t[r];return e.length=i,e},grep:function(e,t,n){for(var r=[],i=0,o=e.length,a=!n;i<o;i++)!t(e[i],i)!==a&&r.push(e[i]);return r},map:function(e,t,n){var r,i,o=0,a=[];if(d(e))for(r=e.length;o<r;o++)null!=(i=t(e[o],o,n))&&a.push(i);else for(o in e)null!=(i=t(e[o],o,n))&&a.push(i);return g.apply([],a)},guid:1,support:y}),"function"==typeof Symbol&&(k.fn[Symbol.iterator]=t[Symbol.iterator]),k.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(e,t){n["[object "+t+"]"]=t.toLowerCase()});var h=function(n){var e,d,b,o,i,h,f,g,w,u,l,T,C,a,E,v,s,c,y,k="sizzle"+1*new Date,m=n.document,S=0,r=0,p=ue(),x=ue(),N=ue(),A=ue(),D=function(e,t){return e===t&&(l=!0),0},j={}.hasOwnProperty,t=[],q=t.pop,L=t.push,H=t.push,O=t.slice,P=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},R="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",I="(?:\\\\.|[\\w-]|[^\0-\\xa0])+",W="\\["+M+"*("+I+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+I+"))|)"+M+"*\\]",$=":("+I+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+W+")*)|.*)\\)|)",F=new RegExp(M+"+","g"),B=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),_=new RegExp("^"+M+"*,"+M+"*"),z=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp($),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+$),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),ne=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(m.childNodes),m.childNodes),t[m.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&((e?e.ownerDocument||e:m)!==C&&T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!A[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&U.test(t)){(s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=k),o=(l=h(t)).length;while(o--)l[o]="#"+s+" "+xe(l[o]);c=l.join(","),f=ee.test(t)&&ye(e.parentNode)||e}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){A(t,!0)}finally{s===k&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[k]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:m;return r!==C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),m!==C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=k,!C.getElementsByName||!C.getElementsByName(k).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){a.appendChild(e).innerHTML="<a id='"+k+"'></a><select id='"+k+"-\r\\' msallowcapture=''><option selected=''></option></select>",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+k+"-]").length||v.push("~="),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+k+"+*").length||v.push(".#.+[+~]")}),ce(function(e){e.innerHTML="<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",$)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e===C||e.ownerDocument===m&&y(m,e)?-1:t===C||t.ownerDocument===m&&y(m,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===C?-1:t===C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]===m?-1:s[r]===m?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if((e.ownerDocument||e)!==C&&T(e),d.matchesSelector&&E&&!A[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){A(t,!0)}return 0<se(t,C,null,[e]).length},se.contains=function(e,t){return(e.ownerDocument||e)!==C&&T(e),y(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!==C&&T(e);var n=b.attrHandle[t.toLowerCase()],r=n&&j.call(b.attrHandle,t.toLowerCase())?n(e,t,!E):void 0;return void 0!==r?r:d.attributes||!E?e.getAttribute(t):(r=e.getAttributeNode(t))&&r.specified?r.value:null},se.escape=function(e){return(e+"").replace(re,ie)},se.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},se.uniqueSort=function(e){var t,n=[],r=0,i=0;if(l=!d.detectDuplicates,u=!d.sortStable&&e.slice(0),e.sort(D),l){while(t=e[i++])t===e[i]&&(r=n.push(i));while(r--)e.splice(n[r],1)}return u=null,e},o=se.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else while(t=e[r++])n+=o(t);return n},(b=se.selectors={cacheLength:50,createPseudo:le,match:G,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=p[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&p(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1<t.indexOf(i):"$="===r?i&&t.slice(-i.length)===i:"~="===r?-1<(" "+t.replace(F," ")+" ").indexOf(i):"|="===r&&(t===i||t.slice(0,i.length+1)===i+"-"))}},CHILD:function(h,e,t,g,v){var y="nth"!==h.slice(0,3),m="last"!==h.slice(-4),x="of-type"===e;return 1===g&&0===v?function(e){return!!e.parentNode}:function(e,t,n){var r,i,o,a,s,u,l=y!==m?"nextSibling":"previousSibling",c=e.parentNode,f=x&&e.nodeName.toLowerCase(),p=!n&&!x,d=!1;if(c){if(y){while(l){a=e;while(a=a[l])if(x?a.nodeName.toLowerCase()===f:1===a.nodeType)return!1;u=l="only"===h&&!u&&"nextSibling"}return!0}if(u=[m?c.firstChild:c.lastChild],m&&p){d=(s=(r=(i=(o=(a=c)[k]||(a[k]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===S&&r[1])&&r[2],a=s&&c.childNodes[s];while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if(1===a.nodeType&&++d&&a===e){i[h]=[S,s,d];break}}else if(p&&(d=s=(r=(i=(o=(a=e)[k]||(a[k]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===S&&r[1]),!1===d)while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if((x?a.nodeName.toLowerCase()===f:1===a.nodeType)&&++d&&(p&&((i=(o=a[k]||(a[k]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]=[S,d]),a===e))break;return(d-=v)===g||d%g==0&&0<=d/g}}},PSEUDO:function(e,o){var t,a=b.pseudos[e]||b.setFilters[e.toLowerCase()]||se.error("unsupported pseudo: "+e);return a[k]?a(o):1<a.length?(t=[e,e,"",o],b.setFilters.hasOwnProperty(e.toLowerCase())?le(function(e,t){var n,r=a(e,o),i=r.length;while(i--)e[n=P(e,r[i])]=!(t[n]=r[i])}):function(e){return a(e,0,t)}):a}},pseudos:{not:le(function(e){var r=[],i=[],s=f(e.replace(B,"$1"));return s[k]?le(function(e,t,n,r){var i,o=s(e,null,r,[]),a=e.length;while(a--)(i=o[a])&&(e[a]=!(t[a]=i))}):function(e,t,n){return r[0]=e,s(r,null,n,i),r[0]=null,!i.pop()}}),has:le(function(t){return function(e){return 0<se(t,e).length}}),contains:le(function(t){return t=t.replace(te,ne),function(e){return-1<(e.textContent||o(e)).indexOf(t)}}),lang:le(function(n){return V.test(n||"")||se.error("unsupported lang: "+n),n=n.replace(te,ne).toLowerCase(),function(e){var t;do{if(t=E?e.lang:e.getAttribute("xml:lang")||e.getAttribute("lang"))return(t=t.toLowerCase())===n||0===t.indexOf(n+"-")}while((e=e.parentNode)&&1===e.nodeType);return!1}}),target:function(e){var t=n.location&&n.location.hash;return t&&t.slice(1)===e.id},root:function(e){return e===a},focus:function(e){return e===C.activeElement&&(!C.hasFocus||C.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ge(!1),disabled:ge(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!b.pseudos.empty(e)},header:function(e){return J.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:ve(function(){return[0]}),last:ve(function(e,t){return[t-1]}),eq:ve(function(e,t,n){return[n<0?n+t:n]}),even:ve(function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e}),odd:ve(function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e}),lt:ve(function(e,t,n){for(var r=n<0?n+t:t<n?t:n;0<=--r;)e.push(r);return e}),gt:ve(function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e})}}).pseudos.nth=b.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})b.pseudos[e]=de(e);for(e in{submit:!0,reset:!0})b.pseudos[e]=he(e);function me(){}function xe(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function be(s,e,t){var u=e.dir,l=e.next,c=l||u,f=t&&"parentNode"===c,p=r++;return e.first?function(e,t,n){while(e=e[u])if(1===e.nodeType||f)return s(e,t,n);return!1}:function(e,t,n){var r,i,o,a=[S,p];if(n){while(e=e[u])if((1===e.nodeType||f)&&s(e,t,n))return!0}else while(e=e[u])if(1===e.nodeType||f)if(i=(o=e[k]||(e[k]={}))[e.uniqueID]||(o[e.uniqueID]={}),l&&l===e.nodeName.toLowerCase())e=e[u]||e;else{if((r=i[c])&&r[0]===S&&r[1]===p)return a[2]=r[2];if((i[c]=a)[2]=s(e,t,n))return!0}return!1}}function we(i){return 1<i.length?function(e,t,n){var r=i.length;while(r--)if(!i[r](e,t,n))return!1;return!0}:i[0]}function Te(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s<u;s++)(o=e[s])&&(n&&!n(o,r,i)||(a.push(o),l&&t.push(s)));return a}function Ce(d,h,g,v,y,e){return v&&!v[k]&&(v=Ce(v)),y&&!y[k]&&(y=Ce(y,e)),le(function(e,t,n,r){var i,o,a,s=[],u=[],l=t.length,c=e||function(e,t,n){for(var r=0,i=t.length;r<i;r++)se(e,t[r],n);return n}(h||"*",n.nodeType?[n]:n,[]),f=!d||!e&&h?c:Te(c,s,d,n,r),p=g?y||(e?d:l||v)?[]:t:f;if(g&&g(f,p,n,r),v){i=Te(p,u),v(i,[],n,r),o=i.length;while(o--)(a=i[o])&&(p[u[o]]=!(f[u[o]]=a))}if(e){if(y||d){if(y){i=[],o=p.length;while(o--)(a=p[o])&&i.push(f[o]=a);y(null,p=[],i,r)}o=p.length;while(o--)(a=p[o])&&-1<(i=y?P(e,a):s[o])&&(e[i]=!(t[i]=a))}}else p=Te(p===t?p.splice(l,p.length):p),y?y(null,t,p,r):H.apply(t,p)})}function Ee(e){for(var i,t,n,r=e.length,o=b.relative[e[0].type],a=o||b.relative[" "],s=o?1:0,u=be(function(e){return e===i},a,!0),l=be(function(e){return-1<P(i,e)},a,!0),c=[function(e,t,n){var r=!o&&(n||t!==w)||((i=t).nodeType?u(e,t,n):l(e,t,n));return i=null,r}];s<r;s++)if(t=b.relative[e[s].type])c=[be(we(c),t)];else{if((t=b.filter[e[s].type].apply(null,e[s].matches))[k]){for(n=++s;n<r;n++)if(b.relative[e[n].type])break;return Ce(1<s&&we(c),1<s&&xe(e.slice(0,s-1).concat({value:" "===e[s-2].type?"*":""})).replace(B,"$1"),t,s<n&&Ee(e.slice(s,n)),n<r&&Ee(e=e.slice(n)),n<r&&xe(e))}c.push(t)}return we(c)}return me.prototype=b.filters=b.pseudos,b.setFilters=new me,h=se.tokenize=function(e,t){var n,r,i,o,a,s,u,l=x[e+" "];if(l)return t?0:l.slice(0);a=e,s=[],u=b.preFilter;while(a){for(o in n&&!(r=_.exec(a))||(r&&(a=a.slice(r[0].length)||a),s.push(i=[])),n=!1,(r=z.exec(a))&&(n=r.shift(),i.push({value:n,type:r[0].replace(B," ")}),a=a.slice(n.length)),b.filter)!(r=G[o].exec(a))||u[o]&&!(r=u[o](r))||(n=r.shift(),i.push({value:n,type:o,matches:r}),a=a.slice(n.length));if(!n)break}return t?a.length:a?se.error(e):x(e,s).slice(0)},f=se.compile=function(e,t){var n,v,y,m,x,r,i=[],o=[],a=N[e+" "];if(!a){t||(t=h(e)),n=t.length;while(n--)(a=Ee(t[n]))[k]?i.push(a):o.push(a);(a=N(e,(v=o,m=0<(y=i).length,x=0<v.length,r=function(e,t,n,r,i){var o,a,s,u=0,l="0",c=e&&[],f=[],p=w,d=e||x&&b.find.TAG("*",i),h=S+=null==p?1:Math.random()||.1,g=d.length;for(i&&(w=t===C||t||i);l!==g&&null!=(o=d[l]);l++){if(x&&o){a=0,t||o.ownerDocument===C||(T(o),n=!E);while(s=v[a++])if(s(o,t||C,n)){r.push(o);break}i&&(S=h)}m&&((o=!s&&o)&&u--,e&&c.push(o))}if(u+=l,m&&l!==u){a=0;while(s=y[a++])s(c,f,t,n);if(e){if(0<u)while(l--)c[l]||f[l]||(f[l]=q.call(r));f=Te(f)}H.apply(r,f),i&&!e&&0<f.length&&1<u+y.length&&se.uniqueSort(r)}return i&&(S=h,w=p),c},m?le(r):r))).selector=e}return a},g=se.select=function(e,t,n,r){var i,o,a,s,u,l="function"==typeof e&&e,c=!r&&h(e=l.selector||e);if(n=n||[],1===c.length){if(2<(o=c[0]=c[0].slice(0)).length&&"ID"===(a=o[0]).type&&9===t.nodeType&&E&&b.relative[o[1].type]){if(!(t=(b.find.ID(a.matches[0].replace(te,ne),t)||[])[0]))return n;l&&(t=t.parentNode),e=e.slice(o.shift().value.length)}i=G.needsContext.test(e)?0:o.length;while(i--){if(a=o[i],b.relative[s=a.type])break;if((u=b.find[s])&&(r=u(a.matches[0].replace(te,ne),ee.test(o[0].type)&&ye(t.parentNode)||t))){if(o.splice(i,1),!(e=r.length&&xe(o)))return H.apply(n,r),n;break}}}return(l||f(e,c))(r,t,!E,n,!t||ee.test(e)&&ye(t.parentNode)||t),n},d.sortStable=k.split("").sort(D).join("")===k,d.detectDuplicates=!!l,T(),d.sortDetached=ce(function(e){return 1&e.compareDocumentPosition(C.createElement("fieldset"))}),ce(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||fe("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),d.attributes&&ce(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||fe("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),ce(function(e){return null==e.getAttribute("disabled")})||fe(R,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),se}(C);k.find=h,k.expr=h.selectors,k.expr[":"]=k.expr.pseudos,k.uniqueSort=k.unique=h.uniqueSort,k.text=h.getText,k.isXMLDoc=h.isXML,k.contains=h.contains,k.escapeSelector=h.escape;var T=function(e,t,n){var r=[],i=void 0!==n;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&k(e).is(n))break;r.push(e)}return r},S=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},N=k.expr.match.needsContext;function A(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var D=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?k.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?k.grep(e,function(e){return e===n!==r}):"string"!=typeof n?k.grep(e,function(e){return-1<i.call(n,e)!==r}):k.filter(n,e,r)}k.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?k.find.matchesSelector(r,e)?[r]:[]:k.find.matches(e,k.grep(t,function(e){return 1===e.nodeType}))},k.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(k(e).filter(function(){for(t=0;t<r;t++)if(k.contains(i[t],this))return!0}));for(n=this.pushStack([]),t=0;t<r;t++)k.find(e,i[t],n);return 1<r?k.uniqueSort(n):n},filter:function(e){return this.pushStack(j(this,e||[],!1))},not:function(e){return this.pushStack(j(this,e||[],!0))},is:function(e){return!!j(this,"string"==typeof e&&N.test(e)?k(e):e||[],!1).length}});var q,L=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(k.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||q,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:L.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof k?t[0]:t,k.merge(this,k.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),D.test(r[1])&&k.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(k):k.makeArray(e,this)}).prototype=k.fn,q=k(E);var H=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}k.fn.extend({has:function(e){var t=k(e,this),n=t.length;return this.filter(function(){for(var e=0;e<n;e++)if(k.contains(this,t[e]))return!0})},closest:function(e,t){var n,r=0,i=this.length,o=[],a="string"!=typeof e&&k(e);if(!N.test(e))for(;r<i;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?-1<a.index(n):1===n.nodeType&&k.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(1<o.length?k.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?i.call(k(e),this[0]):i.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(k.uniqueSort(k.merge(this.get(),k(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),k.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return T(e,"parentNode")},parentsUntil:function(e,t,n){return T(e,"parentNode",n)},next:function(e){return P(e,"nextSibling")},prev:function(e){return P(e,"previousSibling")},nextAll:function(e){return T(e,"nextSibling")},prevAll:function(e){return T(e,"previousSibling")},nextUntil:function(e,t,n){return T(e,"nextSibling",n)},prevUntil:function(e,t,n){return T(e,"previousSibling",n)},siblings:function(e){return S((e.parentNode||{}).firstChild,e)},children:function(e){return S(e.firstChild)},contents:function(e){return"undefined"!=typeof e.contentDocument?e.contentDocument:(A(e,"template")&&(e=e.content||e),k.merge([],e.childNodes))}},function(r,i){k.fn[r]=function(e,t){var n=k.map(this,i,e);return"Until"!==r.slice(-5)&&(t=e),t&&"string"==typeof t&&(n=k.filter(t,n)),1<this.length&&(O[r]||k.uniqueSort(n),H.test(r)&&n.reverse()),this.pushStack(n)}});var R=/[^\x20\t\r\n\f]+/g;function M(e){return e}function I(e){throw e}function W(e,t,n,r){var i;try{e&&m(i=e.promise)?i.call(e).done(t).fail(n):e&&m(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}k.Callbacks=function(r){var e,n;r="string"==typeof r?(e=r,n={},k.each(e.match(R)||[],function(e,t){n[t]=!0}),n):k.extend({},r);var i,t,o,a,s=[],u=[],l=-1,c=function(){for(a=a||r.once,o=i=!0;u.length;l=-1){t=u.shift();while(++l<s.length)!1===s[l].apply(t[0],t[1])&&r.stopOnFalse&&(l=s.length,t=!1)}r.memory||(t=!1),i=!1,a&&(s=t?[]:"")},f={add:function(){return s&&(t&&!i&&(l=s.length-1,u.push(t)),function n(e){k.each(e,function(e,t){m(t)?r.unique&&f.has(t)||s.push(t):t&&t.length&&"string"!==w(t)&&n(t)})}(arguments),t&&!i&&c()),this},remove:function(){return k.each(arguments,function(e,t){var n;while(-1<(n=k.inArray(t,s,n)))s.splice(n,1),n<=l&&l--}),this},has:function(e){return e?-1<k.inArray(e,s):0<s.length},empty:function(){return s&&(s=[]),this},disable:function(){return a=u=[],s=t="",this},disabled:function(){return!s},lock:function(){return a=u=[],t||i||(s=t=""),this},locked:function(){return!!a},fireWith:function(e,t){return a||(t=[e,(t=t||[]).slice?t.slice():t],u.push(t),i||c()),this},fire:function(){return f.fireWith(this,arguments),this},fired:function(){return!!o}};return f},k.extend({Deferred:function(e){var o=[["notify","progress",k.Callbacks("memory"),k.Callbacks("memory"),2],["resolve","done",k.Callbacks("once memory"),k.Callbacks("once memory"),0,"resolved"],["reject","fail",k.Callbacks("once memory"),k.Callbacks("once memory"),1,"rejected"]],i="pending",a={state:function(){return i},always:function(){return s.done(arguments).fail(arguments),this},"catch":function(e){return a.then(null,e)},pipe:function(){var i=arguments;return k.Deferred(function(r){k.each(o,function(e,t){var n=m(i[t[4]])&&i[t[4]];s[t[1]](function(){var e=n&&n.apply(this,arguments);e&&m(e.promise)?e.promise().progress(r.notify).done(r.resolve).fail(r.reject):r[t[0]+"With"](this,n?[e]:arguments)})}),i=null}).promise()},then:function(t,n,r){var u=0;function l(i,o,a,s){return function(){var n=this,r=arguments,e=function(){var e,t;if(!(i<u)){if((e=a.apply(n,r))===o.promise())throw new TypeError("Thenable self-resolution");t=e&&("object"==typeof e||"function"==typeof e)&&e.then,m(t)?s?t.call(e,l(u,o,M,s),l(u,o,I,s)):(u++,t.call(e,l(u,o,M,s),l(u,o,I,s),l(u,o,M,o.notifyWith))):(a!==M&&(n=void 0,r=[e]),(s||o.resolveWith)(n,r))}},t=s?e:function(){try{e()}catch(e){k.Deferred.exceptionHook&&k.Deferred.exceptionHook(e,t.stackTrace),u<=i+1&&(a!==I&&(n=void 0,r=[e]),o.rejectWith(n,r))}};i?t():(k.Deferred.getStackHook&&(t.stackTrace=k.Deferred.getStackHook()),C.setTimeout(t))}}return k.Deferred(function(e){o[0][3].add(l(0,e,m(r)?r:M,e.notifyWith)),o[1][3].add(l(0,e,m(t)?t:M)),o[2][3].add(l(0,e,m(n)?n:I))}).promise()},promise:function(e){return null!=e?k.extend(e,a):a}},s={};return k.each(o,function(e,t){var n=t[2],r=t[5];a[t[1]]=n.add,r&&n.add(function(){i=r},o[3-e][2].disable,o[3-e][3].disable,o[0][2].lock,o[0][3].lock),n.add(t[3].fire),s[t[0]]=function(){return s[t[0]+"With"](this===s?void 0:this,arguments),this},s[t[0]+"With"]=n.fireWith}),a.promise(s),e&&e.call(s,s),s},when:function(e){var n=arguments.length,t=n,r=Array(t),i=s.call(arguments),o=k.Deferred(),a=function(t){return function(e){r[t]=this,i[t]=1<arguments.length?s.call(arguments):e,--n||o.resolveWith(r,i)}};if(n<=1&&(W(e,o.done(a(t)).resolve,o.reject,!n),"pending"===o.state()||m(i[t]&&i[t].then)))return o.then();while(t--)W(i[t],a(t),o.reject);return o.promise()}});var $=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;k.Deferred.exceptionHook=function(e,t){C.console&&C.console.warn&&e&&$.test(e.name)&&C.console.warn("jQuery.Deferred exception: "+e.message,e.stack,t)},k.readyException=function(e){C.setTimeout(function(){throw e})};var F=k.Deferred();function B(){E.removeEventListener("DOMContentLoaded",B),C.removeEventListener("load",B),k.ready()}k.fn.ready=function(e){return F.then(e)["catch"](function(e){k.readyException(e)}),this},k.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--k.readyWait:k.isReady)||(k.isReady=!0)!==e&&0<--k.readyWait||F.resolveWith(E,[k])}}),k.ready.then=F.then,"complete"===E.readyState||"loading"!==E.readyState&&!E.documentElement.doScroll?C.setTimeout(k.ready):(E.addEventListener("DOMContentLoaded",B),C.addEventListener("load",B));var _=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===w(n))for(s in i=!0,n)_(e,t,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,m(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(k(e),n)})),t))for(;s<u;s++)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return i?e:l?t.call(e):u?t(e[0],n):o},z=/^-ms-/,U=/-([a-z])/g;function X(e,t){return t.toUpperCase()}function V(e){return e.replace(z,"ms-").replace(U,X)}var G=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function Y(){this.expando=k.expando+Y.uid++}Y.uid=1,Y.prototype={cache:function(e){var t=e[this.expando];return t||(t={},G(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if("string"==typeof t)i[V(t)]=n;else for(r in t)i[V(r)]=t[r];return i},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][V(t)]},access:function(e,t,n){return void 0===t||t&&"string"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r=e[this.expando];if(void 0!==r){if(void 0!==t){n=(t=Array.isArray(t)?t.map(V):(t=V(t))in r?[t]:t.match(R)||[]).length;while(n--)delete r[t[n]]}(void 0===t||k.isEmptyObject(r))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!k.isEmptyObject(t)}};var Q=new Y,J=new Y,K=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,Z=/[A-Z]/g;function ee(e,t,n){var r,i;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(Z,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(r))){try{n="true"===(i=n)||"false"!==i&&("null"===i?null:i===+i+""?+i:K.test(i)?JSON.parse(i):i)}catch(e){}J.set(e,t,n)}else n=void 0;return n}k.extend({hasData:function(e){return J.hasData(e)||Q.hasData(e)},data:function(e,t,n){return J.access(e,t,n)},removeData:function(e,t){J.remove(e,t)},_data:function(e,t,n){return Q.access(e,t,n)},_removeData:function(e,t){Q.remove(e,t)}}),k.fn.extend({data:function(n,e){var t,r,i,o=this[0],a=o&&o.attributes;if(void 0===n){if(this.length&&(i=J.get(o),1===o.nodeType&&!Q.get(o,"hasDataAttrs"))){t=a.length;while(t--)a[t]&&0===(r=a[t].name).indexOf("data-")&&(r=V(r.slice(5)),ee(o,r,i[r]));Q.set(o,"hasDataAttrs",!0)}return i}return"object"==typeof n?this.each(function(){J.set(this,n)}):_(this,function(e){var t;if(o&&void 0===e)return void 0!==(t=J.get(o,n))?t:void 0!==(t=ee(o,n))?t:void 0;this.each(function(){J.set(this,n,e)})},null,e,1<arguments.length,null,!0)},removeData:function(e){return this.each(function(){J.remove(this,e)})}}),k.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=Q.get(e,t),n&&(!r||Array.isArray(n)?r=Q.access(e,t,k.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=k.queue(e,t),r=n.length,i=n.shift(),o=k._queueHooks(e,t);"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,function(){k.dequeue(e,t)},o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return Q.get(e,n)||Q.access(e,n,{empty:k.Callbacks("once memory").add(function(){Q.remove(e,[t+"queue",n])})})}}),k.fn.extend({queue:function(t,n){var e=2;return"string"!=typeof t&&(n=t,t="fx",e--),arguments.length<e?k.queue(this[0],t):void 0===n?this:this.each(function(){var e=k.queue(this,t,n);k._queueHooks(this,t),"fx"===t&&"inprogress"!==e[0]&&k.dequeue(this,t)})},dequeue:function(e){return this.each(function(){k.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=k.Deferred(),o=this,a=this.length,s=function(){--r||i.resolveWith(o,[o])};"string"!=typeof e&&(t=e,e=void 0),e=e||"fx";while(a--)(n=Q.get(o[a],e+"queueHooks"))&&n.empty&&(r++,n.empty.add(s));return s(),i.promise(t)}});var te=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,ne=new RegExp("^(?:([+-])=|)("+te+")([a-z%]*)$","i"),re=["Top","Right","Bottom","Left"],ie=E.documentElement,oe=function(e){return k.contains(e.ownerDocument,e)},ae={composed:!0};ie.getRootNode&&(oe=function(e){return k.contains(e.ownerDocument,e)||e.getRootNode(ae)===e.ownerDocument});var se=function(e,t){return"none"===(e=t||e).style.display||""===e.style.display&&oe(e)&&"none"===k.css(e,"display")},ue=function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];for(o in i=n.apply(e,r||[]),t)e.style[o]=a[o];return i};function le(e,t,n,r){var i,o,a=20,s=r?function(){return r.cur()}:function(){return k.css(e,t,"")},u=s(),l=n&&n[3]||(k.cssNumber[t]?"":"px"),c=e.nodeType&&(k.cssNumber[t]||"px"!==l&&+u)&&ne.exec(k.css(e,t));if(c&&c[3]!==l){u/=2,l=l||c[3],c=+u||1;while(a--)k.style(e,t,c+l),(1-o)*(1-(o=s()/u||.5))<=0&&(a=0),c/=o;c*=2,k.style(e,t,c+l),n=n||[]}return n&&(c=+c||+u||0,i=n[1]?c+(n[1]+1)*n[2]:+n[2],r&&(r.unit=l,r.start=c,r.end=i)),i}var ce={};function fe(e,t){for(var n,r,i,o,a,s,u,l=[],c=0,f=e.length;c<f;c++)(r=e[c]).style&&(n=r.style.display,t?("none"===n&&(l[c]=Q.get(r,"display")||null,l[c]||(r.style.display="")),""===r.style.display&&se(r)&&(l[c]=(u=a=o=void 0,a=(i=r).ownerDocument,s=i.nodeName,(u=ce[s])||(o=a.body.appendChild(a.createElement(s)),u=k.css(o,"display"),o.parentNode.removeChild(o),"none"===u&&(u="block"),ce[s]=u)))):"none"!==n&&(l[c]="none",Q.set(r,"display",n)));for(c=0;c<f;c++)null!=l[c]&&(e[c].style.display=l[c]);return e}k.fn.extend({show:function(){return fe(this,!0)},hide:function(){return fe(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){se(this)?k(this).show():k(this).hide()})}});var pe=/^(?:checkbox|radio)$/i,de=/<([a-z][^\/\0>\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i,ge={option:[1,"<select multiple='multiple'>","</select>"],thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?k.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n<r;n++)Q.set(e[n],"globalEval",!t||Q.get(t[n],"globalEval"))}ge.optgroup=ge.option,ge.tbody=ge.tfoot=ge.colgroup=ge.caption=ge.thead,ge.th=ge.td;var me,xe,be=/<|&#?\w+;/;function we(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d<h;d++)if((o=e[d])||0===o)if("object"===w(o))k.merge(p,o.nodeType?[o]:o);else if(be.test(o)){a=a||f.appendChild(t.createElement("div")),s=(de.exec(o)||["",""])[1].toLowerCase(),u=ge[s]||ge._default,a.innerHTML=u[1]+k.htmlPrefilter(o)+u[2],c=u[0];while(c--)a=a.lastChild;k.merge(p,a.childNodes),(a=f.firstChild).textContent=""}else p.push(t.createTextNode(o));f.textContent="",d=0;while(o=p[d++])if(r&&-1<k.inArray(o,r))i&&i.push(o);else if(l=oe(o),a=ve(f.appendChild(o),"script"),l&&ye(a),n){c=0;while(o=a[c++])he.test(o.type||"")&&n.push(o)}return f}me=E.createDocumentFragment().appendChild(E.createElement("div")),(xe=E.createElement("input")).setAttribute("type","radio"),xe.setAttribute("checked","checked"),xe.setAttribute("name","t"),me.appendChild(xe),y.checkClone=me.cloneNode(!0).cloneNode(!0).lastChild.checked,me.innerHTML="<textarea>x</textarea>",y.noCloneChecked=!!me.cloneNode(!0).lastChild.defaultValue;var Te=/^key/,Ce=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ee=/^([^.]*)(?:\.(.+)|)/;function ke(){return!0}function Se(){return!1}function Ne(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==("focus"===t)}function Ae(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Ae(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Se;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return k().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=k.guid++)),e.each(function(){k.event.add(this,t,i,r,n)})}function De(e,i,o){o?(Q.set(e,i,!1),k.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Q.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(k.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Q.set(this,i,r),t=o(this,i),this[i](),r!==(n=Q.get(this,i))||t?Q.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n.value}else r.length&&(Q.set(this,i,{value:k.event.trigger(k.extend(r[0],k.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Q.get(e,i)&&k.event.add(e,i,ke)}k.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.get(t);if(v){n.handler&&(n=(o=n).handler,i=o.selector),i&&k.find.matchesSelector(ie,i),n.guid||(n.guid=k.guid++),(u=v.events)||(u=v.events={}),(a=v.handle)||(a=v.handle=function(e){return"undefined"!=typeof k&&k.event.triggered!==e.type?k.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(R)||[""]).length;while(l--)d=g=(s=Ee.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=k.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=k.event.special[d]||{},c=k.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&k.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),k.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.hasData(e)&&Q.get(e);if(v&&(u=v.events)){l=(t=(t||"").match(R)||[""]).length;while(l--)if(d=g=(s=Ee.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){f=k.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||k.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)k.event.remove(e,d+t[l],n,r,!0);k.isEmptyObject(u)&&Q.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=k.event.fix(e),u=new Array(arguments.length),l=(Q.get(this,"events")||{})[s.type]||[],c=k.event.special[s.type]||{};for(u[0]=s,t=1;t<arguments.length;t++)u[t]=arguments[t];if(s.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,s)){a=k.event.handlers.call(this,s,l),t=0;while((i=a[t++])&&!s.isPropagationStopped()){s.currentTarget=i.elem,n=0;while((o=i.handlers[n++])&&!s.isImmediatePropagationStopped())s.rnamespace&&!1!==o.namespace&&!s.rnamespace.test(o.namespace)||(s.handleObj=o,s.data=o.data,void 0!==(r=((k.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,u))&&!1===(s.result=r)&&(s.preventDefault(),s.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,s),s.result}},handlers:function(e,t){var n,r,i,o,a,s=[],u=t.delegateCount,l=e.target;if(u&&l.nodeType&&!("click"===e.type&&1<=e.button))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n<u;n++)void 0===a[i=(r=t[n]).selector+" "]&&(a[i]=r.needsContext?-1<k(i,this).index(l):k.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u<t.length&&s.push({elem:l,handlers:t.slice(u)}),s},addProp:function(t,e){Object.defineProperty(k.Event.prototype,t,{enumerable:!0,configurable:!0,get:m(e)?function(){if(this.originalEvent)return e(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[t]},set:function(e){Object.defineProperty(this,t,{enumerable:!0,configurable:!0,writable:!0,value:e})}})},fix:function(e){return e[k.expando]?e:new k.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&De(t,"click",ke),!1},trigger:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&De(t,"click"),!0},_default:function(e){var t=e.target;return pe.test(t.type)&&t.click&&A(t,"input")&&Q.get(t,"click")||A(t,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},k.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},k.Event=function(e,t){if(!(this instanceof k.Event))return new k.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?ke:Se,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&k.extend(this,t),this.timeStamp=e&&e.timeStamp||Date.now(),this[k.expando]=!0},k.Event.prototype={constructor:k.Event,isDefaultPrevented:Se,isPropagationStopped:Se,isImmediatePropagationStopped:Se,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=ke,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=ke,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=ke,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},k.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,"char":!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:function(e){var t=e.button;return null==e.which&&Te.test(e.type)?null!=e.charCode?e.charCode:e.keyCode:!e.which&&void 0!==t&&Ce.test(e.type)?1&t?1:2&t?3:4&t?2:0:e.which}},k.event.addProp),k.each({focus:"focusin",blur:"focusout"},function(e,t){k.event.special[e]={setup:function(){return De(this,e,Ne),!1},trigger:function(){return De(this,e),!0},delegateType:t}}),k.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(e,i){k.event.special[e]={delegateType:i,bindType:i,handle:function(e){var t,n=e.relatedTarget,r=e.handleObj;return n&&(n===this||k.contains(this,n))||(e.type=r.origType,t=r.handler.apply(this,arguments),e.type=i),t}}}),k.fn.extend({on:function(e,t,n,r){return Ae(this,e,t,n,r)},one:function(e,t,n,r){return Ae(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,k(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=Se),this.each(function(){k.event.remove(this,e,n,t)})}});var je=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi,qe=/<script|<style|<link/i,Le=/checked\s*(?:[^=]|=\s*.checked.)/i,He=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;function Oe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&k(e).children("tbody")[0]||e}function Pe(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Re(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Me(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(Q.hasData(e)&&(o=Q.access(e),a=Q.set(t,o),l=o.events))for(i in delete a.handle,a.events={},l)for(n=0,r=l[i].length;n<r;n++)k.event.add(t,i,l[i][n]);J.hasData(e)&&(s=J.access(e),u=k.extend({},s),J.set(t,u))}}function Ie(n,r,i,o){r=g.apply([],r);var e,t,a,s,u,l,c=0,f=n.length,p=f-1,d=r[0],h=m(d);if(h||1<f&&"string"==typeof d&&!y.checkClone&&Le.test(d))return n.each(function(e){var t=n.eq(e);h&&(r[0]=d.call(this,e,t.html())),Ie(t,r,i,o)});if(f&&(t=(e=we(r,n[0].ownerDocument,!1,n,o)).firstChild,1===e.childNodes.length&&(e=t),t||o)){for(s=(a=k.map(ve(e,"script"),Pe)).length;c<f;c++)u=e,c!==p&&(u=k.clone(u,!0,!0),s&&k.merge(a,ve(u,"script"))),i.call(n[c],u,c);if(s)for(l=a[a.length-1].ownerDocument,k.map(a,Re),c=0;c<s;c++)u=a[c],he.test(u.type||"")&&!Q.access(u,"globalEval")&&k.contains(l,u)&&(u.src&&"module"!==(u.type||"").toLowerCase()?k._evalUrl&&!u.noModule&&k._evalUrl(u.src,{nonce:u.nonce||u.getAttribute("nonce")}):b(u.textContent.replace(He,""),u,l))}return n}function We(e,t,n){for(var r,i=t?k.filter(t,e):e,o=0;null!=(r=i[o]);o++)n||1!==r.nodeType||k.cleanData(ve(r)),r.parentNode&&(n&&oe(r)&&ye(ve(r,"script")),r.parentNode.removeChild(r));return e}k.extend({htmlPrefilter:function(e){return e.replace(je,"<$1></$2>")},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=oe(e);if(!(y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||k.isXMLDoc(e)))for(a=ve(c),r=0,i=(o=ve(e)).length;r<i;r++)s=o[r],u=a[r],void 0,"input"===(l=u.nodeName.toLowerCase())&&pe.test(s.type)?u.checked=s.checked:"input"!==l&&"textarea"!==l||(u.defaultValue=s.defaultValue);if(t)if(n)for(o=o||ve(e),a=a||ve(c),r=0,i=o.length;r<i;r++)Me(o[r],a[r]);else Me(e,c);return 0<(a=ve(c,"script")).length&&ye(a,!f&&ve(e,"script")),c},cleanData:function(e){for(var t,n,r,i=k.event.special,o=0;void 0!==(n=e[o]);o++)if(G(n)){if(t=n[Q.expando]){if(t.events)for(r in t.events)i[r]?k.event.remove(n,r):k.removeEvent(n,r,t.handle);n[Q.expando]=void 0}n[J.expando]&&(n[J.expando]=void 0)}}}),k.fn.extend({detach:function(e){return We(this,e,!0)},remove:function(e){return We(this,e)},text:function(e){return _(this,function(e){return void 0===e?k.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return Ie(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||Oe(this,e).appendChild(e)})},prepend:function(){return Ie(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Oe(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return Ie(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return Ie(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(k.cleanData(ve(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return k.clone(this,e,t)})},html:function(e){return _(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!qe.test(e)&&!ge[(de.exec(e)||["",""])[1].toLowerCase()]){e=k.htmlPrefilter(e);try{for(;n<r;n++)1===(t=this[n]||{}).nodeType&&(k.cleanData(ve(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var n=[];return Ie(this,arguments,function(e){var t=this.parentNode;k.inArray(this,n)<0&&(k.cleanData(ve(this)),t&&t.replaceChild(e,this))},n)}}),k.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,a){k.fn[e]=function(e){for(var t,n=[],r=k(e),i=r.length-1,o=0;o<=i;o++)t=o===i?this:this.clone(!0),k(r[o])[a](t),u.apply(n,t.get());return this.pushStack(n)}});var $e=new RegExp("^("+te+")(?!px)[a-z%]+$","i"),Fe=function(e){var t=e.ownerDocument.defaultView;return t&&t.opener||(t=C),t.getComputedStyle(e)},Be=new RegExp(re.join("|"),"i");function _e(e,t,n){var r,i,o,a,s=e.style;return(n=n||Fe(e))&&(""!==(a=n.getPropertyValue(t)||n[t])||oe(e)||(a=k.style(e,t)),!y.pixelBoxStyles()&&$e.test(a)&&Be.test(t)&&(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=r,s.minWidth=i,s.maxWidth=o)),void 0!==a?a+"":a}function ze(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}!function(){function e(){if(u){s.style.cssText="position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0",u.style.cssText="position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%",ie.appendChild(s).appendChild(u);var e=C.getComputedStyle(u);n="1%"!==e.top,a=12===t(e.marginLeft),u.style.right="60%",o=36===t(e.right),r=36===t(e.width),u.style.position="absolute",i=12===t(u.offsetWidth/3),ie.removeChild(s),u=null}}function t(e){return Math.round(parseFloat(e))}var n,r,i,o,a,s=E.createElement("div"),u=E.createElement("div");u.style&&(u.style.backgroundClip="content-box",u.cloneNode(!0).style.backgroundClip="",y.clearCloneStyle="content-box"===u.style.backgroundClip,k.extend(y,{boxSizingReliable:function(){return e(),r},pixelBoxStyles:function(){return e(),o},pixelPosition:function(){return e(),n},reliableMarginLeft:function(){return e(),a},scrollboxSize:function(){return e(),i}}))}();var Ue=["Webkit","Moz","ms"],Xe=E.createElement("div").style,Ve={};function Ge(e){var t=k.cssProps[e]||Ve[e];return t||(e in Xe?e:Ve[e]=function(e){var t=e[0].toUpperCase()+e.slice(1),n=Ue.length;while(n--)if((e=Ue[n]+t)in Xe)return e}(e)||e)}var Ye=/^(none|table(?!-c[ea]).+)/,Qe=/^--/,Je={position:"absolute",visibility:"hidden",display:"block"},Ke={letterSpacing:"0",fontWeight:"400"};function Ze(e,t,n){var r=ne.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function et(e,t,n,r,i,o){var a="width"===t?1:0,s=0,u=0;if(n===(r?"border":"content"))return 0;for(;a<4;a+=2)"margin"===n&&(u+=k.css(e,n+re[a],!0,i)),r?("content"===n&&(u-=k.css(e,"padding"+re[a],!0,i)),"margin"!==n&&(u-=k.css(e,"border"+re[a]+"Width",!0,i))):(u+=k.css(e,"padding"+re[a],!0,i),"padding"!==n?u+=k.css(e,"border"+re[a]+"Width",!0,i):s+=k.css(e,"border"+re[a]+"Width",!0,i));return!r&&0<=o&&(u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))||0),u}function tt(e,t,n){var r=Fe(e),i=(!y.boxSizingReliable()||n)&&"border-box"===k.css(e,"boxSizing",!1,r),o=i,a=_e(e,t,r),s="offset"+t[0].toUpperCase()+t.slice(1);if($e.test(a)){if(!n)return a;a="auto"}return(!y.boxSizingReliable()&&i||"auto"===a||!parseFloat(a)&&"inline"===k.css(e,"display",!1,r))&&e.getClientRects().length&&(i="border-box"===k.css(e,"boxSizing",!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+et(e,t,n||(i?"border":"content"),o,r,a)+"px"}function nt(e,t,n,r,i){return new nt.prototype.init(e,t,n,r,i)}k.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=_e(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=V(t),u=Qe.test(t),l=e.style;if(u||(t=Ge(s)),a=k.cssHooks[t]||k.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];"string"===(o=typeof n)&&(i=ne.exec(n))&&i[1]&&(n=le(e,t,i),o="number"),null!=n&&n==n&&("number"!==o||u||(n+=i&&i[3]||(k.cssNumber[s]?"":"px")),y.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=V(t);return Qe.test(t)||(t=Ge(s)),(a=k.cssHooks[t]||k.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=_e(e,t,r)),"normal"===i&&t in Ke&&(i=Ke[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),k.each(["height","width"],function(e,u){k.cssHooks[u]={get:function(e,t,n){if(t)return!Ye.test(k.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?tt(e,u,n):ue(e,Je,function(){return tt(e,u,n)})},set:function(e,t,n){var r,i=Fe(e),o=!y.scrollboxSize()&&"absolute"===i.position,a=(o||n)&&"border-box"===k.css(e,"boxSizing",!1,i),s=n?et(e,u,n,a,i):0;return a&&o&&(s-=Math.ceil(e["offset"+u[0].toUpperCase()+u.slice(1)]-parseFloat(i[u])-et(e,u,"border",!1,i)-.5)),s&&(r=ne.exec(t))&&"px"!==(r[3]||"px")&&(e.style[u]=t,t=k.css(e,u)),Ze(0,t,s)}}}),k.cssHooks.marginLeft=ze(y.reliableMarginLeft,function(e,t){if(t)return(parseFloat(_e(e,"marginLeft"))||e.getBoundingClientRect().left-ue(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),k.each({margin:"",padding:"",border:"Width"},function(i,o){k.cssHooks[i+o]={expand:function(e){for(var t=0,n={},r="string"==typeof e?e.split(" "):[e];t<4;t++)n[i+re[t]+o]=r[t]||r[t-2]||r[0];return n}},"margin"!==i&&(k.cssHooks[i+o].set=Ze)}),k.fn.extend({css:function(e,t){return _(this,function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=Fe(e),i=t.length;a<i;a++)o[t[a]]=k.css(e,t[a],!1,r);return o}return void 0!==n?k.style(e,t,n):k.css(e,t)},e,t,1<arguments.length)}}),((k.Tween=nt).prototype={constructor:nt,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||k.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(k.cssNumber[n]?"":"px")},cur:function(){var e=nt.propHooks[this.prop];return e&&e.get?e.get(this):nt.propHooks._default.get(this)},run:function(e){var t,n=nt.propHooks[this.prop];return this.options.duration?this.pos=t=k.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):nt.propHooks._default.set(this),this}}).init.prototype=nt.prototype,(nt.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=k.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){k.fx.step[e.prop]?k.fx.step[e.prop](e):1!==e.elem.nodeType||!k.cssHooks[e.prop]&&null==e.elem.style[Ge(e.prop)]?e.elem[e.prop]=e.now:k.style(e.elem,e.prop,e.now+e.unit)}}}).scrollTop=nt.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},k.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},k.fx=nt.prototype.init,k.fx.step={};var rt,it,ot,at,st=/^(?:toggle|show|hide)$/,ut=/queueHooks$/;function lt(){it&&(!1===E.hidden&&C.requestAnimationFrame?C.requestAnimationFrame(lt):C.setTimeout(lt,k.fx.interval),k.fx.tick())}function ct(){return C.setTimeout(function(){rt=void 0}),rt=Date.now()}function ft(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=re[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function pt(e,t,n){for(var r,i=(dt.tweeners[t]||[]).concat(dt.tweeners["*"]),o=0,a=i.length;o<a;o++)if(r=i[o].call(n,t,e))return r}function dt(o,e,t){var n,a,r=0,i=dt.prefilters.length,s=k.Deferred().always(function(){delete u.elem}),u=function(){if(a)return!1;for(var e=rt||ct(),t=Math.max(0,l.startTime+l.duration-e),n=1-(t/l.duration||0),r=0,i=l.tweens.length;r<i;r++)l.tweens[r].run(n);return s.notifyWith(o,[l,n,t]),n<1&&i?t:(i||s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l]),!1)},l=s.promise({elem:o,props:k.extend({},e),opts:k.extend(!0,{specialEasing:{},easing:k.easing._default},t),originalProperties:e,originalOptions:t,startTime:rt||ct(),duration:t.duration,tweens:[],createTween:function(e,t){var n=k.Tween(o,l.opts,e,t,l.opts.specialEasing[e]||l.opts.easing);return l.tweens.push(n),n},stop:function(e){var t=0,n=e?l.tweens.length:0;if(a)return this;for(a=!0;t<n;t++)l.tweens[t].run(1);return e?(s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l,e])):s.rejectWith(o,[l,e]),this}}),c=l.props;for(!function(e,t){var n,r,i,o,a;for(n in e)if(i=t[r=V(n)],o=e[n],Array.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),(a=k.cssHooks[r])&&"expand"in a)for(n in o=a.expand(o),delete e[r],o)n in e||(e[n]=o[n],t[n]=i);else t[r]=i}(c,l.opts.specialEasing);r<i;r++)if(n=dt.prefilters[r].call(l,o,c,l.opts))return m(n.stop)&&(k._queueHooks(l.elem,l.opts.queue).stop=n.stop.bind(n)),n;return k.map(c,pt,l),m(l.opts.start)&&l.opts.start.call(o,l),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always),k.fx.timer(k.extend(u,{elem:o,anim:l,queue:l.opts.queue})),l}k.Animation=k.extend(dt,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return le(n.elem,e,ne.exec(t),n),n}]},tweener:function(e,t){m(e)?(t=e,e=["*"]):e=e.match(R);for(var n,r=0,i=e.length;r<i;r++)n=e[r],dt.tweeners[n]=dt.tweeners[n]||[],dt.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,i,o,a,s,u,l,c,f="width"in t||"height"in t,p=this,d={},h=e.style,g=e.nodeType&&se(e),v=Q.get(e,"fxshow");for(r in n.queue||(null==(a=k._queueHooks(e,"fx")).unqueued&&(a.unqueued=0,s=a.empty.fire,a.empty.fire=function(){a.unqueued||s()}),a.unqueued++,p.always(function(){p.always(function(){a.unqueued--,k.queue(e,"fx").length||a.empty.fire()})})),t)if(i=t[r],st.test(i)){if(delete t[r],o=o||"toggle"===i,i===(g?"hide":"show")){if("show"!==i||!v||void 0===v[r])continue;g=!0}d[r]=v&&v[r]||k.style(e,r)}if((u=!k.isEmptyObject(t))||!k.isEmptyObject(d))for(r in f&&1===e.nodeType&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],null==(l=v&&v.display)&&(l=Q.get(e,"display")),"none"===(c=k.css(e,"display"))&&(l?c=l:(fe([e],!0),l=e.style.display||l,c=k.css(e,"display"),fe([e]))),("inline"===c||"inline-block"===c&&null!=l)&&"none"===k.css(e,"float")&&(u||(p.done(function(){h.display=l}),null==l&&(c=h.display,l="none"===c?"":c)),h.display="inline-block")),n.overflow&&(h.overflow="hidden",p.always(function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]})),u=!1,d)u||(v?"hidden"in v&&(g=v.hidden):v=Q.access(e,"fxshow",{display:l}),o&&(v.hidden=!g),g&&fe([e],!0),p.done(function(){for(r in g||fe([e]),Q.remove(e,"fxshow"),d)k.style(e,r,d[r])})),u=pt(g?v[r]:0,r,p),r in v||(v[r]=u.start,g&&(u.end=u.start,u.start=0))}],prefilter:function(e,t){t?dt.prefilters.unshift(e):dt.prefilters.push(e)}}),k.speed=function(e,t,n){var r=e&&"object"==typeof e?k.extend({},e):{complete:n||!n&&t||m(e)&&e,duration:e,easing:n&&t||t&&!m(t)&&t};return k.fx.off?r.duration=0:"number"!=typeof r.duration&&(r.duration in k.fx.speeds?r.duration=k.fx.speeds[r.duration]:r.duration=k.fx.speeds._default),null!=r.queue&&!0!==r.queue||(r.queue="fx"),r.old=r.complete,r.complete=function(){m(r.old)&&r.old.call(this),r.queue&&k.dequeue(this,r.queue)},r},k.fn.extend({fadeTo:function(e,t,n,r){return this.filter(se).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(t,e,n,r){var i=k.isEmptyObject(t),o=k.speed(e,n,r),a=function(){var e=dt(this,k.extend({},t),o);(i||Q.get(this,"finish"))&&e.stop(!0)};return a.finish=a,i||!1===o.queue?this.each(a):this.queue(o.queue,a)},stop:function(i,e,o){var a=function(e){var t=e.stop;delete e.stop,t(o)};return"string"!=typeof i&&(o=e,e=i,i=void 0),e&&!1!==i&&this.queue(i||"fx",[]),this.each(function(){var e=!0,t=null!=i&&i+"queueHooks",n=k.timers,r=Q.get(this);if(t)r[t]&&r[t].stop&&a(r[t]);else for(t in r)r[t]&&r[t].stop&&ut.test(t)&&a(r[t]);for(t=n.length;t--;)n[t].elem!==this||null!=i&&n[t].queue!==i||(n[t].anim.stop(o),e=!1,n.splice(t,1));!e&&o||k.dequeue(this,i)})},finish:function(a){return!1!==a&&(a=a||"fx"),this.each(function(){var e,t=Q.get(this),n=t[a+"queue"],r=t[a+"queueHooks"],i=k.timers,o=n?n.length:0;for(t.finish=!0,k.queue(this,a,[]),r&&r.stop&&r.stop.call(this,!0),e=i.length;e--;)i[e].elem===this&&i[e].queue===a&&(i[e].anim.stop(!0),i.splice(e,1));for(e=0;e<o;e++)n[e]&&n[e].finish&&n[e].finish.call(this);delete t.finish})}}),k.each(["toggle","show","hide"],function(e,r){var i=k.fn[r];k.fn[r]=function(e,t,n){return null==e||"boolean"==typeof e?i.apply(this,arguments):this.animate(ft(r,!0),e,t,n)}}),k.each({slideDown:ft("show"),slideUp:ft("hide"),slideToggle:ft("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,r){k.fn[e]=function(e,t,n){return this.animate(r,e,t,n)}}),k.timers=[],k.fx.tick=function(){var e,t=0,n=k.timers;for(rt=Date.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t--,1);n.length||k.fx.stop(),rt=void 0},k.fx.timer=function(e){k.timers.push(e),k.fx.start()},k.fx.interval=13,k.fx.start=function(){it||(it=!0,lt())},k.fx.stop=function(){it=null},k.fx.speeds={slow:600,fast:200,_default:400},k.fn.delay=function(r,e){return r=k.fx&&k.fx.speeds[r]||r,e=e||"fx",this.queue(e,function(e,t){var n=C.setTimeout(e,r);t.stop=function(){C.clearTimeout(n)}})},ot=E.createElement("input"),at=E.createElement("select").appendChild(E.createElement("option")),ot.type="checkbox",y.checkOn=""!==ot.value,y.optSelected=at.selected,(ot=E.createElement("input")).value="t",ot.type="radio",y.radioValue="t"===ot.value;var ht,gt=k.expr.attrHandle;k.fn.extend({attr:function(e,t){return _(this,k.attr,e,t,1<arguments.length)},removeAttr:function(e){return this.each(function(){k.removeAttr(this,e)})}}),k.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return"undefined"==typeof e.getAttribute?k.prop(e,t,n):(1===o&&k.isXMLDoc(e)||(i=k.attrHooks[t.toLowerCase()]||(k.expr.match.bool.test(t)?ht:void 0)),void 0!==n?null===n?void k.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=k.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!y.radioValue&&"radio"===t&&A(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(R);if(i&&1===e.nodeType)while(n=i[r++])e.removeAttribute(n)}}),ht={set:function(e,t,n){return!1===t?k.removeAttr(e,n):e.setAttribute(n,n),n}},k.each(k.expr.match.bool.source.match(/\w+/g),function(e,t){var a=gt[t]||k.find.attr;gt[t]=function(e,t,n){var r,i,o=t.toLowerCase();return n||(i=gt[o],gt[o]=r,r=null!=a(e,t,n)?o:null,gt[o]=i),r}});var vt=/^(?:input|select|textarea|button)$/i,yt=/^(?:a|area)$/i;function mt(e){return(e.match(R)||[]).join(" ")}function xt(e){return e.getAttribute&&e.getAttribute("class")||""}function bt(e){return Array.isArray(e)?e:"string"==typeof e&&e.match(R)||[]}k.fn.extend({prop:function(e,t){return _(this,k.prop,e,t,1<arguments.length)},removeProp:function(e){return this.each(function(){delete this[k.propFix[e]||e]})}}),k.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&k.isXMLDoc(e)||(t=k.propFix[t]||t,i=k.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=k.find.attr(e,"tabindex");return t?parseInt(t,10):vt.test(e.nodeName)||yt.test(e.nodeName)&&e.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),y.optSelected||(k.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),k.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){k.propFix[this.toLowerCase()]=this}),k.fn.extend({addClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){k(this).addClass(t.call(this,e,xt(this)))});if((e=bt(t)).length)while(n=this[u++])if(i=xt(n),r=1===n.nodeType&&" "+mt(i)+" "){a=0;while(o=e[a++])r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=mt(r))&&n.setAttribute("class",s)}return this},removeClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){k(this).removeClass(t.call(this,e,xt(this)))});if(!arguments.length)return this.attr("class","");if((e=bt(t)).length)while(n=this[u++])if(i=xt(n),r=1===n.nodeType&&" "+mt(i)+" "){a=0;while(o=e[a++])while(-1<r.indexOf(" "+o+" "))r=r.replace(" "+o+" "," ");i!==(s=mt(r))&&n.setAttribute("class",s)}return this},toggleClass:function(i,t){var o=typeof i,a="string"===o||Array.isArray(i);return"boolean"==typeof t&&a?t?this.addClass(i):this.removeClass(i):m(i)?this.each(function(e){k(this).toggleClass(i.call(this,e,xt(this),t),t)}):this.each(function(){var e,t,n,r;if(a){t=0,n=k(this),r=bt(i);while(e=r[t++])n.hasClass(e)?n.removeClass(e):n.addClass(e)}else void 0!==i&&"boolean"!==o||((e=xt(this))&&Q.set(this,"__className__",e),this.setAttribute&&this.setAttribute("class",e||!1===i?"":Q.get(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;t=" "+e+" ";while(n=this[r++])if(1===n.nodeType&&-1<(" "+mt(xt(n))+" ").indexOf(t))return!0;return!1}});var wt=/\r/g;k.fn.extend({val:function(n){var r,e,i,t=this[0];return arguments.length?(i=m(n),this.each(function(e){var t;1===this.nodeType&&(null==(t=i?n.call(this,e,k(this).val()):n)?t="":"number"==typeof t?t+="":Array.isArray(t)&&(t=k.map(t,function(e){return null==e?"":e+""})),(r=k.valHooks[this.type]||k.valHooks[this.nodeName.toLowerCase()])&&"set"in r&&void 0!==r.set(this,t,"value")||(this.value=t))})):t?(r=k.valHooks[t.type]||k.valHooks[t.nodeName.toLowerCase()])&&"get"in r&&void 0!==(e=r.get(t,"value"))?e:"string"==typeof(e=t.value)?e.replace(wt,""):null==e?"":e:void 0}}),k.extend({valHooks:{option:{get:function(e){var t=k.find.attr(e,"value");return null!=t?t:mt(k.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r<u;r++)if(((n=i[r]).selected||r===o)&&!n.disabled&&(!n.parentNode.disabled||!A(n.parentNode,"optgroup"))){if(t=k(n).val(),a)return t;s.push(t)}return s},set:function(e,t){var n,r,i=e.options,o=k.makeArray(t),a=i.length;while(a--)((r=i[a]).selected=-1<k.inArray(k.valHooks.option.get(r),o))&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),k.each(["radio","checkbox"],function(){k.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=-1<k.inArray(k(e).val(),t)}},y.checkOn||(k.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})}),y.focusin="onfocusin"in C;var Tt=/^(?:focusinfocus|focusoutblur)$/,Ct=function(e){e.stopPropagation()};k.extend(k.event,{trigger:function(e,t,n,r){var i,o,a,s,u,l,c,f,p=[n||E],d=v.call(e,"type")?e.type:e,h=v.call(e,"namespace")?e.namespace.split("."):[];if(o=f=a=n=n||E,3!==n.nodeType&&8!==n.nodeType&&!Tt.test(d+k.event.triggered)&&(-1<d.indexOf(".")&&(d=(h=d.split(".")).shift(),h.sort()),u=d.indexOf(":")<0&&"on"+d,(e=e[k.expando]?e:new k.Event(d,"object"==typeof e&&e)).isTrigger=r?2:3,e.namespace=h.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=n),t=null==t?[e]:k.makeArray(t,[e]),c=k.event.special[d]||{},r||!c.trigger||!1!==c.trigger.apply(n,t))){if(!r&&!c.noBubble&&!x(n)){for(s=c.delegateType||d,Tt.test(s+d)||(o=o.parentNode);o;o=o.parentNode)p.push(o),a=o;a===(n.ownerDocument||E)&&p.push(a.defaultView||a.parentWindow||C)}i=0;while((o=p[i++])&&!e.isPropagationStopped())f=o,e.type=1<i?s:c.bindType||d,(l=(Q.get(o,"events")||{})[e.type]&&Q.get(o,"handle"))&&l.apply(o,t),(l=u&&o[u])&&l.apply&&G(o)&&(e.result=l.apply(o,t),!1===e.result&&e.preventDefault());return e.type=d,r||e.isDefaultPrevented()||c._default&&!1!==c._default.apply(p.pop(),t)||!G(n)||u&&m(n[d])&&!x(n)&&((a=n[u])&&(n[u]=null),k.event.triggered=d,e.isPropagationStopped()&&f.addEventListener(d,Ct),n[d](),e.isPropagationStopped()&&f.removeEventListener(d,Ct),k.event.triggered=void 0,a&&(n[u]=a)),e.result}},simulate:function(e,t,n){var r=k.extend(new k.Event,n,{type:e,isSimulated:!0});k.event.trigger(r,null,t)}}),k.fn.extend({trigger:function(e,t){return this.each(function(){k.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return k.event.trigger(e,t,n,!0)}}),y.focusin||k.each({focus:"focusin",blur:"focusout"},function(n,r){var i=function(e){k.event.simulate(r,e.target,k.event.fix(e))};k.event.special[r]={setup:function(){var e=this.ownerDocument||this,t=Q.access(e,r);t||e.addEventListener(n,i,!0),Q.access(e,r,(t||0)+1)},teardown:function(){var e=this.ownerDocument||this,t=Q.access(e,r)-1;t?Q.access(e,r,t):(e.removeEventListener(n,i,!0),Q.remove(e,r))}}});var Et=C.location,kt=Date.now(),St=/\?/;k.parseXML=function(e){var t;if(!e||"string"!=typeof e)return null;try{t=(new C.DOMParser).parseFromString(e,"text/xml")}catch(e){t=void 0}return t&&!t.getElementsByTagName("parsererror").length||k.error("Invalid XML: "+e),t};var Nt=/\[\]$/,At=/\r?\n/g,Dt=/^(?:submit|button|image|reset|file)$/i,jt=/^(?:input|select|textarea|keygen)/i;function qt(n,e,r,i){var t;if(Array.isArray(e))k.each(e,function(e,t){r||Nt.test(n)?i(n,t):qt(n+"["+("object"==typeof t&&null!=t?e:"")+"]",t,r,i)});else if(r||"object"!==w(e))i(n,e);else for(t in e)qt(n+"["+t+"]",e[t],r,i)}k.param=function(e,t){var n,r=[],i=function(e,t){var n=m(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!k.isPlainObject(e))k.each(e,function(){i(this.name,this.value)});else for(n in e)qt(n,e[n],t,i);return r.join("&")},k.fn.extend({serialize:function(){return k.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=k.prop(this,"elements");return e?k.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!k(this).is(":disabled")&&jt.test(this.nodeName)&&!Dt.test(e)&&(this.checked||!pe.test(e))}).map(function(e,t){var n=k(this).val();return null==n?null:Array.isArray(n)?k.map(n,function(e){return{name:t.name,value:e.replace(At,"\r\n")}}):{name:t.name,value:n.replace(At,"\r\n")}}).get()}});var Lt=/%20/g,Ht=/#.*$/,Ot=/([?&])_=[^&]*/,Pt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Rt=/^(?:GET|HEAD)$/,Mt=/^\/\//,It={},Wt={},$t="*/".concat("*"),Ft=E.createElement("a");function Bt(o){return function(e,t){"string"!=typeof e&&(t=e,e="*");var n,r=0,i=e.toLowerCase().match(R)||[];if(m(t))while(n=i[r++])"+"===n[0]?(n=n.slice(1)||"*",(o[n]=o[n]||[]).unshift(t)):(o[n]=o[n]||[]).push(t)}}function _t(t,i,o,a){var s={},u=t===Wt;function l(e){var r;return s[e]=!0,k.each(t[e]||[],function(e,t){var n=t(i,o,a);return"string"!=typeof n||u||s[n]?u?!(r=n):void 0:(i.dataTypes.unshift(n),l(n),!1)}),r}return l(i.dataTypes[0])||!s["*"]&&l("*")}function zt(e,t){var n,r,i=k.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&k.extend(!0,e,r),e}Ft.href=Et.href,k.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Et.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(Et.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":$t,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":k.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?zt(zt(e,k.ajaxSettings),t):zt(k.ajaxSettings,e)},ajaxPrefilter:Bt(It),ajaxTransport:Bt(Wt),ajax:function(e,t){"object"==typeof e&&(t=e,e=void 0),t=t||{};var c,f,p,n,d,r,h,g,i,o,v=k.ajaxSetup({},t),y=v.context||v,m=v.context&&(y.nodeType||y.jquery)?k(y):k.event,x=k.Deferred(),b=k.Callbacks("once memory"),w=v.statusCode||{},a={},s={},u="canceled",T={readyState:0,getResponseHeader:function(e){var t;if(h){if(!n){n={};while(t=Pt.exec(p))n[t[1].toLowerCase()+" "]=(n[t[1].toLowerCase()+" "]||[]).concat(t[2])}t=n[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return h?p:null},setRequestHeader:function(e,t){return null==h&&(e=s[e.toLowerCase()]=s[e.toLowerCase()]||e,a[e]=t),this},overrideMimeType:function(e){return null==h&&(v.mimeType=e),this},statusCode:function(e){var t;if(e)if(h)T.always(e[T.status]);else for(t in e)w[t]=[w[t],e[t]];return this},abort:function(e){var t=e||u;return c&&c.abort(t),l(0,t),this}};if(x.promise(T),v.url=((e||v.url||Et.href)+"").replace(Mt,Et.protocol+"//"),v.type=t.method||t.type||v.method||v.type,v.dataTypes=(v.dataType||"*").toLowerCase().match(R)||[""],null==v.crossDomain){r=E.createElement("a");try{r.href=v.url,r.href=r.href,v.crossDomain=Ft.protocol+"//"+Ft.host!=r.protocol+"//"+r.host}catch(e){v.crossDomain=!0}}if(v.data&&v.processData&&"string"!=typeof v.data&&(v.data=k.param(v.data,v.traditional)),_t(It,v,t,T),h)return T;for(i in(g=k.event&&v.global)&&0==k.active++&&k.event.trigger("ajaxStart"),v.type=v.type.toUpperCase(),v.hasContent=!Rt.test(v.type),f=v.url.replace(Ht,""),v.hasContent?v.data&&v.processData&&0===(v.contentType||"").indexOf("application/x-www-form-urlencoded")&&(v.data=v.data.replace(Lt,"+")):(o=v.url.slice(f.length),v.data&&(v.processData||"string"==typeof v.data)&&(f+=(St.test(f)?"&":"?")+v.data,delete v.data),!1===v.cache&&(f=f.replace(Ot,"$1"),o=(St.test(f)?"&":"?")+"_="+kt+++o),v.url=f+o),v.ifModified&&(k.lastModified[f]&&T.setRequestHeader("If-Modified-Since",k.lastModified[f]),k.etag[f]&&T.setRequestHeader("If-None-Match",k.etag[f])),(v.data&&v.hasContent&&!1!==v.contentType||t.contentType)&&T.setRequestHeader("Content-Type",v.contentType),T.setRequestHeader("Accept",v.dataTypes[0]&&v.accepts[v.dataTypes[0]]?v.accepts[v.dataTypes[0]]+("*"!==v.dataTypes[0]?", "+$t+"; q=0.01":""):v.accepts["*"]),v.headers)T.setRequestHeader(i,v.headers[i]);if(v.beforeSend&&(!1===v.beforeSend.call(y,T,v)||h))return T.abort();if(u="abort",b.add(v.complete),T.done(v.success),T.fail(v.error),c=_t(Wt,v,t,T)){if(T.readyState=1,g&&m.trigger("ajaxSend",[T,v]),h)return T;v.async&&0<v.timeout&&(d=C.setTimeout(function(){T.abort("timeout")},v.timeout));try{h=!1,c.send(a,l)}catch(e){if(h)throw e;l(-1,e)}}else l(-1,"No Transport");function l(e,t,n,r){var i,o,a,s,u,l=t;h||(h=!0,d&&C.clearTimeout(d),c=void 0,p=r||"",T.readyState=0<e?4:0,i=200<=e&&e<300||304===e,n&&(s=function(e,t,n){var r,i,o,a,s=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(v,T,n)),s=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}(v,s,T,i),i?(v.ifModified&&((u=T.getResponseHeader("Last-Modified"))&&(k.lastModified[f]=u),(u=T.getResponseHeader("etag"))&&(k.etag[f]=u)),204===e||"HEAD"===v.type?l="nocontent":304===e?l="notmodified":(l=s.state,o=s.data,i=!(a=s.error))):(a=l,!e&&l||(l="error",e<0&&(e=0))),T.status=e,T.statusText=(t||l)+"",i?x.resolveWith(y,[o,l,T]):x.rejectWith(y,[T,l,a]),T.statusCode(w),w=void 0,g&&m.trigger(i?"ajaxSuccess":"ajaxError",[T,v,i?o:a]),b.fireWith(y,[T,l]),g&&(m.trigger("ajaxComplete",[T,v]),--k.active||k.event.trigger("ajaxStop")))}return T},getJSON:function(e,t,n){return k.get(e,t,n,"json")},getScript:function(e,t){return k.get(e,void 0,t,"script")}}),k.each(["get","post"],function(e,i){k[i]=function(e,t,n,r){return m(t)&&(r=r||n,n=t,t=void 0),k.ajax(k.extend({url:e,type:i,dataType:r,data:t,success:n},k.isPlainObject(e)&&e))}}),k._evalUrl=function(e,t){return k.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){k.globalEval(e,t)}})},k.fn.extend({wrapAll:function(e){var t;return this[0]&&(m(e)&&(e=e.call(this[0])),t=k(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(n){return m(n)?this.each(function(e){k(this).wrapInner(n.call(this,e))}):this.each(function(){var e=k(this),t=e.contents();t.length?t.wrapAll(n):e.append(n)})},wrap:function(t){var n=m(t);return this.each(function(e){k(this).wrapAll(n?t.call(this,e):t)})},unwrap:function(e){return this.parent(e).not("body").each(function(){k(this).replaceWith(this.childNodes)}),this}}),k.expr.pseudos.hidden=function(e){return!k.expr.pseudos.visible(e)},k.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},k.ajaxSettings.xhr=function(){try{return new C.XMLHttpRequest}catch(e){}};var Ut={0:200,1223:204},Xt=k.ajaxSettings.xhr();y.cors=!!Xt&&"withCredentials"in Xt,y.ajax=Xt=!!Xt,k.ajaxTransport(function(i){var o,a;if(y.cors||Xt&&!i.crossDomain)return{send:function(e,t){var n,r=i.xhr();if(r.open(i.type,i.url,i.async,i.username,i.password),i.xhrFields)for(n in i.xhrFields)r[n]=i.xhrFields[n];for(n in i.mimeType&&r.overrideMimeType&&r.overrideMimeType(i.mimeType),i.crossDomain||e["X-Requested-With"]||(e["X-Requested-With"]="XMLHttpRequest"),e)r.setRequestHeader(n,e[n]);o=function(e){return function(){o&&(o=a=r.onload=r.onerror=r.onabort=r.ontimeout=r.onreadystatechange=null,"abort"===e?r.abort():"error"===e?"number"!=typeof r.status?t(0,"error"):t(r.status,r.statusText):t(Ut[r.status]||r.status,r.statusText,"text"!==(r.responseType||"text")||"string"!=typeof r.responseText?{binary:r.response}:{text:r.responseText},r.getAllResponseHeaders()))}},r.onload=o(),a=r.onerror=r.ontimeout=o("error"),void 0!==r.onabort?r.onabort=a:r.onreadystatechange=function(){4===r.readyState&&C.setTimeout(function(){o&&a()})},o=o("abort");try{r.send(i.hasContent&&i.data||null)}catch(e){if(o)throw e}},abort:function(){o&&o()}}}),k.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),k.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return k.globalEval(e),e}}}),k.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),k.ajaxTransport("script",function(n){var r,i;if(n.crossDomain||n.scriptAttrs)return{send:function(e,t){r=k("<script>").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Vt,Gt=[],Yt=/(=)\?(?=&|$)|\?\?/;k.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Gt.pop()||k.expando+"_"+kt++;return this[e]=!0,e}}),k.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Yt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Yt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Yt,"$1"+r):!1!==e.jsonp&&(e.url+=(St.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||k.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?k(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Gt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Vt=E.implementation.createHTMLDocument("").body).innerHTML="<form></form><form></form>",2===Vt.childNodes.length),k.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=D.exec(e))?[t.createElement(i[1])]:(i=we([e],t,o),o&&o.length&&k(o).remove(),k.merge([],i.childNodes)));var r,i,o},k.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1<s&&(r=mt(e.slice(s)),e=e.slice(0,s)),m(t)?(n=t,t=void 0):t&&"object"==typeof t&&(i="POST"),0<a.length&&k.ajax({url:e,type:i||"GET",dataType:"html",data:t}).done(function(e){o=arguments,a.html(r?k("<div>").append(k.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},k.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){k.fn[t]=function(e){return this.on(t,e)}}),k.expr.pseudos.animated=function(t){return k.grep(k.timers,function(e){return t===e.elem}).length},k.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=k.css(e,"position"),c=k(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=k.css(e,"top"),u=k.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,k.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},k.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){k.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===k.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===k.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=k(e).offset()).top+=k.css(e,"borderTopWidth",!0),i.left+=k.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-k.css(r,"marginTop",!0),left:t.left-i.left-k.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===k.css(e,"position"))e=e.offsetParent;return e||ie})}}),k.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;k.fn[t]=function(e){return _(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),k.each(["top","left"],function(e,n){k.cssHooks[n]=ze(y.pixelPosition,function(e,t){if(t)return t=_e(e,n),$e.test(t)?k(e).position()[n]+"px":t})}),k.each({Height:"height",Width:"width"},function(a,s){k.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){k.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return _(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?k.css(e,t,i):k.style(e,t,n,i)},s,n?e:void 0,n)}})}),k.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){k.fn[n]=function(e,t){return 0<arguments.length?this.on(n,null,e,t):this.trigger(n)}}),k.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),k.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)}}),k.proxy=function(e,t){var n,r,i;if("string"==typeof t&&(n=e[t],t=e,e=n),m(e))return r=s.call(arguments,2),(i=function(){return e.apply(t||this,r.concat(s.call(arguments)))}).guid=e.guid=e.guid||k.guid++,i},k.holdReady=function(e){e?k.readyWait++:k.ready(!0)},k.isArray=Array.isArray,k.parseJSON=JSON.parse,k.nodeName=A,k.isFunction=m,k.isWindow=x,k.camelCase=V,k.type=w,k.now=Date.now,k.isNumeric=function(e){var t=k.type(e);return("number"===t||"string"===t)&&!isNaN(e-parseFloat(e))},"function"==typeof define&&define.amd&&define("jquery",[],function(){return k});var Qt=C.jQuery,Jt=C.$;return k.noConflict=function(e){return C.$===k&&(C.$=Jt),e&&C.jQuery===k&&(C.jQuery=Qt),k},e||(C.jQuery=C.$=k),k});
|
data/assets/js/script.js
ADDED
@@ -0,0 +1,187 @@
|
|
1
|
+
$(document).ready(function(){
|
2
|
+
|
3
|
+
// ---- Initial state ----
|
4
|
+
|
5
|
+
window.hypothesisConfig = function () {
|
6
|
+
return {
|
7
|
+
"theme": "clean"
|
8
|
+
};
|
9
|
+
};
|
10
|
+
|
11
|
+
// Make the first page visible
|
12
|
+
$('.form-section:first-child').addClass('active');
|
13
|
+
|
14
|
+
// Initialize bootstrap-validator
|
15
|
+
$(".form").validator();
|
16
|
+
|
17
|
+
// --- Settings checkboxes ---
|
18
|
+
|
19
|
+
function settingInit(setting) {
|
20
|
+
// Set initial state
|
21
|
+
// (Firefox doesn't clear page classes on reload)
|
22
|
+
if ($('body').hasClass(setting)) {
|
23
|
+
$('#settings-' + setting).prop('checked', true);
|
24
|
+
} else {
|
25
|
+
$('#settings-' + setting).prop('checked', false);
|
26
|
+
}
|
27
|
+
|
28
|
+
// Add / remove <body> classes
|
29
|
+
$('#settings-' + setting).change(function() {
|
30
|
+
$('body').toggleClass(setting);
|
31
|
+
});
|
32
|
+
}
|
33
|
+
|
34
|
+
settingInit('all-pages');
|
35
|
+
settingInit('all-conditionals');
|
36
|
+
settingInit('top-nav');
|
37
|
+
|
38
|
+
// Show / hide settings modal
|
39
|
+
$('.form-settings-toggle').click(function() {
|
40
|
+
$('.form-settings').toggleClass('active');
|
41
|
+
});
|
42
|
+
|
43
|
+
// ---- File inputs ---
|
44
|
+
|
45
|
+
$("input[type='file']").change(function() {
|
46
|
+
var file = $(this).val().replace(/C:\\fakepath\\/i, '');
|
47
|
+
|
48
|
+
$(this).next('.file-custom').attr('data-filename', file);
|
49
|
+
});
|
50
|
+
|
51
|
+
// ---- Pagination ----
|
52
|
+
|
53
|
+
// Track the current page number
|
54
|
+
// (The first page is always shown on page load)
|
55
|
+
var activePageNum = 0;
|
56
|
+
var activePage = $('.form-section').eq(activePageNum);
|
57
|
+
|
58
|
+
function paginate(count) {
|
59
|
+
// Hide the current page
|
60
|
+
$('.form-section').eq(activePageNum).removeClass('active');
|
61
|
+
|
62
|
+
// Go to the previous / next page
|
63
|
+
activePageNum = activePageNum + count;
|
64
|
+
|
65
|
+
function checkPage(number) {
|
66
|
+
var activePage = $('.form-section').eq(activePageNum);
|
67
|
+
var isHidden = activePage.attr('data-group') && !activePage.hasClass('is-conditionally-visible');
|
68
|
+
|
69
|
+
// If we're conditionally hiding the activePage,
|
70
|
+
// go to the previous / next one
|
71
|
+
if (isHidden) {
|
72
|
+
activePageNum = activePageNum + number;
|
73
|
+
checkPage(number);
|
74
|
+
} else {
|
75
|
+
// If the page is visible, show it
|
76
|
+
activePage.addClass('active');
|
77
|
+
}
|
78
|
+
}
|
79
|
+
|
80
|
+
checkPage(count);
|
81
|
+
event.preventDefault();
|
82
|
+
}
|
83
|
+
|
84
|
+
// Previous page
|
85
|
+
$('.form-section-prev').click(function() {
|
86
|
+
paginate(-1);
|
87
|
+
});
|
88
|
+
|
89
|
+
// Next page
|
90
|
+
$('.form-section-next').click(function() {
|
91
|
+
paginate(1);
|
92
|
+
});
|
93
|
+
|
94
|
+
// ---- Conditionals ----
|
95
|
+
|
96
|
+
function showGroup(el) {
|
97
|
+
el.addClass('is-triggering');
|
98
|
+
var shows = el.attr('data-shows');
|
99
|
+
|
100
|
+
// Show the groups tied to this conditional
|
101
|
+
var groups = $("div").find("[data-group='" + shows + "']");
|
102
|
+
groups.addClass('is-conditionally-visible');
|
103
|
+
}
|
104
|
+
|
105
|
+
function hideGroup(el) {
|
106
|
+
el.removeClass('is-triggering');
|
107
|
+
var shows = el.attr('data-shows');
|
108
|
+
// Get the groups tied to this conditional
|
109
|
+
var groups = $("div").find("[data-group='" + shows + "']");
|
110
|
+
|
111
|
+
if (shows) {
|
112
|
+
// Get the number of inputs currently
|
113
|
+
// triggering this conditional
|
114
|
+
var activeTriggers = $("input[data-shows='" + shows + "']").filter("[class~='is-triggering']").length;
|
115
|
+
|
116
|
+
// If there are no other triggers,
|
117
|
+
// hide the conditional
|
118
|
+
if (activeTriggers === 0) {
|
119
|
+
groups.removeClass('is-conditionally-visible');
|
120
|
+
}
|
121
|
+
} else {
|
122
|
+
groups.removeClass('is-conditionally-visible');
|
123
|
+
}
|
124
|
+
}
|
125
|
+
|
126
|
+
// Toggling radio buttons
|
127
|
+
$("input[type='radio']").change(function() {
|
128
|
+
var name = $(this).attr('name');
|
129
|
+
var shows = $(this).attr('data-shows');
|
130
|
+
|
131
|
+
// If the button triggers a conditional,
|
132
|
+
// show the group
|
133
|
+
if (shows) {
|
134
|
+
showGroup($(this));
|
135
|
+
}
|
136
|
+
|
137
|
+
// If the interaction deselects another radio button,
|
138
|
+
// make sure its conditional is hidden
|
139
|
+
var otherRadios = $("input[name=" + name + "]:not(this, [data-shows=" + shows + "])");
|
140
|
+
otherRadios.each(function(){
|
141
|
+
hideGroup($(this));
|
142
|
+
})
|
143
|
+
});
|
144
|
+
|
145
|
+
// Toggling checkboxes
|
146
|
+
$("input[type='checkbox'][data-shows]").change(function() {
|
147
|
+
if ($(this).is(':checked')) {
|
148
|
+
showGroup($(this));
|
149
|
+
} else {
|
150
|
+
hideGroup($(this));
|
151
|
+
}
|
152
|
+
});
|
153
|
+
|
154
|
+
// Match text field values
|
155
|
+
$("input[data-if]").keyup(function() {
|
156
|
+
var fullTrigger = $(this).attr('data-if');
|
157
|
+
var currentValue = $(this).val();
|
158
|
+
|
159
|
+
function showIf(el, equation) {
|
160
|
+
if (currentValue === '' || equation === false) {
|
161
|
+
hideGroup(el);
|
162
|
+
} else {
|
163
|
+
showGroup(el);
|
164
|
+
}
|
165
|
+
}
|
166
|
+
|
167
|
+
// If the trigger begins with
|
168
|
+
// an "<" or ">" symbol...
|
169
|
+
if (fullTrigger.match("^[<>]")) {
|
170
|
+
|
171
|
+
// Separate the number from the "<" or ">" symbol
|
172
|
+
var triggerNumber = parseInt(fullTrigger.substr(1));
|
173
|
+
var triggerOperator = fullTrigger.charAt(0);
|
174
|
+
|
175
|
+
if (triggerOperator === '<') {
|
176
|
+
// "Less than" conditionals
|
177
|
+
showIf($(this), currentValue < triggerNumber);
|
178
|
+
} else {
|
179
|
+
// "Greater than" conditionals
|
180
|
+
showIf($(this), currentValue > triggerNumber);
|
181
|
+
}
|
182
|
+
// Otherwise, match the value exactly
|
183
|
+
} else {
|
184
|
+
showIf($(this), currentValue === fullTrigger);
|
185
|
+
}
|
186
|
+
});
|
187
|
+
});
|