Version Description
Download this release
Release Info
Developer | ataurr |
Plugin | Metform Elementor Contact Form Builder – Flexible and Design-Friendly Contact Form builder plugin for WordPress |
Version | 1.1.2 |
Comparing to | |
See all releases |
Code changes from version 1.0.1 to 1.1.2
- controls/assets/css/form-picker-editor.css +1 -1
- controls/assets/css/form-picker-inspactor.css +210 -1
- controls/assets/js/form-picker-editor.js +1 -60
- controls/assets/js/form-picker-inspactor.js +1 -74
- controls/form-editor-modal.php +3 -4
- controls/form-picker-modal.php +69 -2
- controls/form-picker-utils.php +13 -21
- controls/form-picker.php +1 -0
- core/entries/action.php +53 -2
- core/entries/export.php +8 -0
- core/entries/form-data.php +16 -1
- core/entries/hooks.php +2 -1
- core/entries/meta-data.php +3 -0
- core/forms/action.php +3 -108
- core/forms/api.php +26 -4
- core/forms/builder.php +40 -20
- core/forms/cpt.php +113 -0
- core/forms/hooks.php +2 -2
- core/forms/views/modal-editor.php +1 -1
- init.php +44 -20
- libs/assets/css/admin-style.css +6 -1
- libs/assets/css/style.css +29 -0
- libs/assets/js/admin-script.js +7 -1
- libs/assets/js/inputs.js +203 -140
- libs/assets/js/submission.js +12 -18
- libs/assets/scss/admin-style.scss +0 -392
- metform.php +1 -1
- readme.txt +13 -9
- templates/1/content.json +1 -0
- templates/1/preview-thumb.svg +250 -0
- templates/2/content.json +1 -0
- templates/2/preview-thumb.svg +347 -0
- templates/3/content.json +1 -0
- templates/3/preview-thumb.svg +320 -0
- templates/4/content.json +1 -0
- templates/4/preview-thumb.svg +329 -0
- templates/5/content.json +1 -0
- templates/5/preview-thumb.svg +301 -0
- templates/base.php +59 -0
- traits/common-controls.php +8 -8
- traits/conditional-controls.php +157 -0
- utils/util.php +3 -2
- widgets/button/button.php +4 -0
- widgets/checkbox/checkbox.php +20 -9
- widgets/date/date.php +33 -12
- widgets/email/email.php +15 -4
- widgets/file-upload/file-upload.php +16 -4
- widgets/form-dynamic.php +18 -36
- widgets/form.php +7 -3
- widgets/listing/listing-fname.php +14 -3
- widgets/listing/listing-lname.php +14 -3
- widgets/listing/listing-optin.php +15 -4
- widgets/manifest.php +14 -11
- widgets/mobile/mobile.php +0 -135
- widgets/multi-select/multi-select.php +18 -7
- widgets/number/number.php +16 -4
- widgets/password/password.php +14 -3
- widgets/radio/radio.php +20 -8
- widgets/range/range.php +51 -4
- widgets/rating/rating.php +17 -6
- widgets/recaptcha/recaptcha.php +4 -0
- widgets/response/response.php +38 -1
- widgets/select/select.php +16 -6
- widgets/switch/switch.php +14 -3
- widgets/{listing/listing-phone.php → telephone/telephone.php} +22 -11
- widgets/text/text.php +15 -4
- widgets/textarea/textarea.php +16 -3
- widgets/time/time.php +18 -6
- widgets/url/url.php +14 -2
controls/assets/css/form-picker-editor.css
CHANGED
@@ -46,4 +46,4 @@
|
|
46 |
}
|
47 |
.elementor-editor-active .formpicker_warper_editable .formpicker_warper_editable .formpicker_warper_edit {
|
48 |
display: none!important;
|
49 |
-
}
|
46 |
}
|
47 |
.elementor-editor-active .formpicker_warper_editable .formpicker_warper_editable .formpicker_warper_edit {
|
48 |
display: none!important;
|
49 |
+
}
|
controls/assets/css/form-picker-inspactor.css
CHANGED
@@ -14,7 +14,7 @@
|
|
14 |
|
15 |
.formpicker_iframe_modal,
|
16 |
.formpicker_iframe_mini_modal {
|
17 |
-
display:
|
18 |
}
|
19 |
|
20 |
.formpicker_iframe_modal .dialog-message {
|
@@ -55,6 +55,9 @@
|
|
55 |
margin-top: 20px !important;
|
56 |
margin-bottom: 20px !important;
|
57 |
}
|
|
|
|
|
|
|
58 |
|
59 |
.elementor-device-desktop #elementor-preview-responsive-wrapper {
|
60 |
min-width: auto !important;
|
@@ -71,4 +74,210 @@
|
|
71 |
z-index: 9999;
|
72 |
background: #fff;
|
73 |
border: 1px solid;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
}
|
14 |
|
15 |
.formpicker_iframe_modal,
|
16 |
.formpicker_iframe_mini_modal {
|
17 |
+
display: block;
|
18 |
}
|
19 |
|
20 |
.formpicker_iframe_modal .dialog-message {
|
55 |
margin-top: 20px !important;
|
56 |
margin-bottom: 20px !important;
|
57 |
}
|
58 |
+
.metform-dynamic-content-modal .elementor-templates-modal__header {
|
59 |
+
background-color: #F1F3F5;
|
60 |
+
}
|
61 |
|
62 |
.elementor-device-desktop #elementor-preview-responsive-wrapper {
|
63 |
min-width: auto !important;
|
74 |
z-index: 9999;
|
75 |
background: #fff;
|
76 |
border: 1px solid;
|
77 |
+
}
|
78 |
+
|
79 |
+
#metform-open-content-editor{
|
80 |
+
background-color: rgba(0,0,0, .8);
|
81 |
+
width: 100%;
|
82 |
+
height: 100%;
|
83 |
+
position: fixed;
|
84 |
+
left: 0;
|
85 |
+
top: 0;
|
86 |
+
z-index: 2;
|
87 |
+
overflow-y: auto;
|
88 |
+
}
|
89 |
+
.metform-open-content-inner {
|
90 |
+
position: relative;
|
91 |
+
top: 50px;
|
92 |
+
left: 50%;
|
93 |
+
transform: translateX(-50%);
|
94 |
+
z-index: 999;
|
95 |
+
width: 622px;
|
96 |
+
background-color: #fff;
|
97 |
+
box-shadow: -15px 20px 50px rgba(0, 0, 0, 0.16);
|
98 |
+
padding: 35px 50px;
|
99 |
+
border-radius: 5px;
|
100 |
+
text-align: center;
|
101 |
+
}
|
102 |
+
#metform-open-content-editor .metform-close-editor-modals {
|
103 |
+
color: #FF433C;
|
104 |
+
border: 2px solid #FF433C;
|
105 |
+
width: 30px;
|
106 |
+
height: 30px;
|
107 |
+
line-height: 27px;
|
108 |
+
text-align: center;
|
109 |
+
border-radius: 100px;
|
110 |
+
font-size: 17px;
|
111 |
+
position: absolute;
|
112 |
+
top: -10px;
|
113 |
+
right: -10px;
|
114 |
+
background-color: #fff;
|
115 |
+
cursor: pointer;
|
116 |
+
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
|
117 |
+
}
|
118 |
+
.metform-open-content-editor-templates {
|
119 |
+
|
120 |
+
}
|
121 |
+
.metform-editor-input{
|
122 |
+
height: 56px;
|
123 |
+
width: 100%;
|
124 |
+
display: block;
|
125 |
+
box-sizing: border-box;
|
126 |
+
background-color: #fff;
|
127 |
+
box-shadow: 0 15px 25px rgba(0, 0, 0, 0.07);
|
128 |
+
border-radius: 10px;
|
129 |
+
border: none;
|
130 |
+
padding: 0 25px;
|
131 |
+
color: #101010;
|
132 |
+
font-size: 14px;
|
133 |
+
line-height: 42px;
|
134 |
+
border: 1px solid #ccc;
|
135 |
+
}
|
136 |
+
.metform-open-content-editor-button {
|
137 |
+
background-color: #4285F4;
|
138 |
+
border: none;
|
139 |
+
font-size: 16px;
|
140 |
+
line-height: 42px;
|
141 |
+
color: #fff;
|
142 |
+
border-radius: 5px;
|
143 |
+
padding: 4px 30px;
|
144 |
+
min-width: 170px;
|
145 |
+
box-sizing: border-box;
|
146 |
+
margin-top: 30px;
|
147 |
+
cursor: pointer;
|
148 |
+
}
|
149 |
+
.metform-open-content-editor-button > span {
|
150 |
+
margin-right: 12px;
|
151 |
+
}
|
152 |
+
.metform-editor-tab-content-item {
|
153 |
+
display: none;
|
154 |
+
}
|
155 |
+
.metform-editor-tab-content-item .metform-error {
|
156 |
+
color: red;
|
157 |
+
font-style: italic;
|
158 |
+
margin-top: 10px;
|
159 |
+
}
|
160 |
+
.metform-editor-tab-content-item.active {
|
161 |
+
display: block;
|
162 |
+
}
|
163 |
+
.metform-content-editor-tab {
|
164 |
+
display: flex;
|
165 |
+
justify-content: center;
|
166 |
+
flex-wrap: wrap;
|
167 |
+
margin-bottom: 20px;
|
168 |
+
}
|
169 |
+
.metform-content-editor-tab-item {
|
170 |
+
padding: 0 15px;
|
171 |
+
}
|
172 |
+
#metform-open-content-editor .metform-content-editor-radio {
|
173 |
+
-webkit-appearance: none;
|
174 |
+
appearance:none;
|
175 |
+
outline: none;
|
176 |
+
width: 20px;
|
177 |
+
height: 20px;
|
178 |
+
border: 2px solid #747474;
|
179 |
+
border-radius: 100px;
|
180 |
+
position: relative;
|
181 |
+
margin: 0;
|
182 |
+
margin-right: 8px;
|
183 |
+
}
|
184 |
+
#metform-open-content-editor .metform-content-editor-radio:checked{
|
185 |
+
border-color: #4285F4;
|
186 |
+
}
|
187 |
+
#metform-open-content-editor .metform-content-editor-radio:checked:before {
|
188 |
+
content: '';
|
189 |
+
background-color: #4285F4;
|
190 |
+
width: 10px;
|
191 |
+
height: 10px;
|
192 |
+
display: inline-block;
|
193 |
+
position: absolute;
|
194 |
+
left: 50%;
|
195 |
+
border-radius: 100px;
|
196 |
+
top: 50%;
|
197 |
+
transform: translate(-50%, -50%);
|
198 |
+
}
|
199 |
+
.metform-content-editor-tab-item label {
|
200 |
+
display: flex;
|
201 |
+
text-align: left;
|
202 |
+
cursor: pointer;
|
203 |
+
}
|
204 |
+
.metform-content-editor-radio-data p{
|
205 |
+
color: #101010;
|
206 |
+
font-size: 16px;
|
207 |
+
line-height: 20px;
|
208 |
+
margin: 0;
|
209 |
+
}
|
210 |
+
.metform-content-editor-radio-data span{
|
211 |
+
color: #999999;
|
212 |
+
font-size: 12px;
|
213 |
+
line-height: 25px;
|
214 |
+
margin: 0;
|
215 |
+
}
|
216 |
+
.metform-template-input-con{
|
217 |
+
margin-bottom: 20px;
|
218 |
+
}
|
219 |
+
.metform-templates-list {
|
220 |
+
display: flex;
|
221 |
+
flex-wrap: wrap;
|
222 |
+
}
|
223 |
+
.metform-templates-list li{
|
224 |
+
margin: 5px;
|
225 |
+
flex: 0 0 31.4%;
|
226 |
+
box-sizing: border-box;
|
227 |
+
}
|
228 |
+
.metform-templates-list li input{
|
229 |
+
display: none;
|
230 |
+
cursor: pointer;
|
231 |
+
}
|
232 |
+
.metform-template-radio-data {
|
233 |
+
min-height: 101px;
|
234 |
+
border: 1px solid #ccc;
|
235 |
+
display: flex;
|
236 |
+
justify-content: center;
|
237 |
+
align-items: center;
|
238 |
+
box-shadow: 0 15px 25px rgba(0, 0, 0, 0.07);
|
239 |
+
cursor: pointer;
|
240 |
+
height: 100%;
|
241 |
+
}
|
242 |
+
.metform-templates-list li input:checked + .metform-template-radio-data {
|
243 |
+
border: 1px solid #4285F4;
|
244 |
+
}
|
245 |
+
.metform-templates-list img {
|
246 |
+
max-width: 100%;
|
247 |
+
padding: 5px;
|
248 |
+
max-height: 180px;
|
249 |
+
}
|
250 |
+
.metform-form-edit-btn {
|
251 |
+
position: absolute;
|
252 |
+
right: 60px;
|
253 |
+
top: 0;
|
254 |
+
color: #4285F4;
|
255 |
+
font-size: 15px;
|
256 |
+
text-transform: uppercase;
|
257 |
+
padding: 18px 0;
|
258 |
+
}
|
259 |
+
.metform-form-edit-btn:hover{
|
260 |
+
color: #4285F4;
|
261 |
+
}
|
262 |
+
.metform-form-edit-btn i{
|
263 |
+
margin-right: 5px;
|
264 |
+
font-size: 18px;
|
265 |
+
margin-top: -4px;
|
266 |
+
}
|
267 |
+
.metform-open-content-editor-templates {
|
268 |
+
-webkit-appearance: none;
|
269 |
+
-moz-appearance: none;
|
270 |
+
background: transparent;
|
271 |
+
background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
|
272 |
+
background-repeat: no-repeat;
|
273 |
+
background-position-x: 98%;
|
274 |
+
background-position-y: 50%;
|
275 |
+
}
|
276 |
+
#metform-open-content-editor .metform-picker-close{
|
277 |
+
display: none;
|
278 |
+
position: static;
|
279 |
+
border: none;
|
280 |
+
background-color: transparent;
|
281 |
+
box-shadow: none;
|
282 |
+
margin-left: 10px;
|
283 |
}
|
controls/assets/js/form-picker-editor.js
CHANGED
@@ -1,60 +1 @@
|
|
1 |
-
( function (
|
2 |
-
"use strict";
|
3 |
-
|
4 |
-
var MetForm_FormPicker = {
|
5 |
-
init: function () {
|
6 |
-
elementor.hooks.addAction('frontend/element_ready/metform-dynamic.default', function ($scope) {
|
7 |
-
var editorButton = $scope.find('.formpicker_warper_edit');
|
8 |
-
|
9 |
-
var editorButton = $scope.find('.formpicker_warper_edit');
|
10 |
-
var resturl = editorButton.attr('resturl');
|
11 |
-
|
12 |
-
var selectModal = window.parent.$('.formpicker_iframe_mini_modal');
|
13 |
-
var selectModalEditButton = selectModal.find('#metform-open-content-editor');
|
14 |
-
|
15 |
-
editorButton.on('click', function(){
|
16 |
-
selectModal.show();
|
17 |
-
});
|
18 |
-
|
19 |
-
|
20 |
-
selectModalEditButton.on('click', function() {
|
21 |
-
var iframeParent = window.parent.$('#formpicker-control-iframe'),
|
22 |
-
modalContainer = window.parent.$('#elementor-template-library-modal'),
|
23 |
-
content_key = editorButton.parent().attr('data-metform-formpicker-key'),
|
24 |
-
index = editorButton.parent().attr('data-metform-formpicker-index'),
|
25 |
-
url = resturl + content_key;
|
26 |
-
|
27 |
-
window.parent.$('body').attr('data-metform-formpicker-key', content_key);
|
28 |
-
window.parent.$('body').attr('data-metform-formpicker-load', 'false');
|
29 |
-
|
30 |
-
modalContainer.css('display', 'block');
|
31 |
-
window.parent.$('.formpicker_iframe_modal').css('display', 'block');
|
32 |
-
window.parent.$('.dialog-lightbox-loading').css('display', 'block');
|
33 |
-
iframeParent.contents().find('#elementor-loading').css('display', 'block');
|
34 |
-
iframeParent.css('z-index', '-1');
|
35 |
-
iframeParent.attr('src', url);
|
36 |
-
|
37 |
-
iframeParent.on('load', function() {
|
38 |
-
window.parent.$('.dialog-lightbox-loading').css('display', 'none');
|
39 |
-
iframeParent.css('display', 'block');
|
40 |
-
iframeParent.contents().find('#elementor-loading').css('display', 'none');
|
41 |
-
iframeParent.css('z-index', '1');
|
42 |
-
})
|
43 |
-
});
|
44 |
-
|
45 |
-
if(typeof window.parent.$ != 'undefined'){
|
46 |
-
var iframeCloseButton = window.parent.$('#elementor-template-library-modal').find('.eicon-close');
|
47 |
-
iframeCloseButton.on('click', function() {
|
48 |
-
selectModal.hide();
|
49 |
-
window.parent.$('body').attr('data-metform-formpicker-load', 'true');
|
50 |
-
window.parent.$('body').attr('data-metform-formpicker-key', '');
|
51 |
-
});
|
52 |
-
}
|
53 |
-
|
54 |
-
});
|
55 |
-
},
|
56 |
-
};
|
57 |
-
|
58 |
-
$(window).on('elementor/frontend/init', MetForm_FormPicker.init);
|
59 |
-
|
60 |
-
}(jQuery, window.elementorFrontend) );
|
1 |
+
!function(e,t){"use strict";var o=function(){t.hooks.addAction("frontend/element_ready/metform.default",function(t){if(void 0!==window.parent.jQuery){var o=t.find(".formpicker_warper_edit");if(o.off("click.metform").on("click.metform",function(){var t=window.parent.jQuery("#metform-open-content-editor"),n=o.attr("data-metform-formpicker-key"),r=e(this).attr("data-nonce");t.find(".metform-error").remove(),t.find(".metform-content-editor-radio").first().trigger("click"),t.find(".metform-content-editor-radio").on("click",function(o){var n=e(this).closest("li").data("target");t.find("#"+n).fadeIn().siblings().hide()}),e.ajax({url:e(this).attr("resturl")+(n||0),type:"get",headers:{"X-WP-Nonce":r},dataType:"html",success:function(e){e?t.find(".metform-open-content-editor-templates").html(e):(t.find(".metform-content-editor-radio").last().trigger("click"),t.find(".metform-open-content-editor-templates").parent().append("<p class='metform-error'>No forms were created yet!</p>"))}}),t.show()}),window.parent.jQuery("#metform-open-content-editor").off("click.metform").on("click.metform",".metform-open-content-editor-button",function(){var t=window.parent.jQuery(".metform-dynamic-content-modal"),o=t.find("#formpicker-control-iframe"),n=t.find(".dialog-lightbox-loading"),r=t.find(".dialog-type-lightbox"),i=e(this).parents(".metform-open-content-inner"),d=i.find(".metform-open-content-editor-templates").val(),a=i.find(".metform-content-editor-radio:checked").val(),m=i.find(".metform-template-radio:checked").val(),f=i.find(".metform-template-input-con input").val(),c=window.parent.jQuery("#metform-form-modalinput-settings").data("nonce");"saved"==a?window.parent.jQuery("body").attr("data-metform-template-key",d):e.ajax({url:e(this).attr("resturl")+"builder_form_id/"+m+"?title="+f,type:"GET",headers:{"X-WP-Nonce":c},success:function(e){window.parent.jQuery("body").attr("data-metform-template-key",e),i.find(".metform-template-input-con input").val(""),i.find(".metform-template-radio").removeAttr("checked").first().attr("checked","checked"),d=e},async:!1});var l=e(this).attr("resturl")+"builder/"+d;window.parent.jQuery("body").attr("data-metform-template-load","false"),r.show(),t.show(),n.show(),o.contents().find("#elementor-loading").show(),o.css("z-index","-1"),o.attr("src",l),o.on("load",function(){n.hide(),o.show(),o.contents().find("#elementor-loading").hide(),o.css("z-index","1")})}),window.parent.jQuery("#elementor-editor-wrapper").on("click","#metform-inspactor-edit-button",function(){console.log("dom found")}),void 0!==window.parent.jQuery)window.parent.jQuery(".metform-close-editor-modals").off("click.metform").on("click.metform",function(){if(e(this).hasClass("metform-editor-close")){var t=window.parent.jQuery(".metform-dynamic-content-modal").find("#formpicker-control-iframe"),o=t[0].contentWindow||t[0].contentDocument;o.jQuery("#elementor-panel-saver-button-publish").hasClass("elementor-disabled")?n(window.parent):confirm("Leaving? Changes you made may not be saved.")?(o.jQuery(o).off("beforeunload"),n(window.parent)):o.jQuery(o).off("beforeunload")}else if(e(this).hasClass("metform-picker-close")){n(window.parent);var r=window.parent.jQuery("#metform-open-content-editor"),i=r.find(".metform-content-editor-radio:checked").val(),d=r.find(".metform-open-content-editor-templates").val();"saved"==i&&window.parent.jQuery("body").attr("data-metform-template-key",d),n(window.parent)}else n(window.parent);window.parent.jQuery("#metform-open-content-editor").find(".metform-picker-close").hide(),window.parent.jQuery("#metform-open-content-editor").find(".metform-template-radio").removeAttr("checked").first().attr("checked","checked")});window.parent.jQuery("#metform-open-content-editor").find(".metform-open-content-editor-templates").on("change",function(){window.parent.jQuery("#metform-open-content-editor").find(".metform-picker-close").fadeIn()})}function n(e){e.jQuery("body").attr("data-metform-template-load","true"),e.jQuery(".metform-dynamic-content-modal").hide(),e.jQuery("#metform-open-content-editor").hide()}})};e(window).on("elementor/frontend/init",o)}(jQuery,window.elementorFrontend);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
controls/assets/js/form-picker-inspactor.js
CHANGED
@@ -1,74 +1 @@
|
|
1 |
-
jQuery(window).on(
|
2 |
-
"use strict";
|
3 |
-
|
4 |
-
var closeButton = jQuery('.eicon-close');
|
5 |
-
closeButton.on('click', function () {
|
6 |
-
jQuery('.formpicker_iframe_modal').css('display', 'none')
|
7 |
-
})
|
8 |
-
|
9 |
-
var ControlBaseDataView = elementor.modules.controls.BaseData;
|
10 |
-
var ControlFormPickerItemView = ControlBaseDataView.extend({
|
11 |
-
interval : null,
|
12 |
-
|
13 |
-
ui: function ui() {
|
14 |
-
var ui = ControlBaseDataView.prototype.ui.apply(this, arguments);
|
15 |
-
ui.inputs = '[type="text"]';
|
16 |
-
return ui;
|
17 |
-
},
|
18 |
-
|
19 |
-
events: function events() {
|
20 |
-
return _.extend(ControlBaseDataView.prototype.events.apply(this, arguments), {
|
21 |
-
'change @ui.inputs': 'onBaseInputChange'
|
22 |
-
});
|
23 |
-
},
|
24 |
-
|
25 |
-
onBaseInputChange: function onBaseInputChange(event) {
|
26 |
-
clearTimeout(this.correctionTimeout);
|
27 |
-
|
28 |
-
var input = event.currentTarget,
|
29 |
-
value = this.getInputValue(input),
|
30 |
-
validators = this.validators.slice(0),
|
31 |
-
settingsValidators = this.elementSettingsModel.validators[this.model.get('name')];
|
32 |
-
|
33 |
-
//console.log(event.currentTarget);
|
34 |
-
//console.log(value);
|
35 |
-
|
36 |
-
this.updateElementModel(value, input);
|
37 |
-
|
38 |
-
//this.triggerMethod('input:change', event);
|
39 |
-
},
|
40 |
-
|
41 |
-
onDestroy: function onRender() {
|
42 |
-
console.log('boo');
|
43 |
-
clearInterval(window.interval2555);
|
44 |
-
},
|
45 |
-
|
46 |
-
onRender: function onRender() {
|
47 |
-
ControlBaseDataView.prototype.onRender.apply(this, arguments);
|
48 |
-
var self = this;
|
49 |
-
|
50 |
-
window.interval2555 = setInterval(function(){
|
51 |
-
var formpicker_load = $('body').attr('data-metform-formpicker-load'),
|
52 |
-
formpicker_key = $('body').attr('data-metform-formpicker-key');
|
53 |
-
|
54 |
-
// console.log([formpicker_load, formpicker_key]);
|
55 |
-
|
56 |
-
if(formpicker_load == 'true'){
|
57 |
-
var time = new Date().getTime(),
|
58 |
-
new_val,
|
59 |
-
formpicker_key_spilt = formpicker_key.split('***');
|
60 |
-
|
61 |
-
formpicker_key_spilt = formpicker_key_spilt[0];
|
62 |
-
new_val = formpicker_key_spilt + '***' + time;
|
63 |
-
|
64 |
-
$('body').attr('data-metform-formpicker-load', 'false');
|
65 |
-
self.setValue(new_val);
|
66 |
-
}
|
67 |
-
console.log([formpicker_key, self.isRendered, self.isDestroyed]);
|
68 |
-
}, 1000);
|
69 |
-
}
|
70 |
-
}, {
|
71 |
-
|
72 |
-
});
|
73 |
-
elementor.addControlView('formpicker', ControlFormPickerItemView);
|
74 |
-
});
|
1 |
+
jQuery(window).on("elementor:init",function(){"use strict";var e=elementor.modules.controls.BaseData,t=e.extend({interval:null,ui:function(){var t=e.prototype.ui.apply(this,arguments);return t.inputs='[type="text"]',t},events:function(){return _.extend(e.prototype.events.apply(this,arguments),{"change @ui.inputs":"onBaseInputChange"})},onBaseInputChange:function(e){clearTimeout(this.correctionTimeout);var t=e.currentTarget,n=this.getInputValue(t);this.validators.slice(0),this.elementSettingsModel.validators[this.model.get("name")];this.updateElementModel(n,t)},onDestroy:function(){clearInterval(window.metFormPickerInterval2555)},onRender:function(){e.prototype.onRender.apply(this,arguments);var t=this;window.metFormPickerInterval2555=setInterval(function(){var e=jQuery("body").attr("data-metform-template-load"),n=jQuery("body").attr("data-metform-template-key");if("true"==e&&1==t.isRendered&&void 0!==n){var r,o=(new Date).getTime(),a=n.split("***");r=(a=a[0])+"***"+o,jQuery("body").attr("data-metform-template-load","false"),t.setValue(r)}},200)}},{});elementor.addControlView("formpicker",t)});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
controls/form-editor-modal.php
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
<?php defined( 'ABSPATH' ) || exit; ?>
|
2 |
-
<div class="dialog-widget dialog-lightbox-widget dialog-type-buttons dialog-type-lightbox elementor-templates-modal metform-dynamic-content-modal" id="elementor-template-
|
3 |
<div class="dialog-widget-content dialog-lightbox-widget-content">
|
4 |
<div class="dialog-header dialog-lightbox-header">
|
5 |
<div class="elementor-templates-modal__header">
|
@@ -10,13 +10,12 @@
|
|
10 |
</span>
|
11 |
<span class="elementor-templates-modal__header__logo__title"><?php esc_html_e('MetForm', 'metform'); ?></span>
|
12 |
</div>
|
13 |
-
|
14 |
-
<a data-metform-form-id="152" class="attr-btn attr-btn-info metform-form-edit-btn" href="#">Click Here</a>
|
15 |
</div>
|
16 |
|
17 |
<div class="elementor-templates-modal__header__items-area">
|
18 |
<div class="elementor-templates-modal__header__close elementor-templates-modal__header__close--normal elementor-templates-modal__header__item">
|
19 |
-
<i class="eicon-close" aria-hidden="true" title="<?php echo esc_attr__('Close', 'metform'); ?>"></i>
|
20 |
<span class="elementor-screen-only"><?php esc_html_e('Close', 'metform'); ?></span>
|
21 |
</div>
|
22 |
</div>
|
1 |
<?php defined( 'ABSPATH' ) || exit; ?>
|
2 |
+
<div class="dialog-widget dialog-lightbox-widget dialog-type-buttons dialog-type-lightbox elementor-templates-modal metform-dynamic-content-modal column-title" id="elementor-template-form-picker-modal-container" style="display: none;">
|
3 |
<div class="dialog-widget-content dialog-lightbox-widget-content">
|
4 |
<div class="dialog-header dialog-lightbox-header">
|
5 |
<div class="elementor-templates-modal__header">
|
10 |
</span>
|
11 |
<span class="elementor-templates-modal__header__logo__title"><?php esc_html_e('MetForm', 'metform'); ?></span>
|
12 |
</div>
|
13 |
+
<a class="metform-form-edit-btn" href="#"><i class="eicon-cog"></i><?php esc_html_e('Form settings', 'metform') ?></a>
|
|
|
14 |
</div>
|
15 |
|
16 |
<div class="elementor-templates-modal__header__items-area">
|
17 |
<div class="elementor-templates-modal__header__close elementor-templates-modal__header__close--normal elementor-templates-modal__header__item">
|
18 |
+
<i class="eicon-close metform-close-editor-modals metform-editor-close" aria-hidden="true" title="<?php echo esc_attr__('Close', 'metform'); ?>"></i>
|
19 |
<span class="elementor-screen-only"><?php esc_html_e('Close', 'metform'); ?></span>
|
20 |
</div>
|
21 |
</div>
|
controls/form-picker-modal.php
CHANGED
@@ -1,2 +1,69 @@
|
|
1 |
-
|
2 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<div id="metform-open-content-editor" style="display:none;">
|
2 |
+
<div class="metform-open-content-inner">
|
3 |
+
<div class="metform-content">
|
4 |
+
<ul class="metform-content-editor-tab">
|
5 |
+
<li class="metform-content-editor-tab-item active" data-target="metform-select-form-content">
|
6 |
+
<label>
|
7 |
+
<input class="metform-content-editor-radio" name="metform-editor-tab" type="radio" checked value="saved">
|
8 |
+
|
9 |
+
<div class="metform-content-editor-radio-data">
|
10 |
+
<p><?php esc_html_e('Select Form', 'metform') ?></p>
|
11 |
+
<span><?php esc_html_e('Select saved form', 'metform') ?></span>
|
12 |
+
</div>
|
13 |
+
</label>
|
14 |
+
</li>
|
15 |
+
|
16 |
+
<li class="metform-content-editor-tab-item" data-target="metform-templates-content">
|
17 |
+
<label>
|
18 |
+
<input class="metform-content-editor-radio" name="metform-editor-tab" type="radio" value="template">
|
19 |
+
|
20 |
+
<div class="metform-content-editor-radio-data">
|
21 |
+
<p><?php esc_html_e('New', 'metform') ?></p>
|
22 |
+
<span><?php esc_html_e('Create new form', 'metform') ?></span>
|
23 |
+
</div>
|
24 |
+
</label>
|
25 |
+
</li>
|
26 |
+
</ul>
|
27 |
+
|
28 |
+
<div class="metform-editor-tab-content">
|
29 |
+
<div class="metform-editor-tab-content-item active" id="metform-select-form-content">
|
30 |
+
<select name="metform-saved-form" class="metform-open-content-editor-templates metform-editor-input"></select>
|
31 |
+
</div>
|
32 |
+
<div class="metform-editor-tab-content-item" id="metform-templates-content">
|
33 |
+
|
34 |
+
<div class="metform-template-input-con">
|
35 |
+
<input type="text" class="metform-editor-input" placeholder="<?php esc_html_e('Enter a form name', 'metform'); ?>">
|
36 |
+
</div>
|
37 |
+
|
38 |
+
<ul class="metform-templates-list">
|
39 |
+
<li>
|
40 |
+
<label>
|
41 |
+
<input class="metform-template-radio" name="metform-editor-template" type="radio" value="0" checked>
|
42 |
+
<div class="metform-template-radio-data"> </div>
|
43 |
+
</label>
|
44 |
+
</li>
|
45 |
+
|
46 |
+
<?php foreach(\MetForm\Templates\Base::instance()->get_templates() as $template): ?>
|
47 |
+
<li>
|
48 |
+
<label>
|
49 |
+
<input class="metform-template-radio" name="metform-editor-template" type="radio" value="<?php echo esc_attr($template['id']); ?>">
|
50 |
+
<div class="metform-template-radio-data">
|
51 |
+
<img src="<?php echo esc_url($template['preview-thumb']); ?>" alt="<?php echo esc_attr($template['title']) ?>">
|
52 |
+
</div>
|
53 |
+
</label>
|
54 |
+
</li>
|
55 |
+
<?php endforeach; ?>
|
56 |
+
|
57 |
+
</ul>
|
58 |
+
|
59 |
+
</div>
|
60 |
+
</div>
|
61 |
+
|
62 |
+
<button resturl="<?php echo get_rest_url() ?>metform/v1/forms/" class="metform-open-content-editor-button"><span class="eicon-elementor"></span><?php esc_html_e('Edit form', 'metform') ?></button>
|
63 |
+
|
64 |
+
<span class="metform-close-editor-modals metform-picker-close"><?php esc_html_e('Save & close', 'metform'); ?></span>
|
65 |
+
|
66 |
+
<i class="eicon-close metform-close-editor-modals" aria-hidden="true" title="<?php echo esc_attr__('Close', 'metform'); ?>"></i>
|
67 |
+
</div>
|
68 |
+
</div>
|
69 |
+
</div>
|
controls/form-picker-utils.php
CHANGED
@@ -10,44 +10,36 @@ class Form_Picker_Utils{
|
|
10 |
}
|
11 |
|
12 |
public function modal_content() {
|
13 |
-
|
14 |
-
<div class="
|
15 |
<?php include 'form-picker-modal.php'; ?>
|
|
|
16 |
</div>
|
17 |
<div class="formpicker_iframe_modal">
|
18 |
<?php include 'form-editor-modal.php'; ?>
|
19 |
</div>
|
20 |
<?php
|
21 |
-
$output = ob_get_contents();
|
22 |
-
ob_end_clean();
|
23 |
-
|
24 |
-
echo \MetForm\Utils\Util::render($output);
|
25 |
}
|
26 |
|
27 |
-
public static function parse($
|
28 |
-
$key = ($content == '') ? $widget_key : $content;
|
29 |
$extract_key = explode('***', $key);
|
30 |
$extract_key = $extract_key[0];
|
31 |
ob_start(); ?>
|
32 |
|
33 |
<div class="formpicker_warper formpicker_warper_editable" data-metform-formpicker-key="<?php echo esc_attr($extract_key); ?>" >
|
34 |
-
<div class="formpicker_warper_edit"
|
35 |
<i class="metform-builder-edit" aria-hidden="true"></i>
|
36 |
-
<
|
37 |
</div>
|
38 |
|
39 |
<div class="elementor-widget-container">
|
40 |
-
<?php
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
}else{
|
48 |
-
echo esc_html__('no content added yet', 'metform');
|
49 |
-
}
|
50 |
-
?>
|
51 |
</div>
|
52 |
</div>
|
53 |
<?php
|
10 |
}
|
11 |
|
12 |
public function modal_content() {
|
13 |
+
?>
|
14 |
+
<div class="metform_open_content_editor_modal">
|
15 |
<?php include 'form-picker-modal.php'; ?>
|
16 |
+
<?php include \MetForm\Plugin::instance()->core_dir() . 'forms/views/modal-editor.php'; ?>
|
17 |
</div>
|
18 |
<div class="formpicker_iframe_modal">
|
19 |
<?php include 'form-editor-modal.php'; ?>
|
20 |
</div>
|
21 |
<?php
|
|
|
|
|
|
|
|
|
22 |
}
|
23 |
|
24 |
+
public static function parse($key, $widget_key){
|
|
|
25 |
$extract_key = explode('***', $key);
|
26 |
$extract_key = $extract_key[0];
|
27 |
ob_start(); ?>
|
28 |
|
29 |
<div class="formpicker_warper formpicker_warper_editable" data-metform-formpicker-key="<?php echo esc_attr($extract_key); ?>" >
|
30 |
+
<div class="formpicker_warper_edit" data-metform-formpicker-key="<?php echo esc_attr($extract_key); ?>" data-nonce="<?php echo wp_create_nonce('wp_rest');?>" resturl="<?php echo get_rest_url() ?>metform/v1/forms/templates/" >
|
31 |
<i class="metform-builder-edit" aria-hidden="true"></i>
|
32 |
+
<a href="#" class="elementor-screen-only" title="<?php esc_html_e('Edit Form Content', 'metform'); ?>"><?php esc_html_e('Edit', 'metform'); ?></a>
|
33 |
</div>
|
34 |
|
35 |
<div class="elementor-widget-container">
|
36 |
+
<?php
|
37 |
+
if($extract_key == ''){
|
38 |
+
echo esc_html__('No content is added yet.', 'metform');
|
39 |
+
}else{
|
40 |
+
echo \MetForm\Utils\Util::render_form_content($extract_key, $widget_key);
|
41 |
+
}
|
42 |
+
?>
|
|
|
|
|
|
|
|
|
43 |
</div>
|
44 |
</div>
|
45 |
<?php
|
controls/form-picker.php
CHANGED
@@ -54,6 +54,7 @@ class Form_Picker extends \Elementor\Base_Data_Control {
|
|
54 |
<input id="<?php echo esc_attr($control_uid); ?>" type="text" data-setting="{{ data.name }}" />
|
55 |
</div>
|
56 |
</div>
|
|
|
57 |
<# if ( data.description ) { #>
|
58 |
<div class="elementor-control-field-description">{{{ data.description }}}</div>
|
59 |
<# } #>
|
54 |
<input id="<?php echo esc_attr($control_uid); ?>" type="text" data-setting="{{ data.name }}" />
|
55 |
</div>
|
56 |
</div>
|
57 |
+
<!-- <button id="metform-inspactor-edit-button">Edit Form Content</button> -->
|
58 |
<# if ( data.description ) { #>
|
59 |
<div class="elementor-control-field-description">{{{ data.description }}}</div>
|
60 |
<# } #>
|
core/entries/action.php
CHANGED
@@ -51,8 +51,10 @@ Class Action{
|
|
51 |
if($form_id != null){
|
52 |
$this->form_id = $form_id;
|
53 |
}
|
54 |
-
|
55 |
-
$entry_count = (
|
|
|
|
|
56 |
|
57 |
$this->entry_count = $entry_count;
|
58 |
|
@@ -104,6 +106,28 @@ Class Action{
|
|
104 |
}
|
105 |
}
|
106 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
public function get_email_name($fields = null){
|
108 |
if($fields != null){
|
109 |
$this->fields = $fields;
|
@@ -122,6 +146,23 @@ Class Action{
|
|
122 |
return $response;
|
123 |
}
|
124 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
125 |
public function submit($form_id, $form_data, $file_data){
|
126 |
|
127 |
$this->form_id = $form_id;
|
@@ -434,6 +475,16 @@ Class Action{
|
|
434 |
$entry_count = $this->get_entry_count();
|
435 |
$entry_count++;
|
436 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
437 |
update_post_meta( $form_id, $this->key_form_total_entries, $entry_count );
|
438 |
update_post_meta( $this->entry_id, $this->key_form_id, $form_id );
|
439 |
update_post_meta( $this->entry_id, $this->key_form_data, $this->form_data );
|
51 |
if($form_id != null){
|
52 |
$this->form_id = $form_id;
|
53 |
}
|
54 |
+
global $wpdb;
|
55 |
+
$entry_count = $wpdb->get_results( " SELECT COUNT( `post_id` ) as `count` FROM `".$wpdb->prefix."postmeta` WHERE `meta_key` LIKE 'metform_entries__form_id' AND `meta_value` = $this->form_id ", OBJECT );
|
56 |
+
|
57 |
+
$entry_count = $entry_count[0]->count;
|
58 |
|
59 |
$this->entry_count = $entry_count;
|
60 |
|
106 |
}
|
107 |
}
|
108 |
|
109 |
+
public function get_repeater_input_name($fields = null){
|
110 |
+
if($fields != null){
|
111 |
+
$this->fields = $fields;
|
112 |
+
}
|
113 |
+
$response = [];
|
114 |
+
|
115 |
+
$repeaters = array_values(array_filter($this->fields, function($v){
|
116 |
+
if($v->widgetType == 'mf-simple-repeater'){
|
117 |
+
return $v;
|
118 |
+
}
|
119 |
+
}));
|
120 |
+
foreach($repeaters as $repeater){
|
121 |
+
$response [] = $repeater->mf_input_name;
|
122 |
+
}
|
123 |
+
|
124 |
+
if(!empty($response)){
|
125 |
+
return $response;
|
126 |
+
}else{
|
127 |
+
return null;
|
128 |
+
}
|
129 |
+
}
|
130 |
+
|
131 |
public function get_email_name($fields = null){
|
132 |
if($fields != null){
|
133 |
$this->fields = $fields;
|
146 |
return $response;
|
147 |
}
|
148 |
|
149 |
+
public function process_repeater_data($repeater_data){
|
150 |
+
$data = [];
|
151 |
+
foreach($repeater_data as $index => $value){
|
152 |
+
if(is_array($value)){
|
153 |
+
foreach($value as $input_name => $input_value){
|
154 |
+
$proc_key = $input_name."-".($index+1);
|
155 |
+
if(is_array($input_value)){
|
156 |
+
$data[$proc_key] = implode(', ', $input_value);
|
157 |
+
}else{
|
158 |
+
$data[$proc_key] = $input_value;
|
159 |
+
}
|
160 |
+
}
|
161 |
+
}
|
162 |
+
}
|
163 |
+
return $data;
|
164 |
+
}
|
165 |
+
|
166 |
public function submit($form_id, $form_data, $file_data){
|
167 |
|
168 |
$this->form_id = $form_id;
|
475 |
$entry_count = $this->get_entry_count();
|
476 |
$entry_count++;
|
477 |
|
478 |
+
$repeaters = $this->get_repeater_input_name();
|
479 |
+
|
480 |
+
$repeaters = (is_array($repeaters) ? $repeaters : []);
|
481 |
+
|
482 |
+
foreach( $repeaters as $repeater ){
|
483 |
+
//$repeater_form_data = $this->form_data[$repeater];
|
484 |
+
$repeater_process_data = $this->process_repeater_data( $this->form_data[$repeater] );
|
485 |
+
$this->form_data[$repeater] = $repeater_process_data;
|
486 |
+
}
|
487 |
+
|
488 |
update_post_meta( $form_id, $this->key_form_total_entries, $entry_count );
|
489 |
update_post_meta( $this->entry_id, $this->key_form_id, $form_id );
|
490 |
update_post_meta( $this->entry_id, $this->key_form_data, $this->form_data );
|
core/entries/export.php
CHANGED
@@ -34,6 +34,14 @@ Class Export{
|
|
34 |
$header_key = ( ($value->mf_input_label != '') ? $value->mf_input_label : $key );
|
35 |
if($value->widgetType == 'mf-file-upload'){
|
36 |
$entry_modify[$header_key] = (isset($entry_data[$key]) ? ((isset($entry_data[$key]['url'])) ? $entry_data[$key]['url'] : ' ' ) : ' ' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
}else{
|
38 |
$entry_modify[$header_key] = (isset($entry_data[$key]) ? ((is_array($entry_data[$key])) ? implode(', ', $entry_data[$key]) : $entry_data[$key]) : ' ' );
|
39 |
}
|
34 |
$header_key = ( ($value->mf_input_label != '') ? $value->mf_input_label : $key );
|
35 |
if($value->widgetType == 'mf-file-upload'){
|
36 |
$entry_modify[$header_key] = (isset($entry_data[$key]) ? ((isset($entry_data[$key]['url'])) ? $entry_data[$key]['url'] : ' ' ) : ' ' );
|
37 |
+
}else if($value->widgetType == 'mf-simple-repeater'){
|
38 |
+
$data_string = '';
|
39 |
+
if(is_array($entry_data[$key])){
|
40 |
+
foreach( $entry_data[$key] as $key => $value ){
|
41 |
+
$data_string .= $key.": ".$value." \n";
|
42 |
+
}
|
43 |
+
}
|
44 |
+
$entry_modify[$header_key] = $data_string;
|
45 |
}else{
|
46 |
$entry_modify[$header_key] = (isset($entry_data[$key]) ? ((is_array($entry_data[$key])) ? implode(', ', $entry_data[$key]) : $entry_data[$key]) : ' ' );
|
47 |
}
|
core/entries/form-data.php
CHANGED
@@ -19,12 +19,27 @@ Class Form_Data{
|
|
19 |
<tbody>
|
20 |
<?php
|
21 |
foreach($map_data as $key => $value){
|
22 |
-
if($value['widgetType'] != 'mf-file-upload'){
|
23 |
echo "<tr>";
|
24 |
echo "<th scope='attr-row'><strong>".esc_attr(($map_data[$key]['mf_input_label'] != '') ? $map_data[$key]['mf_input_label'] : $key)."</strong></th>";
|
25 |
echo "<td>".esc_html((array_key_exists($key, $form_data) ? ((is_array($form_data[$key])) ? implode(', ', $form_data[$key]) : $form_data[$key]) : ' '))."</td>";
|
26 |
echo "</tr>";
|
27 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
}
|
29 |
?>
|
30 |
</tbody>
|
19 |
<tbody>
|
20 |
<?php
|
21 |
foreach($map_data as $key => $value){
|
22 |
+
if( ( $value['widgetType'] != 'mf-file-upload' ) && ( $value['widgetType'] != 'mf-simple-repeater' ) ){
|
23 |
echo "<tr>";
|
24 |
echo "<th scope='attr-row'><strong>".esc_attr(($map_data[$key]['mf_input_label'] != '') ? $map_data[$key]['mf_input_label'] : $key)."</strong></th>";
|
25 |
echo "<td>".esc_html((array_key_exists($key, $form_data) ? ((is_array($form_data[$key])) ? implode(', ', $form_data[$key]) : $form_data[$key]) : ' '))."</td>";
|
26 |
echo "</tr>";
|
27 |
}
|
28 |
+
|
29 |
+
if( $value['widgetType'] == 'mf-simple-repeater' ){
|
30 |
+
echo "<tr>";
|
31 |
+
echo "<th scope='attr-row'><strong>".esc_attr(($map_data[$key]['mf_input_label'] != '') ? $map_data[$key]['mf_input_label'] : $key)."</strong></th>";
|
32 |
+
echo "<td>";
|
33 |
+
$repeater_data = ((array_key_exists($key, $form_data)) ? $form_data[$key] : []);
|
34 |
+
foreach($repeater_data as $key => $value){
|
35 |
+
echo "<strong>".$key.": </strong>";
|
36 |
+
echo "<span>".$value."</span>";
|
37 |
+
echo "<br>";
|
38 |
+
}
|
39 |
+
echo "</td>";
|
40 |
+
echo "</tr>";
|
41 |
+
}
|
42 |
+
|
43 |
}
|
44 |
?>
|
45 |
</tbody>
|
core/entries/hooks.php
CHANGED
@@ -35,11 +35,12 @@ Class Hooks {
|
|
35 |
case 'form_name':
|
36 |
$form_id = get_post_meta($post_id, 'metform_entries__form_id', true);
|
37 |
$form_name = get_post((int)$form_id);
|
|
|
38 |
|
39 |
global $wp;
|
40 |
$current_url = add_query_arg( $wp->query_string."&form_id=".$form_id, '', home_url( $wp->request ) );
|
41 |
|
42 |
-
echo "<a data-metform-form-id=".esc_attr($form_id)." class='mf-entry-filter' href=".esc_url($current_url).">".esc_html($
|
43 |
break;
|
44 |
}
|
45 |
}
|
35 |
case 'form_name':
|
36 |
$form_id = get_post_meta($post_id, 'metform_entries__form_id', true);
|
37 |
$form_name = get_post((int)$form_id);
|
38 |
+
$post_title = (isset($form_name->post_title) ? $form_name->post_title : '');
|
39 |
|
40 |
global $wp;
|
41 |
$current_url = add_query_arg( $wp->query_string."&form_id=".$form_id, '', home_url( $wp->request ) );
|
42 |
|
43 |
+
echo "<a data-metform-form-id=".esc_attr($form_id)." class='mf-entry-filter' href=".esc_url($current_url).">".esc_html($post_title)."</a>";
|
44 |
break;
|
45 |
}
|
46 |
}
|
core/entries/meta-data.php
CHANGED
@@ -165,6 +165,9 @@ Class Meta_Data{
|
|
165 |
echo "<div class='mf-file-show'><p class='mf-file'>";
|
166 |
|
167 |
foreach($this->file_meta_data as $key => $value){
|
|
|
|
|
|
|
168 |
$file_url = isset($value['url']) ? $value['url'] : '';
|
169 |
$file_type = isset($value['type']) ? $value['type'] : '';
|
170 |
if ( $file_url != '' ) {
|
165 |
echo "<div class='mf-file-show'><p class='mf-file'>";
|
166 |
|
167 |
foreach($this->file_meta_data as $key => $value){
|
168 |
+
if(empty($this->fields)){
|
169 |
+
return;
|
170 |
+
}
|
171 |
$file_url = isset($value['url']) ? $value['url'] : '';
|
172 |
$file_type = isset($value['type']) ? $value['type'] : '';
|
173 |
if ( $file_url != '' ) {
|
core/forms/action.php
CHANGED
@@ -20,7 +20,7 @@ Class Action{
|
|
20 |
return;
|
21 |
}
|
22 |
|
23 |
-
$this->key_form_settings =
|
24 |
$this->post_type = Base::instance()->form->get_name();
|
25 |
|
26 |
$this->response = [
|
@@ -123,112 +123,7 @@ Class Action{
|
|
123 |
}
|
124 |
|
125 |
public function get_fields(){
|
126 |
-
|
127 |
-
return [
|
128 |
-
|
129 |
-
'form_title' => [
|
130 |
-
'name' => 'form_title',
|
131 |
-
],
|
132 |
-
'success_message' => [
|
133 |
-
'name' => 'success_message',
|
134 |
-
],
|
135 |
-
'store_entries' => [
|
136 |
-
'name' => 'store_entries',
|
137 |
-
],
|
138 |
-
'hide_form_after_submission' => [
|
139 |
-
'name' => 'hide_form_after_submission',
|
140 |
-
],
|
141 |
-
'redirect_to' => [
|
142 |
-
'name' => 'redirect_to',
|
143 |
-
],
|
144 |
-
'require_login' => [
|
145 |
-
'name' => 'require_login',
|
146 |
-
],
|
147 |
-
'limit_total_entries_status' => [
|
148 |
-
'name' => 'limit_total_entries_status',
|
149 |
-
],
|
150 |
-
'limit_total_entries' => [
|
151 |
-
'name' => 'limit_total_entries',
|
152 |
-
],
|
153 |
-
'multiple_submission' => [
|
154 |
-
'name' => 'multiple_submission',
|
155 |
-
],
|
156 |
-
'enable_recaptcha' => [
|
157 |
-
'name' => 'enable_recaptcha',
|
158 |
-
],
|
159 |
-
'capture_user_browser_data' => [
|
160 |
-
'name' => 'capture_user_browser_data',
|
161 |
-
],
|
162 |
-
'enable_user_notification' => [
|
163 |
-
'name' => 'enable_user_notification',
|
164 |
-
],
|
165 |
-
'user_email_subject' => [
|
166 |
-
'name' => 'user_email_subject',
|
167 |
-
],
|
168 |
-
'user_email_from' => [
|
169 |
-
'name' => 'user_email_from',
|
170 |
-
],
|
171 |
-
'user_email_reply_to' => [
|
172 |
-
'name' => 'user_email_reply_to',
|
173 |
-
],
|
174 |
-
'user_email_body' => [
|
175 |
-
'name' => 'user_email_body',
|
176 |
-
],
|
177 |
-
'user_email_attach_submission_copy' => [
|
178 |
-
'name' => 'user_email_attach_submission_copy',
|
179 |
-
],
|
180 |
-
'enable_admin_notification' => [
|
181 |
-
'name' => 'enable_admin_notification',
|
182 |
-
],
|
183 |
-
'admin_email_subject' => [
|
184 |
-
'name' => 'admin_email_subject',
|
185 |
-
],
|
186 |
-
'admin_email_from' => [
|
187 |
-
'name' => 'admin_email_from',
|
188 |
-
],
|
189 |
-
'admin_email_to' => [
|
190 |
-
'name' => 'admin_email_to',
|
191 |
-
],
|
192 |
-
'admin_email_reply_to' => [
|
193 |
-
'name' => 'admin_email_reply_to',
|
194 |
-
],
|
195 |
-
'admin_email_body' => [
|
196 |
-
'name' => 'admin_email_body',
|
197 |
-
],
|
198 |
-
'admin_email_attach_submission_copy' => [
|
199 |
-
'name' => 'admin_email_attach_submission_copy',
|
200 |
-
],
|
201 |
-
'mf_mail_chimp' => [
|
202 |
-
'name' => 'mf_mail_chimp',
|
203 |
-
],
|
204 |
-
'mf_mailchimp_api_key' => [
|
205 |
-
'name' => 'mf_mailchimp_api_key',
|
206 |
-
],
|
207 |
-
'mf_mailchimp_list_id' => [
|
208 |
-
'name' => 'mf_mailchimp_list_id',
|
209 |
-
],
|
210 |
-
'mf_zapier' => [
|
211 |
-
'name' => 'mf_zapier',
|
212 |
-
],
|
213 |
-
'mf_zapier_webhook' => [
|
214 |
-
'name' => 'mf_zapier_webhook',
|
215 |
-
],
|
216 |
-
'mf_slack' => [
|
217 |
-
'name' => 'mf_slack',
|
218 |
-
],
|
219 |
-
'mf_slack_webhook' => [
|
220 |
-
'name' => 'mf_slack_webhook',
|
221 |
-
],
|
222 |
-
'mf_recaptcha' => [
|
223 |
-
'name' => 'mf_recaptcha',
|
224 |
-
],
|
225 |
-
'mf_recaptcha_site_key' => [
|
226 |
-
'name' => 'mf_recaptcha_site_key',
|
227 |
-
],
|
228 |
-
'mf_recaptcha_secret_key' => [
|
229 |
-
'name' => 'mf_recaptcha_secret_key',
|
230 |
-
],
|
231 |
-
];
|
232 |
}
|
233 |
|
234 |
public function sanitize( $form_setting, $fields = null ){
|
@@ -251,7 +146,7 @@ Class Action{
|
|
251 |
|
252 |
$data = get_post_meta( $post->ID, $this->key_form_settings, true );
|
253 |
|
254 |
-
|
255 |
|
256 |
return $data;
|
257 |
|
20 |
return;
|
21 |
}
|
22 |
|
23 |
+
$this->key_form_settings = Base::instance()->form->get_key_form_settings();
|
24 |
$this->post_type = Base::instance()->form->get_name();
|
25 |
|
26 |
$this->response = [
|
123 |
}
|
124 |
|
125 |
public function get_fields(){
|
126 |
+
return Base::instance()->form->get_form_settings_fields();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
127 |
}
|
128 |
|
129 |
public function sanitize( $form_setting, $fields = null ){
|
146 |
|
147 |
$data = get_post_meta( $post->ID, $this->key_form_settings, true );
|
148 |
|
149 |
+
$data['form_title'] = get_the_title($post_id);
|
150 |
|
151 |
return $data;
|
152 |
|
core/forms/api.php
CHANGED
@@ -18,15 +18,37 @@ Class Api extends \MetForm\Base\Api{
|
|
18 |
}
|
19 |
|
20 |
public function get_get(){
|
21 |
-
$
|
22 |
|
23 |
-
return Action::instance()->get_all_data($
|
24 |
}
|
25 |
|
26 |
public function get_builder(){
|
27 |
-
$
|
|
|
|
|
28 |
|
29 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
}
|
31 |
|
32 |
}
|
18 |
}
|
19 |
|
20 |
public function get_get(){
|
21 |
+
$form_id = $this->request['id'];
|
22 |
|
23 |
+
return Action::instance()->get_all_data($form_id);
|
24 |
}
|
25 |
|
26 |
public function get_builder(){
|
27 |
+
$form_id = $this->request['id'];
|
28 |
+
return Builder::instance()->get_editor($form_id);
|
29 |
+
}
|
30 |
|
31 |
+
public function get_builder_form_id(){
|
32 |
+
$title = $this->request['title'];
|
33 |
+
$template_id = $this->request['id'];
|
34 |
+
return Builder::instance()->create_form($title, $template_id);
|
35 |
+
}
|
36 |
+
|
37 |
+
public function get_templates(){
|
38 |
+
$form_id = $this->request['id'];
|
39 |
+
$args = array(
|
40 |
+
'post_type' => Base::instance()->form->get_name(),
|
41 |
+
'post_status' => 'publish',
|
42 |
+
'posts_per_page' => -1
|
43 |
+
);
|
44 |
+
|
45 |
+
$forms = get_posts( $args );
|
46 |
+
|
47 |
+
foreach($forms as $form){
|
48 |
+
echo '<option value="'.$form->ID.'" '.selected($form_id, $form->ID, false).'>'.$form->post_title.'</option>';
|
49 |
+
}
|
50 |
+
|
51 |
+
exit();
|
52 |
}
|
53 |
|
54 |
}
|
core/forms/builder.php
CHANGED
@@ -6,27 +6,47 @@ Class Builder{
|
|
6 |
|
7 |
use \MetForm\Traits\Singleton;
|
8 |
|
9 |
-
public function get_editor( $
|
10 |
-
|
11 |
-
$
|
12 |
-
|
13 |
-
|
14 |
-
if(is_null($builder_post_id)){
|
15 |
-
$defaults = array(
|
16 |
-
'post_content' => '',
|
17 |
-
'post_title' => $builder_post_title,
|
18 |
-
'post_status' => 'publish',
|
19 |
-
'post_type' => 'metform-form',
|
20 |
-
);
|
21 |
-
$builder_post_id = wp_insert_post($defaults);
|
22 |
-
|
23 |
-
update_post_meta( $builder_post_id, '_wp_page_template', 'elementor_canvas' );
|
24 |
-
}else{
|
25 |
-
$builder_post_id = $builder_post_id->ID;
|
26 |
-
}
|
27 |
-
|
28 |
-
$url = get_admin_url() . '/post.php?post='.$builder_post_id.'&action=elementor';
|
29 |
wp_redirect( $url );
|
30 |
exit;
|
31 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
}
|
6 |
|
7 |
use \MetForm\Traits\Singleton;
|
8 |
|
9 |
+
public function get_editor( $form_id ){
|
10 |
+
$builder_form_id = get_post($form_id);
|
11 |
+
$builder_form_id = $builder_form_id->ID;
|
12 |
+
|
13 |
+
$url = get_admin_url() . '/post.php?post='.$builder_form_id.'&action=elementor';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
wp_redirect( $url );
|
15 |
exit;
|
16 |
}
|
17 |
+
|
18 |
+
public function create_form($title, $template_id = 0, $data = []){
|
19 |
+
$template_id = ($template_id == '') ? 0 : $template_id;
|
20 |
+
$title = ($title == '' ? 'New Form # ' . time() : $title);
|
21 |
+
$template_content = \MetForm\Templates\Base::instance()->get_template_contents($template_id);
|
22 |
+
|
23 |
+
$user_id = get_current_user_id();
|
24 |
+
|
25 |
+
$defaults = array(
|
26 |
+
'post_author' => $user_id,
|
27 |
+
'post_content' => '',
|
28 |
+
'post_title' => $title,
|
29 |
+
'post_status' => 'publish',
|
30 |
+
'post_type' => 'metform-form',
|
31 |
+
);
|
32 |
+
$builder_form_id = wp_insert_post($defaults);
|
33 |
+
|
34 |
+
$default_settings = array_map(function(){
|
35 |
+
return '';
|
36 |
+
}, \MetForm\Core\Forms\Base::instance()->form->get_form_settings_fields());
|
37 |
+
|
38 |
+
$default_settings['success_message'] = esc_html('Thank you! Form submitted successfully.');
|
39 |
+
$default_settings['store_entries'] = '1';
|
40 |
+
$default_settings['form_title'] = $defaults['post_title'];
|
41 |
+
|
42 |
+
update_post_meta( $builder_form_id, '_wp_page_template', 'elementor_canvas' );
|
43 |
+
update_post_meta( $builder_form_id, \MetForm\Core\Forms\Base::instance()->form->get_key_form_settings(), $default_settings );
|
44 |
+
update_post_meta( $builder_form_id, '_elementor_edit_mode', 'builder');
|
45 |
+
|
46 |
+
if($template_content != null){
|
47 |
+
update_post_meta($builder_form_id, '_elementor_data', json_encode($template_content));
|
48 |
+
}
|
49 |
+
|
50 |
+
return $builder_form_id;
|
51 |
+
}
|
52 |
}
|
core/forms/cpt.php
CHANGED
@@ -9,6 +9,119 @@ Class Cpt extends \MetForm\Base\Cpt{
|
|
9 |
return 'metform-form';
|
10 |
}
|
11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
public function post_type()
|
13 |
{
|
14 |
$labels = array(
|
9 |
return 'metform-form';
|
10 |
}
|
11 |
|
12 |
+
public function get_key_form_settings(){
|
13 |
+
return 'metform_form__form_setting';
|
14 |
+
}
|
15 |
+
|
16 |
+
public function get_form_settings_fields(){
|
17 |
+
|
18 |
+
return [
|
19 |
+
|
20 |
+
'form_title' => [
|
21 |
+
'name' => 'form_title',
|
22 |
+
],
|
23 |
+
'success_message' => [
|
24 |
+
'name' => 'success_message',
|
25 |
+
],
|
26 |
+
'store_entries' => [
|
27 |
+
'name' => 'store_entries',
|
28 |
+
],
|
29 |
+
'hide_form_after_submission' => [
|
30 |
+
'name' => 'hide_form_after_submission',
|
31 |
+
],
|
32 |
+
'redirect_to' => [
|
33 |
+
'name' => 'redirect_to',
|
34 |
+
],
|
35 |
+
'require_login' => [
|
36 |
+
'name' => 'require_login',
|
37 |
+
],
|
38 |
+
'limit_total_entries_status' => [
|
39 |
+
'name' => 'limit_total_entries_status',
|
40 |
+
],
|
41 |
+
'limit_total_entries' => [
|
42 |
+
'name' => 'limit_total_entries',
|
43 |
+
],
|
44 |
+
'multiple_submission' => [
|
45 |
+
'name' => 'multiple_submission',
|
46 |
+
],
|
47 |
+
'enable_recaptcha' => [
|
48 |
+
'name' => 'enable_recaptcha',
|
49 |
+
],
|
50 |
+
'capture_user_browser_data' => [
|
51 |
+
'name' => 'capture_user_browser_data',
|
52 |
+
],
|
53 |
+
'enable_user_notification' => [
|
54 |
+
'name' => 'enable_user_notification',
|
55 |
+
],
|
56 |
+
'user_email_subject' => [
|
57 |
+
'name' => 'user_email_subject',
|
58 |
+
],
|
59 |
+
'user_email_from' => [
|
60 |
+
'name' => 'user_email_from',
|
61 |
+
],
|
62 |
+
'user_email_reply_to' => [
|
63 |
+
'name' => 'user_email_reply_to',
|
64 |
+
],
|
65 |
+
'user_email_body' => [
|
66 |
+
'name' => 'user_email_body',
|
67 |
+
],
|
68 |
+
'user_email_attach_submission_copy' => [
|
69 |
+
'name' => 'user_email_attach_submission_copy',
|
70 |
+
],
|
71 |
+
'enable_admin_notification' => [
|
72 |
+
'name' => 'enable_admin_notification',
|
73 |
+
],
|
74 |
+
'admin_email_subject' => [
|
75 |
+
'name' => 'admin_email_subject',
|
76 |
+
],
|
77 |
+
'admin_email_from' => [
|
78 |
+
'name' => 'admin_email_from',
|
79 |
+
],
|
80 |
+
'admin_email_to' => [
|
81 |
+
'name' => 'admin_email_to',
|
82 |
+
],
|
83 |
+
'admin_email_reply_to' => [
|
84 |
+
'name' => 'admin_email_reply_to',
|
85 |
+
],
|
86 |
+
'admin_email_body' => [
|
87 |
+
'name' => 'admin_email_body',
|
88 |
+
],
|
89 |
+
'admin_email_attach_submission_copy' => [
|
90 |
+
'name' => 'admin_email_attach_submission_copy',
|
91 |
+
],
|
92 |
+
'mf_mail_chimp' => [
|
93 |
+
'name' => 'mf_mail_chimp',
|
94 |
+
],
|
95 |
+
'mf_mailchimp_api_key' => [
|
96 |
+
'name' => 'mf_mailchimp_api_key',
|
97 |
+
],
|
98 |
+
'mf_mailchimp_list_id' => [
|
99 |
+
'name' => 'mf_mailchimp_list_id',
|
100 |
+
],
|
101 |
+
'mf_zapier' => [
|
102 |
+
'name' => 'mf_zapier',
|
103 |
+
],
|
104 |
+
'mf_zapier_webhook' => [
|
105 |
+
'name' => 'mf_zapier_webhook',
|
106 |
+
],
|
107 |
+
'mf_slack' => [
|
108 |
+
'name' => 'mf_slack',
|
109 |
+
],
|
110 |
+
'mf_slack_webhook' => [
|
111 |
+
'name' => 'mf_slack_webhook',
|
112 |
+
],
|
113 |
+
'mf_recaptcha' => [
|
114 |
+
'name' => 'mf_recaptcha',
|
115 |
+
],
|
116 |
+
'mf_recaptcha_site_key' => [
|
117 |
+
'name' => 'mf_recaptcha_site_key',
|
118 |
+
],
|
119 |
+
'mf_recaptcha_secret_key' => [
|
120 |
+
'name' => 'mf_recaptcha_secret_key',
|
121 |
+
],
|
122 |
+
];
|
123 |
+
}
|
124 |
+
|
125 |
public function post_type()
|
126 |
{
|
127 |
$labels = array(
|
core/forms/hooks.php
CHANGED
@@ -57,8 +57,8 @@ Class Hooks{
|
|
57 |
$url = $rest_url."metform/v1/entries/export/".$post_id;
|
58 |
$export_url = \MetForm\Utils\Util::add_param_url($url, "_wpnonce", $mf_ex_nonce);
|
59 |
|
60 |
-
echo "<a data-metform-form-id=".esc_attr($post_id)." class='mf-entry-filter' href=".esc_url($current_url).">".esc_html($count)."</a
|
61 |
-
echo "<a class='mf-entry-export-csv' href=".esc_url($export_url).">".esc_html__('Export CSV', 'metform')."</a>";
|
62 |
break;
|
63 |
}
|
64 |
}
|
57 |
$url = $rest_url."metform/v1/entries/export/".$post_id;
|
58 |
$export_url = \MetForm\Utils\Util::add_param_url($url, "_wpnonce", $mf_ex_nonce);
|
59 |
|
60 |
+
echo "<a data-metform-form-id=".esc_attr($post_id)." class='attr-btn attr-btn-primary mf-entry-filter' href=".esc_url($current_url).">".esc_html($count)."</a>";
|
61 |
+
echo "<a class='attr-btn attr-btn-info mf-entry-export-csv' href=".esc_url($export_url).">".esc_html__('Export CSV', 'metform')."</a>";
|
62 |
break;
|
63 |
}
|
64 |
}
|
core/forms/views/modal-editor.php
CHANGED
@@ -105,7 +105,7 @@
|
|
105 |
<br>
|
106 |
<div class="mf-input-group mf-form-user-confirmation">
|
107 |
<label for="attr-input-label" class="attr-input-label"><?php esc_html_e('Email Subject:', 'metform'); ?></label>
|
108 |
-
<input type="text" name="user_email_subject" class="mf-form-user-email-subject attr-form-control" placeholder="<?php esc_html_e('Email subject', 'metform');?>"
|
109 |
<span class='mf-input-help'><?php esc_html_e('Enter here email subject.','metform'); ?></span>
|
110 |
</div>
|
111 |
<br>
|
105 |
<br>
|
106 |
<div class="mf-input-group mf-form-user-confirmation">
|
107 |
<label for="attr-input-label" class="attr-input-label"><?php esc_html_e('Email Subject:', 'metform'); ?></label>
|
108 |
+
<input type="text" name="user_email_subject" class="mf-form-user-email-subject attr-form-control" placeholder="<?php esc_html_e('Email subject', 'metform');?>" >
|
109 |
<span class='mf-input-help'><?php esc_html_e('Enter here email subject.','metform'); ?></span>
|
110 |
</div>
|
111 |
<br>
|
init.php
CHANGED
@@ -30,6 +30,12 @@ final class Plugin{
|
|
30 |
add_action( 'admin_menu',[$this,'admin_menu']);
|
31 |
}
|
32 |
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
add_action( 'init', array( $this, 'i18n' ) );
|
34 |
|
35 |
add_action('admin_enqueue_scripts', [$this,'js_css_admin']);
|
@@ -46,7 +52,7 @@ final class Plugin{
|
|
46 |
}
|
47 |
|
48 |
public function version(){
|
49 |
-
return '1.
|
50 |
}
|
51 |
|
52 |
public function package_type(){
|
@@ -107,21 +113,25 @@ final class Plugin{
|
|
107 |
|
108 |
function js_css_public(){
|
109 |
|
110 |
-
wp_enqueue_style('asRange',
|
111 |
-
wp_enqueue_style('select2',
|
112 |
-
wp_enqueue_style('flatpickr',
|
113 |
-
wp_enqueue_style('metform-ui',
|
114 |
-
wp_enqueue_style('font-awesome',
|
115 |
-
wp_enqueue_style('metform-style',
|
116 |
-
|
|
|
|
|
|
|
|
|
|
|
117 |
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
wp_enqueue_script('intlTelInput', plugin_dir_url(__FILE__) . 'libs/assets/js/intlTelInput.js', array(), $this->version(), true);
|
122 |
|
123 |
wp_register_script('recaptcha', 'https://www.google.com/recaptcha/api.js?onload=onloadMetFormCallback&render=explicit', array(), $this->version(), true);
|
124 |
-
wp_enqueue_script('metform-submission',
|
125 |
wp_localize_script('metform-submission', 'mf_plugin', array(
|
126 |
'mf_dir' => plugin_dir_url(__FILE__),
|
127 |
));
|
@@ -129,8 +139,22 @@ final class Plugin{
|
|
129 |
|
130 |
}
|
131 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
public function elementor_js() {
|
133 |
-
wp_enqueue_script('metform-inputs',
|
134 |
wp_localize_script('metform-inputs', 'mf_plugin', array(
|
135 |
'mf_dir' => plugin_dir_url(__FILE__),
|
136 |
));
|
@@ -142,18 +166,18 @@ final class Plugin{
|
|
142 |
|
143 |
if(in_array($screen->id, ['edit-metform-form','metform_page_mt-form-settings', 'metform-entry'])){
|
144 |
|
145 |
-
wp_enqueue_style('metform-ui',
|
146 |
-
wp_enqueue_style('metform-admin-style',
|
147 |
|
148 |
-
wp_enqueue_script('metform-ui',
|
149 |
-
wp_enqueue_script('metform-admin-script',
|
150 |
wp_localize_script('metform-admin-script', 'metform_api', array( 'resturl' => get_rest_url() ));
|
151 |
|
152 |
}
|
153 |
|
154 |
if($screen->id == 'edit-metform-entry' || $screen->id == 'metform-entry'){
|
155 |
-
wp_enqueue_style('metform-ui',
|
156 |
-
wp_enqueue_script('metform-entry-script',
|
157 |
}
|
158 |
|
159 |
}
|
30 |
add_action( 'admin_menu',[$this,'admin_menu']);
|
31 |
}
|
32 |
|
33 |
+
|
34 |
+
|
35 |
+
add_action( 'elementor/editor/before_enqueue_scripts', [$this, 'edit_view_scripts'] );
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
add_action( 'init', array( $this, 'i18n' ) );
|
40 |
|
41 |
add_action('admin_enqueue_scripts', [$this,'js_css_admin']);
|
52 |
}
|
53 |
|
54 |
public function version(){
|
55 |
+
return '1.1.0';
|
56 |
}
|
57 |
|
58 |
public function package_type(){
|
113 |
|
114 |
function js_css_public(){
|
115 |
|
116 |
+
wp_enqueue_style('asRange', $this->libs_url().'assets/css/asRange.min.css', false, $this->version());
|
117 |
+
wp_enqueue_style('select2', $this->libs_url().'assets/css/select2.min.css', false, $this->version());
|
118 |
+
wp_enqueue_style('flatpickr', $this->libs_url().'assets/css/flatpickr.min.css', false, $this->version());
|
119 |
+
wp_enqueue_style('metform-ui', $this->libs_url().'assets/css/metform-ui.css', false, $this->version());
|
120 |
+
wp_enqueue_style('font-awesome', $this->libs_url().'assets/css/font-awesome.min.css', false, $this->version());
|
121 |
+
wp_enqueue_style('metform-style', $this->libs_url().'assets/css/style.css', false, $this->version());
|
122 |
+
wp_register_style('intlTelInput', $this->libs_url().'assets/css/intlTelInput.css', false, $this->version());
|
123 |
+
|
124 |
+
wp_enqueue_script('asRange', $this->libs_url().'assets/js/jquery-asRange.min.js', array(), $this->version(), true);
|
125 |
+
wp_enqueue_script('select2', $this->libs_url().'assets/js/select2.min.js', array(), $this->version(), true);
|
126 |
+
wp_enqueue_script('flatpickr', $this->libs_url().'assets/js/flatpickr.js', array(), $this->version(), true);
|
127 |
+
wp_register_script('intlTelInput', $this->libs_url().'assets/js/intlTelInput.js', array(), $this->version(), true);
|
128 |
|
129 |
+
if(class_exists('\MetForm\Base\Package')){
|
130 |
+
wp_enqueue_script( 'metform-conditional-logic', $this->libs_url().'assets/js/conditional-logic.js', array(), $this->version(), true );
|
131 |
+
}
|
|
|
132 |
|
133 |
wp_register_script('recaptcha', 'https://www.google.com/recaptcha/api.js?onload=onloadMetFormCallback&render=explicit', array(), $this->version(), true);
|
134 |
+
wp_enqueue_script('metform-submission', $this->libs_url().'assets/js/submission.js', array(), $this->version(), true);
|
135 |
wp_localize_script('metform-submission', 'mf_plugin', array(
|
136 |
'mf_dir' => plugin_dir_url(__FILE__),
|
137 |
));
|
139 |
|
140 |
}
|
141 |
|
142 |
+
public function edit_view_scripts(){
|
143 |
+
wp_enqueue_style('metform-ui', $this->libs_url().'assets/css/metform-ui.css', false, $this->version());
|
144 |
+
wp_enqueue_style('metform-admin-style', $this->libs_url().'assets/css/admin-style.css', false, $this->version());
|
145 |
+
|
146 |
+
wp_enqueue_script('metform-ui', $this->libs_url().'assets/js/ui.min.js', array(), $this->version(), true);
|
147 |
+
wp_enqueue_script('metform-admin-script', $this->libs_url().'assets/js/admin-script.js', array(), $this->version(), true);
|
148 |
+
|
149 |
+
wp_add_inline_script('metform-admin-script', "
|
150 |
+
var metform_api = {
|
151 |
+
resturl: '". get_rest_url() ."'
|
152 |
+
}
|
153 |
+
");
|
154 |
+
}
|
155 |
+
|
156 |
public function elementor_js() {
|
157 |
+
wp_enqueue_script('metform-inputs', $this->libs_url().'assets/js/inputs.js', array('elementor-frontend'), $this->version(), true);
|
158 |
wp_localize_script('metform-inputs', 'mf_plugin', array(
|
159 |
'mf_dir' => plugin_dir_url(__FILE__),
|
160 |
));
|
166 |
|
167 |
if(in_array($screen->id, ['edit-metform-form','metform_page_mt-form-settings', 'metform-entry'])){
|
168 |
|
169 |
+
wp_enqueue_style('metform-ui', $this->libs_url().'assets/css/metform-ui.css', false, $this->version());
|
170 |
+
wp_enqueue_style('metform-admin-style', $this->libs_url().'assets/css/admin-style.css', false, $this->version());
|
171 |
|
172 |
+
wp_enqueue_script('metform-ui', $this->libs_url().'assets/js/ui.min.js', array(), $this->version(), true);
|
173 |
+
wp_enqueue_script('metform-admin-script', $this->libs_url().'assets/js/admin-script.js', array(), $this->version(), true);
|
174 |
wp_localize_script('metform-admin-script', 'metform_api', array( 'resturl' => get_rest_url() ));
|
175 |
|
176 |
}
|
177 |
|
178 |
if($screen->id == 'edit-metform-entry' || $screen->id == 'metform-entry'){
|
179 |
+
wp_enqueue_style('metform-ui', $this->libs_url().'assets/css/metform-ui.css', false, $this->version());
|
180 |
+
wp_enqueue_script('metform-entry-script', $this->libs_url().'assets/js/admin-entry-script.js', array(), $this->version(), true);
|
181 |
}
|
182 |
|
183 |
}
|
libs/assets/css/admin-style.css
CHANGED
@@ -1 +1,6 @@
|
|
1 |
-
.
|
|
|
|
|
|
|
|
|
|
1 |
+
.elementor-editor-active .metform-form-save-btn-editor{
|
2 |
+
display: none!important;
|
3 |
+
}
|
4 |
+
|
5 |
+
.loading .attr-modal-content:before{opacity:.8;position:absolute;content:"";top:0;left:0;height:100%;width:100%;background-color:#fff;-webkit-transition:opaicty .5s ease;-o-transition:opaicty .5s ease;transition:opaicty .5s ease;z-index:5;border-radius:inherit}.loading .ekit-spinner{display:block}.attr-modal-dialog-centered{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:30px;width:565px}.attr-modal-dialog-centered .attr-modal-header{padding:36px 50px;border-bottom:none}.attr-modal-dialog-centered .attr-modal-header .attr-modal-title{font-size:20px;font-weight:bold;color:#111111;text-transform:capitalize;margin-bottom:38px;line-height:1}.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs{border:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs li{margin:0;float:none}.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs a{text-decoration:none;text-align:center;color:#111111;font-size:14px;text-transform:capitalize;font-weight:600;padding:8px 14px;border:none;margin-right:0;border:none}.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs a:hover{border:none;background-color:transparent}.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs a:focus{outline:none;-webkit-box-shadow:none;box-shadow:none;border:none}.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs li.attr-active a{border:none;color:#ffffff;background-color:#1F55F8;border-radius:4px}.attr-modal-dialog-centered .attr-modal-header button.attr-close{opacity:.8;font-size:inherit;outline:none;margin-top:-15px;margin-right:-25px}.attr-modal-dialog-centered .attr-modal-header button.attr-close span{color:#e81123;font-size:35px;font-weight:100;background-color:#FCE7E9;height:36px;width:36px;display:inline-block;line-height:36px;border-radius:100px;outline:none;margin-top:5px;font-family:initial}.attr-modal-dialog-centered .attr-tab-content .attr-modal-body{padding:40px 50px;padding-top:0}.attr-modal-dialog-centered .attr-tab-content div#limit_status.hide_input{display:none}.attr-modal-dialog-centered .attr-tab-content .mf-input-group label.attr-input-label{color:#111111;font-size:16px;margin-bottom:7px;display:block;font-weight:500}.attr-modal-dialog-centered .attr-tab-content .mf-input-group{margin-bottom:14px}.attr-modal-dialog-centered .attr-tab-content .mf-input-group .attr-form-control,.attr-modal-dialog-centered .attr-tab-content .mf-input-group input{color:#555;font-size:14px;height:48px;padding:0 22px;border-color:#ededed;-webkit-box-shadow:0px 2px 5px rgba(153, 153, 153, 0.2);box-shadow:0px 2px 5px rgba(153, 153, 153, 0.2);margin-top:12px}.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox]{display:none}.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox]+span{position:relative;display:block}.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox]+span:before{content:"No";width:55px;height:25px;background-color:#EDEDED;left:0;border-radius:15px;text-align:right;color:#fff;text-transform:uppercase;font-weight:bold;font-size:10px;padding:3px;-webkit-box-sizing:border-box;box-sizing:border-box;padding-right:10px;-webkit-transition:all .4s;-o-transition:all .4s;transition:all .4s;float:right;line-height:18px;cursor:pointer}.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox]+span:after{content:"";width:20px;height:20px;background-color:#fff;border-radius:100px;display:inline-block;position:absolute;right:31px;top:2px;-webkit-transition:all .4s;-o-transition:all .4s;transition:all .4s}.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox]:checked+span:before{content:"Yes";width:55px;height:25px;background-color:#1F55F8;left:0;border-radius:15px;display:inline-block;text-align:left;color:#fff;text-transform:uppercase;font-weight:bold;font-size:10px;padding:3px;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:10px}.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox]:checked+span:after{content:"";width:20px;height:20px;background-color:#fff;border-radius:100px;display:inline-block;position:absolute;right:2px;top:2px}.attr-modal-dialog-centered .attr-tab-content .mf-input-group span.mf-input-help{color:#b7b7b7;font-style:italic;font-size:12px}.attr-modal-dialog-centered .attr-tab-content .mf-input-group span.mf-input-help strong{color:red}.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner label.attr-input-label{display:inline-block}.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner #limit_status{width:100px;margin:0;position:relative;margin-left:15px;float:right;margin-top:-2px}.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner input{margin:0}.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner input[type=checkbox]+span:before{position:relative;top:-2px;left:5px}.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner input[type=checkbox]+span:after{right:28px;top:0px}.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner input[type=checkbox]:checked+span:after{right:-2px;top:0}.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=number]+span,.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=text]+span{display:block;margin-top:5px}.attr-modal-dialog-centered .attr-tab-content #limit_status.show_input{margin-top:32px}.attr-modal-dialog-centered .attr-modal-footer{padding:30px 50px}.attr-modal-dialog-centered .attr-modal-footer button{color:#fff;background-color:#1F55F8;font-size:16px;font-weight:bold;-webkit-box-sizing:border-box;box-sizing:border-box;padding:12px 20px;-webkit-box-shadow:none;box-shadow:none;border:1px solid transparent;-webkit-transition:all .4s;-o-transition:all .4s;transition:all .4s;outline:none}.attr-modal-dialog-centered .attr-modal-footer button:focus{border:none;outline:none}.attr-modal-dialog-centered .attr-modal-footer button.metform-form-save-btn-editor{background-color:#d8d8d8;color:#111111}.attr-modal-dialog-centered>form{width:100%}.modal-backdrop{position:fixed;top:0;left:0;width:100vw;height:100vh;background-color:rgba(0, 0, 0, 0.5)}.modal-backdrop{z-index:9999}.attr-modal{z-index:10000}.ekit_multipile_ajax_search_filed .select2-container--default .select2-selection--multiple .select2-selection__choice{line-height:1.5;font-size:.9em;border:none;border-radius:0;color:#6d7882}.ekit-headerfooter-status{display:inline-block;margin-left:5px;padding:2px 5px 3px;color:#FFFFFF;background-color:#9a9a9a;border-radius:3px;font-size:10px;line-height:1;font-weight:700}.ekit-headerfooter-status-active{background-color:#00cd00}.irs--round .irs-max,.irs--round .irs-min{display:none}.irs--round .irs-handle{cursor:pointer}.mf-success-msg{position:fixed;z-index:9;text-align:center;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);-webkit-box-shadow:0px 2px 5px rgba(153, 153, 153, 0.2);box-shadow:0px 2px 5px rgba(153, 153, 153, 0.2);min-width:300px}textarea.attr-form-control{height:auto!important}.post-type-metform-form .row-actions .inline{display:none!important}div.metform-entry-browser-data table tbody,div.metform-entry-browser-data table thead,div.metform-entry-data table tbody,div.metform-entry-data table thead{text-align:left}img.form-editor-icon{height:20px;width:20px;margin-right:5px;vertical-align:middle}div.mf-file-show button.attr-btn.attr-btn-primary{margin-left:10px}.mf-file-show a{text-decoration:none}.mf-modal-container{margin-top:50px}.mf-modal-container .attr-modal-body img{margin:0 auto}.mf-entry-input,.mf-entry-label{-webkit-box-sizing:border-box;box-sizing:border-box}.mf-entry-filter{margin-right:10px}.mf-entry-filter{min-width:15%}.mf-entry-export-csv{min-width:20%}.metform_open_content_editor_modal .attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox]+span:before{line-height:20px}
|
6 |
+
|
libs/assets/css/style.css
CHANGED
@@ -114,6 +114,8 @@
|
|
114 |
font-size: 14px;
|
115 |
}
|
116 |
.mf-input-wrapper .mf-input-label{
|
|
|
|
|
117 |
font-size: 14px;
|
118 |
display: block;
|
119 |
color: #000000;
|
@@ -397,4 +399,31 @@ display: none;
|
|
397 |
}
|
398 |
.mf-input-wrapper .iti > .iti__flag-container{
|
399 |
display: block;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
400 |
}
|
114 |
font-size: 14px;
|
115 |
}
|
116 |
.mf-input-wrapper .mf-input-label{
|
117 |
+
font-family: "Roboto", Sans-serif;
|
118 |
+
font-weight: 600;
|
119 |
font-size: 14px;
|
120 |
display: block;
|
121 |
color: #000000;
|
399 |
}
|
400 |
.mf-input-wrapper .iti > .iti__flag-container{
|
401 |
display: block;
|
402 |
+
}
|
403 |
+
/* HIDE RADIO */
|
404 |
+
.mf-image-select-input,
|
405 |
+
.mf-toggle-select-input {
|
406 |
+
position: absolute;
|
407 |
+
opacity: 0;
|
408 |
+
width: 0;
|
409 |
+
height: 0;
|
410 |
+
}
|
411 |
+
|
412 |
+
/* IMAGE STYLES */
|
413 |
+
.mf-image-select-input + img,
|
414 |
+
.mf-toggle-select-input + p {
|
415 |
+
cursor: pointer;
|
416 |
+
}
|
417 |
+
|
418 |
+
.flatpickr-calendar {
|
419 |
+
margin-bottom: -8px;
|
420 |
+
}
|
421 |
+
|
422 |
+
.flatpickr-month {
|
423 |
+
margin-top: 3px;
|
424 |
+
margin-bottom: 5px;
|
425 |
+
}
|
426 |
+
|
427 |
+
ul.mf-input.mf-input-rating{
|
428 |
+
border: none;
|
429 |
}
|
libs/assets/js/admin-script.js
CHANGED
@@ -1,16 +1,22 @@
|
|
1 |
jQuery(document).ready(function ($) {
|
2 |
"use strict";
|
|
|
3 |
|
4 |
$('.row-actions .edit a, .page-title-action, .metform-form-edit-btn, body.post-type-metform-form a.row-title').on('click', function (e) {
|
5 |
e.preventDefault();
|
6 |
var id = 0;
|
7 |
var modal = $('#metform_form_modal');
|
8 |
var parent = $(this).parents('.column-title');
|
|
|
9 |
|
10 |
modal.addClass('loading');
|
11 |
modal.modal('show');
|
12 |
if (parent.length > 0) {
|
|
|
13 |
id = $(this).attr('data-metform-form-id');
|
|
|
|
|
|
|
14 |
id = (id !== undefined) ? id : parent.find('.hidden').attr('id').split('_')[1];
|
15 |
var nonce = $('#metform-form-modalinput-settings').attr('data-nonce');
|
16 |
|
@@ -66,7 +72,7 @@ jQuery(document).ready(function ($) {
|
|
66 |
e.preventDefault();
|
67 |
var modal = $('#metform-form-modal');
|
68 |
modal.addClass('loading');
|
69 |
-
|
70 |
$('.metform-form-save-btn-editor').attr('disabled', true);
|
71 |
$('.metform-form-save-btn').attr('disabled', true);
|
72 |
|
1 |
jQuery(document).ready(function ($) {
|
2 |
"use strict";
|
3 |
+
// console.log('foo');
|
4 |
|
5 |
$('.row-actions .edit a, .page-title-action, .metform-form-edit-btn, body.post-type-metform-form a.row-title').on('click', function (e) {
|
6 |
e.preventDefault();
|
7 |
var id = 0;
|
8 |
var modal = $('#metform_form_modal');
|
9 |
var parent = $(this).parents('.column-title');
|
10 |
+
var templateKey = $('body').attr('data-metform-template-key');
|
11 |
|
12 |
modal.addClass('loading');
|
13 |
modal.modal('show');
|
14 |
if (parent.length > 0) {
|
15 |
+
|
16 |
id = $(this).attr('data-metform-form-id');
|
17 |
+
if( templateKey !== 'undefined'){
|
18 |
+
id = templateKey
|
19 |
+
}
|
20 |
id = (id !== undefined) ? id : parent.find('.hidden').attr('id').split('_')[1];
|
21 |
var nonce = $('#metform-form-modalinput-settings').attr('data-nonce');
|
22 |
|
72 |
e.preventDefault();
|
73 |
var modal = $('#metform-form-modal');
|
74 |
modal.addClass('loading');
|
75 |
+
|
76 |
$('.metform-form-save-btn-editor').attr('disabled', true);
|
77 |
$('.metform-form-save-btn').attr('disabled', true);
|
78 |
|
libs/assets/js/inputs.js
CHANGED
@@ -1,154 +1,217 @@
|
|
1 |
(function ($, elementor) {
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
|
4 |
var MetForm = {
|
5 |
|
6 |
init: function () {
|
7 |
var widgets = {
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
|
|
|
|
|
|
|
|
15 |
};
|
16 |
$.each(widgets, function (widget, callback) {
|
17 |
elementor.hooks.addAction('frontend/element_ready/' + widget, callback);
|
18 |
});
|
19 |
-
|
20 |
-
|
21 |
RangeInput: function ($scope) {
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
152 |
|
153 |
$(window).on('elementor/frontend/init', MetForm.init);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
154 |
}(jQuery, window.elementorFrontend));
|
1 |
(function ($, elementor) {
|
2 |
+
"use strict";
|
3 |
+
|
4 |
+
var scope;
|
5 |
+
|
6 |
+
function triggerRepeater($scope){
|
7 |
+
var el = $scope.find('.mf-input-wrapper .mf-repater-range-input[type="range"]');
|
8 |
+
var min = el.attr('min');
|
9 |
+
var max = el.attr('max');
|
10 |
+
var step = el.attr('step');
|
11 |
+
|
12 |
+
var config = {
|
13 |
+
step: step,
|
14 |
+
min: min,
|
15 |
+
max: max,
|
16 |
+
}
|
17 |
+
el.asRange(config);
|
18 |
+
}
|
19 |
|
20 |
var MetForm = {
|
21 |
|
22 |
init: function () {
|
23 |
var widgets = {
|
24 |
+
'mf-range.default': MetForm.RangeInput,
|
25 |
+
'mf-date.default': MetForm.DateInput,
|
26 |
+
'mf-time.default': MetForm.TimeInput,
|
27 |
+
'mf-select.default': MetForm.SelectInput,
|
28 |
+
'mf-multi-select.default': MetForm.MultiSelectInput,
|
29 |
+
'mf-rating.default': MetForm.Rating,
|
30 |
+
'mf-mobile.default': MetForm.Mobile,
|
31 |
+
'mf-image-select.default': MetForm.ImageSelect,
|
32 |
+
'mf-toggle-select.default': MetForm.ToggleSelect,
|
33 |
+
'mf-simple-repeater.default': MetForm.SimpleRepeater,
|
34 |
+
|
35 |
};
|
36 |
$.each(widgets, function (widget, callback) {
|
37 |
elementor.hooks.addAction('frontend/element_ready/' + widget, callback);
|
38 |
});
|
39 |
+
},
|
40 |
+
|
41 |
RangeInput: function ($scope) {
|
42 |
+
var el = $scope.find('.mf-rs-range');
|
43 |
+
var min = el.attr('min');
|
44 |
+
var max = el.attr('max');
|
45 |
+
var step = el.attr('step');
|
46 |
+
var range = el.attr('range');
|
47 |
+
|
48 |
+
var config = {
|
49 |
+
step: step,
|
50 |
+
min: min,
|
51 |
+
max: max,
|
52 |
+
}
|
53 |
+
|
54 |
+
if (range == 'true') config.range = Boolean(range);
|
55 |
+
|
56 |
+
el.asRange(config);
|
57 |
+
|
58 |
+
el.on('asRange::change', function (e) {
|
59 |
+
var val = $(this).asRange('get');
|
60 |
+
|
61 |
+
if(Array.isArray(val)){
|
62 |
+
val = Number(val[1]) - Number(val[0]);
|
63 |
+
}
|
64 |
+
$(this).val(val).trigger('change');
|
65 |
+
});
|
66 |
+
},
|
67 |
+
|
68 |
+
SimpleRepeater: function ($scope) {
|
69 |
+
scope = $scope;
|
70 |
+
/* Create Repeater */
|
71 |
+
$scope.find(".mf-input-repeater").createRepeater({
|
72 |
+
showFirstItemToDefault: true,
|
73 |
+
});
|
74 |
+
triggerRepeater($scope);
|
75 |
+
},
|
76 |
+
|
77 |
+
DateInput: function ($scope) {
|
78 |
+
var el = $scope.find('.mf-date-input');
|
79 |
+
var minDateToday = el.data('mfmindatetoday');
|
80 |
+
var rangeDate = el.data('mfrangedate');
|
81 |
+
var dateFormat = el.data('mf_date_format');
|
82 |
+
var dateToday = el.data('mfdefaultdate');
|
83 |
+
var wrapper = $scope.find('.mf-input-wrapper');
|
84 |
+
|
85 |
+
var config = {
|
86 |
+
appendTo: wrapper.get(0),
|
87 |
+
dateFormat: dateFormat,
|
88 |
+
}
|
89 |
+
|
90 |
+
if (dateToday == 'today') config.defaultDate = 'today';
|
91 |
+
if (minDateToday == 'yes') config.minDate = 'today';
|
92 |
+
if (rangeDate == 'yes') config.mode = 'range';
|
93 |
+
el.flatpickr(config);
|
94 |
+
},
|
95 |
+
|
96 |
+
TimeInput: function ($scope) {
|
97 |
+
var el = $scope.find('.mf-input-time');
|
98 |
+
var time24h = el.attr('mftime24h');
|
99 |
+
var wrapper = $scope.find('.mf-input-wrapper');
|
100 |
+
var config = {
|
101 |
+
appendTo: wrapper.get(0),
|
102 |
+
dateFormat: "h:i K",
|
103 |
+
enableTime: true,
|
104 |
+
noCalendar: true
|
105 |
+
}
|
106 |
+
|
107 |
+
if (time24h == 'yes') {
|
108 |
+
config.dateFormat = 'H:i';
|
109 |
+
config.time_24hr = true;
|
110 |
+
}
|
111 |
+
|
112 |
+
el.flatpickr(config);
|
113 |
+
},
|
114 |
+
|
115 |
+
SelectInput: function ($scope) {
|
116 |
+
var el = $scope.find('select.mf-input-dropdown');
|
117 |
+
|
118 |
+
el.select2({
|
119 |
+
dropdownParent: $scope.find('.mf-input-wrapper')
|
120 |
+
});
|
121 |
+
},
|
122 |
+
|
123 |
+
MultiSelectInput: function ($scope) {
|
124 |
+
var el = $scope.find('select.mf-input-multiselect');
|
125 |
+
el.select2({
|
126 |
+
dropdownParent: $scope.find('.mf-input-wrapper')
|
127 |
+
});
|
128 |
+
},
|
129 |
+
|
130 |
+
Rating: function ($scope) {
|
131 |
+
var el = $scope.find('.mf-input-rating li');
|
132 |
+
el.on('mouseover', function () {
|
133 |
+
var onStar = parseInt($(this).data('value'), 10); // The star currently mouse on
|
134 |
+
$(this).parent().children('li.star-li').each(function (e) {
|
135 |
+
if (e < onStar) {
|
136 |
+
$(this).addClass('hover');
|
137 |
+
}
|
138 |
+
else {
|
139 |
+
$(this).removeClass('hover');
|
140 |
+
}
|
141 |
+
});
|
142 |
+
|
143 |
+
}).on('mouseout', function () {
|
144 |
+
$(this).parent().children('li.star-li').each(function (e) {
|
145 |
+
$(this).removeClass('hover');
|
146 |
+
});
|
147 |
+
});
|
148 |
+
|
149 |
+
|
150 |
+
el.on('click', function () {
|
151 |
+
var onStar = parseInt($(this).data('value'), 10);
|
152 |
+
var stars = $(this).parent().children('li.star-li');
|
153 |
+
|
154 |
+
for (let i = 0; i < stars.length; i++) {
|
155 |
+
$(stars[i]).removeClass('selected');
|
156 |
+
}
|
157 |
+
|
158 |
+
for (let i = 0; i < onStar; i++) {
|
159 |
+
$(stars[i]).addClass('selected');
|
160 |
+
}
|
161 |
+
|
162 |
+
var displayId = $(this).parents().find('input.mf-input-hidden');
|
163 |
+
displayId.val(onStar);
|
164 |
+
|
165 |
+
var msg = "";
|
166 |
+
if (onStar > 1) {
|
167 |
+
msg = "<strong>" + onStar + "</strong>";
|
168 |
+
}
|
169 |
+
else {
|
170 |
+
msg = "<strong>" + onStar + " </strong>";
|
171 |
+
}
|
172 |
+
|
173 |
+
});
|
174 |
+
},
|
175 |
+
|
176 |
+
Mobile: function ($scope) {
|
177 |
+
var href = mf_plugin.mf_dir;
|
178 |
+
var mfInputTel = $scope.find('.mf-input[type="tel"]');
|
179 |
+
|
180 |
+
var el = mfInputTel;
|
181 |
+
|
182 |
+
var intl = window.intlTelInput(el[0], {
|
183 |
+
nationalMode: true,
|
184 |
+
separateDialCode: true,
|
185 |
+
utilsScript: href + "libs/assets/js/utils.js?1562189064761",
|
186 |
+
});
|
187 |
+
|
188 |
+
},
|
189 |
+
// it's already trigger change function, so this is not necessary
|
190 |
+
// ImageSelect: function($scope){
|
191 |
+
// var el = $scope.find('.mf-input-wrapper .mf-image-select-input[type="radio"]');
|
192 |
+
|
193 |
+
// el.on('click', function (e) {
|
194 |
+
// el.trigger('change');
|
195 |
+
// });
|
196 |
+
// },
|
197 |
+
|
198 |
+
// it's already trigger change function, so this is not necessary
|
199 |
+
// ToggleSelect: function($scope){
|
200 |
+
// var el = $scope.find('.mf-input-wrapper .mf-toggle-select-input[type="radio"]');
|
201 |
+
|
202 |
+
// el.on('click', function (e) {
|
203 |
+
// el.trigger('change');
|
204 |
+
// });
|
205 |
+
// },
|
206 |
+
};
|
207 |
|
208 |
$(window).on('elementor/frontend/init', MetForm.init);
|
209 |
+
|
210 |
+
$('.repeater-add-btn').on('click', function(){
|
211 |
+
setTimeout( function() {
|
212 |
+
triggerRepeater(scope);
|
213 |
+
}, 1000);
|
214 |
+
// triggerRepeater(scope);
|
215 |
+
});
|
216 |
+
|
217 |
}(jQuery, window.elementorFrontend));
|
libs/assets/js/submission.js
CHANGED
@@ -1,23 +1,17 @@
|
|
1 |
//recaptcha render
|
2 |
-
var
|
3 |
-
|
4 |
-
var site_key = form.attr("site_key");
|
5 |
-
if(site_key != ''){
|
6 |
-
var onloadMetFormCallback = function() {
|
7 |
-
var $recaptcha_site_key = jQuery('.recaptcha_site_key');
|
8 |
|
9 |
-
|
10 |
-
|
|
|
11 |
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
};
|
19 |
-
}
|
20 |
-
}
|
21 |
|
22 |
|
23 |
jQuery(document).ready(function($) {
|
@@ -58,7 +52,7 @@ jQuery(document).ready(function($) {
|
|
58 |
'X-WP-Nonce': nonce
|
59 |
},
|
60 |
success: function (response) {
|
61 |
-
console.log(response);
|
62 |
var status = Number(response.status);
|
63 |
var formatedError = '';
|
64 |
$.each(response.error, function(i, v){
|
1 |
//recaptcha render
|
2 |
+
var onloadMetFormCallback = function() {
|
3 |
+
var $recaptcha_site_key = jQuery('.recaptcha_site_key');
|
|
|
|
|
|
|
|
|
4 |
|
5 |
+
$recaptcha_site_key.each(function (indx) {
|
6 |
+
var $el = jQuery(this),
|
7 |
+
$form = $el.parents('.metform-form-content');
|
8 |
|
9 |
+
$el.attr( 'id', $el.attr('id') + '_' + indx );
|
10 |
+
grecaptcha.render('recaptcha_site_key' + '_' + indx, {
|
11 |
+
'sitekey' : $form.data('site-key')
|
12 |
+
});
|
13 |
+
});
|
14 |
+
};
|
|
|
|
|
|
|
15 |
|
16 |
|
17 |
jQuery(document).ready(function($) {
|
52 |
'X-WP-Nonce': nonce
|
53 |
},
|
54 |
success: function (response) {
|
55 |
+
//console.log(response);
|
56 |
var status = Number(response.status);
|
57 |
var formatedError = '';
|
58 |
$.each(response.error, function(i, v){
|
libs/assets/scss/admin-style.scss
DELETED
@@ -1,392 +0,0 @@
|
|
1 |
-
.loading {
|
2 |
-
.attr-modal-content {
|
3 |
-
&::before {
|
4 |
-
opacity: .8;
|
5 |
-
position: absolute;
|
6 |
-
content: "";
|
7 |
-
top: 0;
|
8 |
-
left: 0;
|
9 |
-
height: 100%;
|
10 |
-
width: 100%;
|
11 |
-
background-color: #fff;
|
12 |
-
transition: opaicty .5s ease;
|
13 |
-
z-index: 5;
|
14 |
-
border-radius: inherit;
|
15 |
-
}
|
16 |
-
}
|
17 |
-
|
18 |
-
.ekit-spinner {
|
19 |
-
display: block;
|
20 |
-
}
|
21 |
-
}
|
22 |
-
|
23 |
-
.attr-modal-dialog-centered {
|
24 |
-
display: flex;
|
25 |
-
align-items: center;
|
26 |
-
padding-top: 30px;
|
27 |
-
width: 565px;
|
28 |
-
|
29 |
-
.attr-modal-header{
|
30 |
-
padding: 36px 50px;
|
31 |
-
border-bottom: none;
|
32 |
-
|
33 |
-
.attr-modal-title {
|
34 |
-
font-size: 20px;
|
35 |
-
font-weight: bold;
|
36 |
-
color: #111111;
|
37 |
-
text-transform: capitalize;
|
38 |
-
margin-bottom: 38px;
|
39 |
-
line-height: 1;
|
40 |
-
}
|
41 |
-
|
42 |
-
.attr-nav-tabs {
|
43 |
-
border: none;
|
44 |
-
display: flex;
|
45 |
-
-webkit-box-pack: justify;
|
46 |
-
-ms-flex-pack: justify;
|
47 |
-
justify-content: space-between;
|
48 |
-
-ms-flex-wrap: wrap;
|
49 |
-
flex-wrap: wrap;
|
50 |
-
li{
|
51 |
-
margin: 0;
|
52 |
-
float: none;
|
53 |
-
}
|
54 |
-
a{
|
55 |
-
text-decoration: none;
|
56 |
-
text-align: center;
|
57 |
-
color: #111111;
|
58 |
-
font-size: 14px;
|
59 |
-
text-transform: capitalize;
|
60 |
-
font-weight: 600;
|
61 |
-
padding: 8px 14px;
|
62 |
-
border: none;
|
63 |
-
margin-right: 0;
|
64 |
-
border: none;
|
65 |
-
&:hover{
|
66 |
-
border: none;
|
67 |
-
background-color: transparent;
|
68 |
-
}
|
69 |
-
&:focus{
|
70 |
-
outline: none;
|
71 |
-
box-shadow: none;
|
72 |
-
border: none;
|
73 |
-
}
|
74 |
-
}
|
75 |
-
li.attr-active a{
|
76 |
-
border: none;
|
77 |
-
color: #ffffff;
|
78 |
-
background-color: #1F55F8;
|
79 |
-
border-radius: 4px;
|
80 |
-
}
|
81 |
-
}
|
82 |
-
|
83 |
-
button.attr-close{
|
84 |
-
opacity: .8;
|
85 |
-
font-size: inherit;
|
86 |
-
outline: none;
|
87 |
-
margin-top: -15px;
|
88 |
-
margin-right: -25px ;
|
89 |
-
span{
|
90 |
-
color: #e81123;
|
91 |
-
font-size: 35px;
|
92 |
-
font-weight: 100;
|
93 |
-
background-color: #FCE7E9;
|
94 |
-
height: 36px;
|
95 |
-
width: 36px;
|
96 |
-
display: inline-block;
|
97 |
-
line-height: 28px;
|
98 |
-
border-radius: 100px;
|
99 |
-
outline: none;
|
100 |
-
margin-top: 5px;
|
101 |
-
}
|
102 |
-
}
|
103 |
-
|
104 |
-
}
|
105 |
-
|
106 |
-
.attr-tab-content{
|
107 |
-
.attr-modal-body {
|
108 |
-
padding: 40px 50px;
|
109 |
-
padding-top: 0;
|
110 |
-
}
|
111 |
-
|
112 |
-
div#limit_status.hide_input {
|
113 |
-
display: none;
|
114 |
-
}
|
115 |
-
|
116 |
-
.mf-input-group label.attr-input-label {
|
117 |
-
color: #111111;
|
118 |
-
font-size: 16px;
|
119 |
-
margin-bottom: 7px;
|
120 |
-
display: block;
|
121 |
-
font-weight: 500;
|
122 |
-
}
|
123 |
-
.mf-input-group {
|
124 |
-
margin-bottom: 14px;
|
125 |
-
input, .attr-form-control{
|
126 |
-
color: #555;
|
127 |
-
font-size: 14px;
|
128 |
-
height: 48px;
|
129 |
-
padding: 0 22px;
|
130 |
-
border-color: #ededed;
|
131 |
-
box-shadow: 0px 2px 5px rgba(153, 153, 153, .2);
|
132 |
-
margin-top: 12px;
|
133 |
-
}
|
134 |
-
input[type="checkbox"] {
|
135 |
-
display: none;
|
136 |
-
}
|
137 |
-
input[type="checkbox"] + span {
|
138 |
-
position: relative;
|
139 |
-
display: block;
|
140 |
-
}
|
141 |
-
input[type="checkbox"] + span:before {
|
142 |
-
content: "No";
|
143 |
-
width: 55px;
|
144 |
-
height: 25px;
|
145 |
-
background-color: #EDEDED;
|
146 |
-
left: 0;
|
147 |
-
border-radius: 15px;
|
148 |
-
text-align: right;
|
149 |
-
color: #fff;
|
150 |
-
text-transform: uppercase;
|
151 |
-
font-weight: bold;
|
152 |
-
font-size: 10px;
|
153 |
-
padding: 3px;
|
154 |
-
box-sizing: border-box;
|
155 |
-
padding-right: 10px;
|
156 |
-
transition: all .4s;
|
157 |
-
float: right;
|
158 |
-
}
|
159 |
-
input[type="checkbox"] + span:after {
|
160 |
-
content: "";
|
161 |
-
width: 20px;
|
162 |
-
height: 20px;
|
163 |
-
background-color: #fff;
|
164 |
-
border-radius: 100px;
|
165 |
-
display: inline-block;
|
166 |
-
position: absolute;
|
167 |
-
right: 31px;
|
168 |
-
top: 2px;
|
169 |
-
transition: all .4s;
|
170 |
-
}
|
171 |
-
|
172 |
-
input[type="checkbox"]:checked + span:before {
|
173 |
-
content: "Yes";
|
174 |
-
width: 55px;
|
175 |
-
height: 25px;
|
176 |
-
background-color: #1F55F8;
|
177 |
-
left: 0;
|
178 |
-
border-radius: 15px;
|
179 |
-
display: inline-block;
|
180 |
-
text-align: left;
|
181 |
-
color: #fff;
|
182 |
-
text-transform: uppercase;
|
183 |
-
font-weight: bold;
|
184 |
-
font-size: 10px;
|
185 |
-
padding: 3px;
|
186 |
-
box-sizing: border-box;
|
187 |
-
padding-left: 10px;
|
188 |
-
}
|
189 |
-
input[type="checkbox"]:checked + span:after {
|
190 |
-
content: "";
|
191 |
-
width: 20px;
|
192 |
-
height: 20px;
|
193 |
-
background-color: #fff;
|
194 |
-
border-radius: 100px;
|
195 |
-
display: inline-block;
|
196 |
-
position: absolute;
|
197 |
-
right: 2px;
|
198 |
-
top: 2px;
|
199 |
-
}
|
200 |
-
span.mf-input-help{
|
201 |
-
color: #b7b7b7;
|
202 |
-
font-style: italic;
|
203 |
-
font-size: 12px;
|
204 |
-
|
205 |
-
strong{
|
206 |
-
color: red;
|
207 |
-
}
|
208 |
-
}
|
209 |
-
|
210 |
-
.mf-input-group-inner {
|
211 |
-
label.attr-input-label{
|
212 |
-
display: inline-block;
|
213 |
-
}
|
214 |
-
#limit_status {
|
215 |
-
width: 100px;
|
216 |
-
margin: 0;
|
217 |
-
position: relative;
|
218 |
-
margin-left: 15px;
|
219 |
-
float: right;
|
220 |
-
margin-top: -2px;
|
221 |
-
}
|
222 |
-
input {
|
223 |
-
margin: 0;
|
224 |
-
}
|
225 |
-
input[type="checkbox"] + span {
|
226 |
-
&:before{
|
227 |
-
position: relative;
|
228 |
-
top: -2px;
|
229 |
-
left: 5px;
|
230 |
-
}
|
231 |
-
&:after{
|
232 |
-
right: 28px;
|
233 |
-
top: 0px;
|
234 |
-
}
|
235 |
-
}
|
236 |
-
input[type="checkbox"]:checked + span {
|
237 |
-
&:after{
|
238 |
-
right: -2px;
|
239 |
-
top: 0;
|
240 |
-
}
|
241 |
-
}
|
242 |
-
}
|
243 |
-
}
|
244 |
-
.mf-input-group input[type="text"] + span,
|
245 |
-
.mf-input-group input[type="number"] + span {
|
246 |
-
display: block;
|
247 |
-
margin-top: 5px;
|
248 |
-
}
|
249 |
-
#limit_status.show_input {
|
250 |
-
margin-top: 32px;
|
251 |
-
}
|
252 |
-
}
|
253 |
-
|
254 |
-
.attr-modal-footer {
|
255 |
-
padding: 30px 50px;
|
256 |
-
button{
|
257 |
-
color: #fff;
|
258 |
-
background-color: #1F55F8;
|
259 |
-
font-size: 16px;
|
260 |
-
font-weight: bold;
|
261 |
-
box-sizing: border-box;
|
262 |
-
padding: 12px 20px;
|
263 |
-
box-shadow: none;
|
264 |
-
border: 1px solid transparent;
|
265 |
-
transition: all .4s;
|
266 |
-
outline: none;
|
267 |
-
|
268 |
-
&:focus{
|
269 |
-
border:none;
|
270 |
-
outline: none;
|
271 |
-
}
|
272 |
-
}
|
273 |
-
button.metform-form-save-btn-editor{
|
274 |
-
background-color: #d8d8d8;
|
275 |
-
color: #111111;
|
276 |
-
}
|
277 |
-
}
|
278 |
-
|
279 |
-
>form {
|
280 |
-
width: 100%;
|
281 |
-
}
|
282 |
-
}
|
283 |
-
|
284 |
-
.modal-backdrop {
|
285 |
-
position: fixed;
|
286 |
-
top: 0;
|
287 |
-
left: 0;
|
288 |
-
width: 100vw;
|
289 |
-
height: 100vh;
|
290 |
-
background-color: rgba(0, 0, 0, 0.5);
|
291 |
-
}
|
292 |
-
|
293 |
-
.modal-backdrop {
|
294 |
-
z-index: 9999;
|
295 |
-
}
|
296 |
-
|
297 |
-
.attr-modal {
|
298 |
-
z-index: 10000;
|
299 |
-
}
|
300 |
-
|
301 |
-
.ekit_multipile_ajax_search_filed {
|
302 |
-
.select2-container--default {
|
303 |
-
.select2-selection--multiple {
|
304 |
-
.select2-selection__choice {
|
305 |
-
line-height: 1.5;
|
306 |
-
font-size: .9em;
|
307 |
-
border: none;
|
308 |
-
border-radius: 0;
|
309 |
-
color: #6d7882;
|
310 |
-
}
|
311 |
-
}
|
312 |
-
}
|
313 |
-
}
|
314 |
-
|
315 |
-
.ekit-headerfooter-status {
|
316 |
-
display: inline-block;
|
317 |
-
margin-left: 5px;
|
318 |
-
padding: 2px 5px 3px;
|
319 |
-
color: #FFFFFF;
|
320 |
-
background-color: #9a9a9a;
|
321 |
-
border-radius: 3px;
|
322 |
-
font-size: 10px;
|
323 |
-
line-height: 1;
|
324 |
-
font-weight: 700;
|
325 |
-
|
326 |
-
&-active {
|
327 |
-
background-color: lighten($color: green, $amount: 15);
|
328 |
-
}
|
329 |
-
}
|
330 |
-
|
331 |
-
.irs--round .irs-min, .irs--round .irs-max{
|
332 |
-
display: none;
|
333 |
-
}
|
334 |
-
.irs--round .irs-handle{
|
335 |
-
cursor: pointer;
|
336 |
-
}
|
337 |
-
.mf-success-msg {
|
338 |
-
position: fixed;
|
339 |
-
z-index: 9;
|
340 |
-
text-align: center;
|
341 |
-
top: 50%;
|
342 |
-
left: 50%;
|
343 |
-
transform: translate(-50%, -50%);
|
344 |
-
box-shadow: 0px 2px 5px rgba(153, 153, 153, 0.2);
|
345 |
-
min-width: 300px;
|
346 |
-
}
|
347 |
-
textarea.attr-form-control{
|
348 |
-
height: auto!important;
|
349 |
-
}
|
350 |
-
.post-type-metform-form .row-actions .inline{
|
351 |
-
display: none!important;
|
352 |
-
}
|
353 |
-
|
354 |
-
div.metform-entry-data,
|
355 |
-
div.metform-entry-browser-data {
|
356 |
-
table{
|
357 |
-
thead,
|
358 |
-
tbody{
|
359 |
-
text-align: left;
|
360 |
-
}
|
361 |
-
}
|
362 |
-
}
|
363 |
-
|
364 |
-
img.form-editor-icon {
|
365 |
-
height: 20px;
|
366 |
-
width: 20px;
|
367 |
-
margin-right: 5px;
|
368 |
-
vertical-align: middle;
|
369 |
-
}
|
370 |
-
|
371 |
-
div.mf-file-show {
|
372 |
-
button.attr-btn.attr-btn-primary {
|
373 |
-
margin-left: 10px;
|
374 |
-
}
|
375 |
-
}
|
376 |
-
|
377 |
-
.mf-file-show{
|
378 |
-
a {
|
379 |
-
text-decoration: none;
|
380 |
-
}
|
381 |
-
}
|
382 |
-
|
383 |
-
.mf-modal-container{
|
384 |
-
margin-top: 50px;
|
385 |
-
.attr-modal-body img {
|
386 |
-
margin: 0 auto;
|
387 |
-
}
|
388 |
-
}
|
389 |
-
.mf-entry-label,
|
390 |
-
.mf-entry-input{
|
391 |
-
box-sizing: border-box;
|
392 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
metform.php
CHANGED
@@ -5,7 +5,7 @@ defined( 'ABSPATH' ) || exit;
|
|
5 |
* Plugin Name: MetForm – Most flexible and design friendly form builder for Elementor
|
6 |
* Plugin URI: http://products.wpmet.com/metform
|
7 |
* Description: Most flexible and design friendly form builder for Elementor
|
8 |
-
* Version: 1.
|
9 |
* Author: Wpmet
|
10 |
* Author URI: https://wpmet.com
|
11 |
* Text Domain: metform
|
5 |
* Plugin Name: MetForm – Most flexible and design friendly form builder for Elementor
|
6 |
* Plugin URI: http://products.wpmet.com/metform
|
7 |
* Description: Most flexible and design friendly form builder for Elementor
|
8 |
+
* Version: 1.1.2
|
9 |
* Author: Wpmet
|
10 |
* Author URI: https://wpmet.com
|
11 |
* Text Domain: metform
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: ataurr, wpmet, emrnco, sayedulsayem
|
3 |
Tags: Form builder, Elementor form builder, contact form, custom form, forms, drag & drop form builder
|
4 |
Requires at least: 4.8
|
5 |
-
Tested up to: 5.
|
6 |
-
Stable tag: 1.
|
7 |
Requires PHP: 5.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
@@ -16,7 +16,7 @@ Metform an addon for elementor builder, build any kind of form metform builder.
|
|
16 |
Metform builder an addon for elementor, build any form on the fly with metform builder. It can manage multiple contact forms, and you can customize the form with an elementor builder.
|
17 |
MetForm is not only a contact form plugin, but it is also a complete drag & drop form builder with elementor. You can build any contact forms, in Just Minutes. You don't even Have to be a programmer or developer.
|
18 |
|
19 |
-
<iframe width="560" height="315" src="https://www.youtube.com/embed/
|
20 |
|
21 |
== Flexibility ==
|
22 |
Metform builder contact form gives you full flexibility to build any form on the fly with metform. Want to make any complex from? complex style? no problem you can build any types of from with metform. Like you want to use an image or video under a form and want to show the user, you can do so... use any elementor addons inside metform builder form without any restrictions.
|
@@ -25,22 +25,22 @@ Metform built with elementor. Every field is an elementor widget.
|
|
25 |
|
26 |
Metform allows you to create any beautiful contact forms, feedback form, subscription forms, and other types of forms for your site in minutes, not hours! Full flexibility on your own hand.
|
27 |
|
28 |
-
|
29 |
Metform builds with elementor and it will work with elementor without any issue. and responsive can control from the elementor page builder. and Your forms will look great on all resolutions and devices: mobile, tablet, and desktop.
|
30 |
|
31 |
-
|
32 |
You can metform anywhere with elementor also you can use it with any editor with built-in form shortcode.
|
33 |
|
34 |
-
|
35 |
Your form submission data can be saved in admin and also sent the user a confirmation email it will send data to form admin.
|
36 |
|
37 |
-
|
38 |
Want to give users to upload files from your form? no worry we have file upload filed with our form.
|
39 |
|
40 |
-
|
41 |
Want to Export entries as CSV? Yes, you can do that too with metform elementor addon.
|
42 |
|
43 |
-
= Mailchimp Integration
|
44 |
You can use MailChimp in your contact form also create MailChimp signup forms with custom style and expand your lead list.
|
45 |
|
46 |
== Features ==
|
@@ -91,6 +91,10 @@ You can use MailChimp in your contact form also create MailChimp signup forms wi
|
|
91 |
|
92 |
== Changelog ==
|
93 |
|
|
|
|
|
|
|
|
|
94 |
|
95 |
|
96 |
|
2 |
Contributors: ataurr, wpmet, emrnco, sayedulsayem
|
3 |
Tags: Form builder, Elementor form builder, contact form, custom form, forms, drag & drop form builder
|
4 |
Requires at least: 4.8
|
5 |
+
Tested up to: 5.3
|
6 |
+
Stable tag: 1.1.2
|
7 |
Requires PHP: 5.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
16 |
Metform builder an addon for elementor, build any form on the fly with metform builder. It can manage multiple contact forms, and you can customize the form with an elementor builder.
|
17 |
MetForm is not only a contact form plugin, but it is also a complete drag & drop form builder with elementor. You can build any contact forms, in Just Minutes. You don't even Have to be a programmer or developer.
|
18 |
|
19 |
+
<iframe width="560" height="315" src="https://www.youtube.com/embed/8R4-Q14cu-w" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
|
20 |
|
21 |
== Flexibility ==
|
22 |
Metform builder contact form gives you full flexibility to build any form on the fly with metform. Want to make any complex from? complex style? no problem you can build any types of from with metform. Like you want to use an image or video under a form and want to show the user, you can do so... use any elementor addons inside metform builder form without any restrictions.
|
25 |
|
26 |
Metform allows you to create any beautiful contact forms, feedback form, subscription forms, and other types of forms for your site in minutes, not hours! Full flexibility on your own hand.
|
27 |
|
28 |
+
== Mobile-Friendly and Responsive ==
|
29 |
Metform builds with elementor and it will work with elementor without any issue. and responsive can control from the elementor page builder. and Your forms will look great on all resolutions and devices: mobile, tablet, and desktop.
|
30 |
|
31 |
+
== Embed anywhere ==
|
32 |
You can metform anywhere with elementor also you can use it with any editor with built-in form shortcode.
|
33 |
|
34 |
+
== Manage Submissions ==
|
35 |
Your form submission data can be saved in admin and also sent the user a confirmation email it will send data to form admin.
|
36 |
|
37 |
+
== File Upload ==
|
38 |
Want to give users to upload files from your form? no worry we have file upload filed with our form.
|
39 |
|
40 |
+
== Export entries as CSV ==
|
41 |
Want to Export entries as CSV? Yes, you can do that too with metform elementor addon.
|
42 |
|
43 |
+
= Mailchimp Integration ==
|
44 |
You can use MailChimp in your contact form also create MailChimp signup forms with custom style and expand your lead list.
|
45 |
|
46 |
== Features ==
|
91 |
|
92 |
== Changelog ==
|
93 |
|
94 |
+
1.1
|
95 |
+
Added telephone widget
|
96 |
+
Added widget area to edit save use from same page.
|
97 |
+
|
98 |
|
99 |
|
100 |
|
templates/1/content.json
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
{"version":"0.4","title":"Contact Form Simple 1","type":"section","content":[{"id":"280b","settings":{"gap":"no"},"elements":[{"id":"bda","settings":{"_column_size":100},"elements":[{"id":"78f6","settings":{"gap":"extended","structure":"20"},"elements":[{"id":"21b","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"442a","settings":{"mf_input_label":"First Name","mf_input_name":"mf-first-name","mf_input_placeholder":"Anderson","mf_input_help_text":"Enter your first name here","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_min_length":1,"mf_input_label_color":"#101010","mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_required":"yes","mf_input_required_indicator_color":"#101010"},"elements":[],"isInner":false,"widgetType":"mf-text","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"3191","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"4fb8","settings":{"mf_input_label":"Last Name","mf_input_name":"mf-last-name","mf_input_placeholder":"Mikoo","mf_input_help_text":"Enter your last name here","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_required":"yes","mf_input_required_indicator_color":"#101010"},"elements":[],"isInner":false,"widgetType":"mf-text","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"1993","settings":{"gap":"extended","structure":"20"},"elements":[{"id":"2f64","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"24f7","settings":{"mf_input_label":"Email Address","mf_input_name":"mf-email","mf_input_placeholder":"","mf_input_help_text":"Example: user@website.com","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-email","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"2e82","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"55cd","settings":{"mf_input_label":"Subject","mf_input_name":"mf-subject","mf_input_placeholder":"","mf_input_help_text":"How can we help you?","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-text","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"7185","settings":{"gap":"extended"},"elements":[{"id":"6fc","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0,"margin":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"5dd0","settings":{"mf_input_label":"Comments \/ Questions","mf_input_name":"mf-comment","mf_input_placeholder":"","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_textarea_field_height":{"unit":"px","size":140,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"mf-textarea","elType":"widget"},{"id":"1c9","settings":{"_margin":{"unit":"px","top":"40","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-recaptcha","elType":"widget"},{"id":"30ce","settings":{"mf_btn_text":"Send Message","mf_btn_align":"left","mf_btn_text_padding":{"unit":"px","top":"15","right":"20","bottom":"15","left":"20","isLinked":false},"mf_btn_typography_typography":"custom","mf_btn_typography_font_family":"Helvetica","mf_btn_typography_font_size":{"unit":"px","size":16,"sizes":[]},"mf_btn_typography_font_weight":"500","mf_btn_typography_line_height":{"unit":"px","size":18,"sizes":[]},"mf_btn_bg_color_background":"classic","mf_btn_bg_color_color":"#4285f4","mf_btn_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"mf_btn_box_shadow_group_box_shadow_type":"yes","mf_btn_box_shadow_group_box_shadow":{"horizontal":0,"vertical":7,"blur":15,"spread":0,"color":"rgba(66,133,244,0.3)"},"_margin":{"unit":"px","top":"40","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-button","elType":"widget"},{"id":"3bef","settings":{"_padding":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false},"_margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-response","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}]}
|
templates/1/preview-thumb.svg
ADDED
@@ -0,0 +1,250 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 164 182" enable-background="new 0 0 164 182" xml:space="preserve">
|
5 |
+
<g>
|
6 |
+
<path id="Rectangle_588" fill="#FFFFFF" d="M5,0h154c2.8,0,5,2.2,5,5v172c0,2.8-2.2,5-5,5H5c-2.8,0-5-2.2-5-5V5C0,2.2,2.2,0,5,0z"
|
7 |
+
/>
|
8 |
+
<path id="Rectangle_589" fill="#DDE1E3" d="M17.5,33h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
9 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C15,34.1,16.1,33,17.5,33z"/>
|
10 |
+
<path id="Rectangle_591" fill="#DDE1E3" d="M17.5,69h129c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-129
|
11 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C15,70.1,16.1,69,17.5,69z"/>
|
12 |
+
<path id="Rectangle_592" fill="#DDE1E3" d="M20,105h124c2.8,0,5,2.2,5,5v15c0,2.8-2.2,5-5,5H20c-2.8,0-5-2.2-5-5v-15
|
13 |
+
C15,107.2,17.2,105,20,105z"/>
|
14 |
+
<path id="Rectangle_590" fill="#DDE1E3" d="M91.5,33h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
15 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C89,34.1,90.1,33,91.5,33z"/>
|
16 |
+
<g enable-background="new ">
|
17 |
+
<path fill="#565656" d="M20.5,19.9v0.8h-3.7v2.3H20v0.8h-3.3V27h-1v-7.1H20.5z"/>
|
18 |
+
<path fill="#565656" d="M21.4,20.9v-1h0.9v1H21.4z M22.3,21.8V27h-0.9v-5.2H22.3z"/>
|
19 |
+
<path fill="#565656" d="M24.4,21.8v1.1h0c0.2-0.4,0.5-0.7,0.8-0.9c0.3-0.2,0.7-0.3,1.1-0.3v0.9c-0.3,0-0.6,0-0.9,0.1
|
20 |
+
c-0.2,0.1-0.4,0.2-0.6,0.4s-0.3,0.4-0.3,0.7c-0.1,0.3-0.1,0.6-0.1,0.9V27h-0.9v-5.2H24.4z"/>
|
21 |
+
<path fill="#565656" d="M27.6,25.8c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.3,0.1,0.4,0.2s0.3,0,0.5,0c0.1,0,0.3,0,0.4,0
|
22 |
+
c0.1,0,0.3-0.1,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.4-0.2-0.6-0.3
|
23 |
+
c-0.2-0.1-0.5-0.1-0.8-0.2s-0.6-0.1-0.8-0.2c-0.2-0.1-0.5-0.2-0.6-0.4s-0.2-0.4-0.2-0.8c0-0.3,0.1-0.5,0.2-0.7
|
24 |
+
c0.1-0.2,0.3-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3s0.5-0.1,0.7-0.1c0.3,0,0.6,0,0.8,0.1c0.2,0,0.5,0.1,0.7,0.3s0.3,0.3,0.5,0.5
|
25 |
+
s0.2,0.5,0.2,0.8h-0.9c0-0.2-0.1-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1s-0.3,0-0.4,0c-0.1,0-0.3,0-0.4,0
|
26 |
+
c-0.1,0-0.2,0.1-0.4,0.1c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0.1,0.3,0.2,0.4c0.1,0.1,0.2,0.2,0.4,0.2
|
27 |
+
c0.2,0.1,0.3,0.1,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.2,0.5,0.3s0.3,0.2,0.4,0.4
|
28 |
+
c0.1,0.2,0.1,0.4,0.1,0.6c0,0.3-0.1,0.6-0.2,0.8c-0.1,0.2-0.3,0.4-0.5,0.5c-0.2,0.1-0.4,0.2-0.7,0.3c-0.3,0-0.5,0.1-0.8,0.1
|
29 |
+
c-0.3,0-0.6,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.4-0.3-0.5-0.5c-0.1-0.2-0.2-0.5-0.2-0.8h0.9
|
30 |
+
C27.5,25.6,27.5,25.7,27.6,25.8z"/>
|
31 |
+
<path fill="#565656" d="M34.1,21.8v0.8h-1v3.2c0,0.1,0,0.2,0,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3,0h0.4
|
32 |
+
V27h-0.6c-0.2,0-0.4,0-0.6,0c-0.2,0-0.3-0.1-0.4-0.2s-0.2-0.2-0.2-0.3c0-0.1-0.1-0.3-0.1-0.6v-3.3h-0.9v-0.8h0.9v-1.5h0.8v1.5
|
33 |
+
H34.1z"/>
|
34 |
+
<path fill="#565656" d="M39,19.9l3.8,5.8h0v-5.8h0.9V27h-1l-3.7-5.7h0V27H38v-7.1H39z"/>
|
35 |
+
<path fill="#565656" d="M49.7,27c-0.1,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.4-0.1-0.5-0.2s-0.2-0.3-0.2-0.6c-0.2,0.3-0.5,0.5-0.8,0.6
|
36 |
+
c-0.3,0.1-0.6,0.2-1,0.2c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.1-0.5-0.2s-0.3-0.3-0.4-0.4c-0.1-0.2-0.1-0.4-0.1-0.7
|
37 |
+
c0-0.3,0.1-0.5,0.1-0.7c0.1-0.2,0.2-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.6-0.2c0.2,0,0.5-0.1,0.7-0.1
|
38 |
+
c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5c-0.1-0.1-0.2-0.2-0.3-0.3
|
39 |
+
c-0.1-0.1-0.2-0.1-0.4-0.1c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.4-0.4,0.8H45c0-0.3,0.1-0.6,0.2-0.8
|
40 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0s0.4,0.1,0.6,0.2
|
41 |
+
c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7v2.7c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V27z M48.3,24.3
|
42 |
+
c-0.1,0.1-0.2,0.1-0.4,0.2c-0.2,0-0.4,0.1-0.5,0.1s-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3
|
43 |
+
c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0
|
44 |
+
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.2,0.5-0.3c0.1-0.1,0.2-0.2,0.3-0.4s0.1-0.3,0.1-0.4V24.3z"/>
|
45 |
+
<path fill="#565656" d="M51.2,21.8v0.8h0c0.4-0.6,0.9-0.9,1.7-0.9c0.3,0,0.6,0.1,0.9,0.2c0.3,0.1,0.4,0.4,0.5,0.7
|
46 |
+
c0.2-0.3,0.4-0.5,0.7-0.6s0.6-0.2,0.9-0.2c0.3,0,0.5,0,0.7,0.1s0.4,0.1,0.5,0.3c0.1,0.1,0.3,0.3,0.4,0.5c0.1,0.2,0.1,0.4,0.1,0.7
|
47 |
+
V27h-0.9v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.2c-0.1-0.1-0.3-0.1-0.5-0.1c-0.4,0-0.8,0.1-1,0.4
|
48 |
+
c-0.2,0.2-0.4,0.6-0.4,1V27h-0.9v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.3-0.2
|
49 |
+
c-0.1-0.1-0.3-0.1-0.5-0.1c-0.2,0-0.5,0-0.6,0.2c-0.2,0.1-0.3,0.2-0.4,0.4c-0.1,0.1-0.2,0.3-0.2,0.4c0,0.1-0.1,0.3-0.1,0.4V27
|
50 |
+
h-0.9v-5.2H51.2z"/>
|
51 |
+
<path fill="#565656" d="M62.6,26.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
52 |
+
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
53 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1h-3.9
|
54 |
+
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
55 |
+
s0.4-0.4,0.5-0.8h0.8C63.3,25.9,63,26.4,62.6,26.7z M62.4,23.3c-0.1-0.2-0.2-0.3-0.3-0.5c-0.1-0.1-0.3-0.2-0.5-0.3
|
56 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h3
|
57 |
+
C62.6,23.7,62.5,23.5,62.4,23.3z"/>
|
58 |
+
</g>
|
59 |
+
<g enable-background="new ">
|
60 |
+
<path fill="#565656" d="M20.7,55.9v0.8h-4v2.3h3.7v0.8h-3.7v2.5h4V63h-5v-7.1H20.7z"/>
|
61 |
+
<path fill="#565656" d="M22.5,57.8v0.8h0c0.4-0.6,0.9-0.9,1.7-0.9c0.3,0,0.6,0.1,0.9,0.2c0.3,0.1,0.4,0.4,0.5,0.7
|
62 |
+
c0.2-0.3,0.4-0.5,0.7-0.6s0.6-0.2,0.9-0.2c0.3,0,0.5,0,0.7,0.1s0.4,0.1,0.5,0.3c0.1,0.1,0.3,0.3,0.4,0.5c0.1,0.2,0.1,0.4,0.1,0.7
|
63 |
+
V63h-0.9v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.2c-0.1-0.1-0.3-0.1-0.5-0.1c-0.4,0-0.8,0.1-1,0.4
|
64 |
+
c-0.2,0.2-0.4,0.6-0.4,1V63h-0.9v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.3-0.2
|
65 |
+
c-0.1-0.1-0.3-0.1-0.5-0.1c-0.2,0-0.5,0-0.6,0.2c-0.2,0.1-0.3,0.2-0.4,0.4c-0.1,0.1-0.2,0.3-0.2,0.4c0,0.1-0.1,0.3-0.1,0.4V63
|
66 |
+
h-0.9v-5.2H22.5z"/>
|
67 |
+
<path fill="#565656" d="M34.9,63c-0.1,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.4-0.1-0.5-0.2s-0.2-0.3-0.2-0.6c-0.2,0.3-0.5,0.5-0.8,0.6
|
68 |
+
c-0.3,0.1-0.6,0.2-1,0.2c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.1-0.5-0.2s-0.3-0.3-0.4-0.4C30,62.2,30,61.9,30,61.7
|
69 |
+
c0-0.3,0.1-0.5,0.1-0.7c0.1-0.2,0.2-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.6-0.2c0.2,0,0.5-0.1,0.7-0.1
|
70 |
+
c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5c-0.1-0.1-0.2-0.2-0.3-0.3
|
71 |
+
c-0.1-0.1-0.2-0.1-0.4-0.1c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.4-0.4,0.8h-0.9c0-0.3,0.1-0.6,0.2-0.8
|
72 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0s0.4,0.1,0.6,0.2
|
73 |
+
c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7v2.7c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V63z M33.5,60.3
|
74 |
+
c-0.1,0.1-0.2,0.1-0.4,0.2c-0.2,0-0.4,0.1-0.5,0.1s-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3
|
75 |
+
c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0
|
76 |
+
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.2,0.5-0.3c0.1-0.1,0.2-0.2,0.3-0.4s0.1-0.3,0.1-0.4V60.3z"/>
|
77 |
+
<path fill="#565656" d="M35.7,56.9v-1h0.9v1H35.7z M36.5,57.8V63h-0.9v-5.2H36.5z"/>
|
78 |
+
<path fill="#565656" d="M38.8,55.9V63h-0.9v-7.1H38.8z"/>
|
79 |
+
<path fill="#565656" d="M46,55.9l2.8,7.1h-1.1L47,60.8h-3L43.1,63h-1l2.8-7.1H46z M46.7,60l-1.2-3.3h0L44.2,60H46.7z"/>
|
80 |
+
<path fill="#565656" d="M53.1,63v-0.7h0c-0.1,0.3-0.4,0.5-0.7,0.6s-0.6,0.2-1,0.2c-0.4,0-0.7-0.1-1-0.2c-0.3-0.1-0.5-0.3-0.7-0.6
|
81 |
+
c-0.2-0.2-0.3-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1c0-0.4,0-0.7,0.1-1c0.1-0.3,0.2-0.6,0.4-0.9s0.4-0.4,0.7-0.6
|
82 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.1,0,0.3,0,0.4,0s0.3,0.1,0.5,0.1s0.3,0.1,0.4,0.2s0.3,0.2,0.3,0.4h0v-2.7H54V63H53.1z M50.1,61.2
|
83 |
+
c0.1,0.2,0.2,0.4,0.3,0.6c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.2,0.7,0.2c0.3,0,0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.5-0.4
|
84 |
+
c0.1-0.2,0.2-0.4,0.3-0.6s0.1-0.5,0.1-0.7c0-0.3,0-0.5-0.1-0.7c-0.1-0.2-0.2-0.4-0.3-0.6c-0.1-0.2-0.3-0.3-0.5-0.4
|
85 |
+
s-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.3-0.5,0.5s-0.2,0.4-0.3,0.6C50,60,50,60.2,50,60.5
|
86 |
+
C50,60.7,50,60.9,50.1,61.2z"/>
|
87 |
+
<path fill="#565656" d="M59,63v-0.7h0c-0.1,0.3-0.4,0.5-0.7,0.6s-0.6,0.2-1,0.2c-0.4,0-0.7-0.1-1-0.2c-0.3-0.1-0.5-0.3-0.7-0.6
|
88 |
+
c-0.2-0.2-0.3-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1c0-0.4,0-0.7,0.1-1c0.1-0.3,0.2-0.6,0.4-0.9s0.4-0.4,0.7-0.6
|
89 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.1,0,0.3,0,0.4,0s0.3,0.1,0.5,0.1s0.3,0.1,0.4,0.2s0.3,0.2,0.3,0.4h0v-2.7h0.8V63H59z M56,61.2
|
90 |
+
c0.1,0.2,0.2,0.4,0.3,0.6c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.2,0.7,0.2c0.3,0,0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.5-0.4
|
91 |
+
c0.1-0.2,0.2-0.4,0.3-0.6s0.1-0.5,0.1-0.7c0-0.3,0-0.5-0.1-0.7c-0.1-0.2-0.2-0.4-0.3-0.6c-0.1-0.2-0.3-0.3-0.5-0.4
|
92 |
+
s-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.3-0.5,0.5S56,59.5,56,59.7c-0.1,0.2-0.1,0.5-0.1,0.7
|
93 |
+
C55.9,60.7,55.9,60.9,56,61.2z"/>
|
94 |
+
<path fill="#565656" d="M62,57.8v1.1h0c0.2-0.4,0.5-0.7,0.8-0.9c0.3-0.2,0.7-0.3,1.1-0.3v0.9c-0.3,0-0.6,0-0.9,0.1
|
95 |
+
c-0.2,0.1-0.4,0.2-0.6,0.4s-0.3,0.4-0.3,0.7c-0.1,0.3-0.1,0.6-0.1,0.9V63h-0.9v-5.2H62z"/>
|
96 |
+
<path fill="#565656" d="M68,62.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
97 |
+
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
98 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1H65
|
99 |
+
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
100 |
+
s0.4-0.4,0.5-0.8h0.8C68.7,61.9,68.4,62.4,68,62.7z M67.8,59.3c-0.1-0.2-0.2-0.3-0.3-0.5c-0.1-0.1-0.3-0.2-0.5-0.3
|
101 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5C65,59.5,65,59.7,65,59.9h3
|
102 |
+
C67.9,59.7,67.9,59.5,67.8,59.3z"/>
|
103 |
+
<path fill="#565656" d="M70.4,61.8c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.3,0.1,0.4,0.2s0.3,0,0.5,0c0.1,0,0.3,0,0.4,0
|
104 |
+
c0.1,0,0.3-0.1,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.4-0.2-0.6-0.3
|
105 |
+
c-0.2-0.1-0.5-0.1-0.8-0.2s-0.6-0.1-0.8-0.2c-0.2-0.1-0.5-0.2-0.6-0.4s-0.2-0.4-0.2-0.8c0-0.3,0.1-0.5,0.2-0.7
|
106 |
+
c0.1-0.2,0.3-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3s0.5-0.1,0.7-0.1c0.3,0,0.6,0,0.8,0.1c0.2,0,0.5,0.1,0.7,0.3s0.3,0.3,0.5,0.5
|
107 |
+
s0.2,0.5,0.2,0.8h-0.9c0-0.2-0.1-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1s-0.3,0-0.4,0c-0.1,0-0.3,0-0.4,0
|
108 |
+
c-0.1,0-0.2,0.1-0.4,0.1c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0.1,0.3,0.2,0.4c0.1,0.1,0.2,0.2,0.4,0.2
|
109 |
+
c0.2,0.1,0.3,0.1,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.2,0.5,0.3s0.3,0.2,0.4,0.4
|
110 |
+
c0.1,0.2,0.1,0.4,0.1,0.6c0,0.3-0.1,0.6-0.2,0.8c-0.1,0.2-0.3,0.4-0.5,0.5c-0.2,0.1-0.4,0.2-0.7,0.3c-0.3,0-0.5,0.1-0.8,0.1
|
111 |
+
c-0.3,0-0.6,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.4-0.3-0.5-0.5c-0.1-0.2-0.2-0.5-0.2-0.8h0.9
|
112 |
+
C70.3,61.6,70.3,61.7,70.4,61.8z"/>
|
113 |
+
<path fill="#565656" d="M75.4,61.8c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.3,0.1,0.4,0.2s0.3,0,0.5,0c0.1,0,0.3,0,0.4,0
|
114 |
+
c0.1,0,0.3-0.1,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.4-0.2-0.6-0.3
|
115 |
+
c-0.2-0.1-0.5-0.1-0.8-0.2s-0.6-0.1-0.8-0.2c-0.2-0.1-0.5-0.2-0.6-0.4s-0.2-0.4-0.2-0.8c0-0.3,0.1-0.5,0.2-0.7
|
116 |
+
c0.1-0.2,0.3-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3s0.5-0.1,0.7-0.1c0.3,0,0.6,0,0.8,0.1c0.2,0,0.5,0.1,0.7,0.3s0.3,0.3,0.5,0.5
|
117 |
+
s0.2,0.5,0.2,0.8h-0.9c0-0.2-0.1-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1s-0.3,0-0.4,0c-0.1,0-0.3,0-0.4,0
|
118 |
+
c-0.1,0-0.2,0.1-0.4,0.1c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0.1,0.3,0.2,0.4c0.1,0.1,0.2,0.2,0.4,0.2
|
119 |
+
c0.2,0.1,0.3,0.1,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.2,0.5,0.3s0.3,0.2,0.4,0.4
|
120 |
+
c0.1,0.2,0.1,0.4,0.1,0.6c0,0.3-0.1,0.6-0.2,0.8c-0.1,0.2-0.3,0.4-0.5,0.5c-0.2,0.1-0.4,0.2-0.7,0.3c-0.3,0-0.5,0.1-0.8,0.1
|
121 |
+
c-0.3,0-0.6,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.4-0.3-0.5-0.5c-0.1-0.2-0.2-0.5-0.2-0.8h0.9
|
122 |
+
C75.3,61.6,75.3,61.7,75.4,61.8z"/>
|
123 |
+
</g>
|
124 |
+
<g enable-background="new ">
|
125 |
+
<path fill="#565656" d="M17.1,91.9l2.2,6l2.3-6h1.3V99H22v-5.9h0L19.8,99H19l-2.2-5.9h0V99h-0.9v-7.1H17.1z"/>
|
126 |
+
<path fill="#565656" d="M28,98.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
127 |
+
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
128 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1H25
|
129 |
+
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
130 |
+
s0.4-0.4,0.5-0.8h0.8C28.6,97.9,28.4,98.4,28,98.7z M27.8,95.3c-0.1-0.2-0.2-0.3-0.3-0.5c-0.1-0.1-0.3-0.2-0.5-0.3
|
131 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5C25,95.5,25,95.7,25,95.9h3
|
132 |
+
C27.9,95.7,27.9,95.5,27.8,95.3z"/>
|
133 |
+
<path fill="#565656" d="M30.4,97.8c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.3,0.1,0.4,0.2s0.3,0,0.5,0c0.1,0,0.3,0,0.4,0
|
134 |
+
c0.1,0,0.3-0.1,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.4-0.2-0.6-0.3
|
135 |
+
c-0.2-0.1-0.5-0.1-0.8-0.2s-0.6-0.1-0.8-0.2c-0.2-0.1-0.5-0.2-0.6-0.4s-0.2-0.4-0.2-0.8c0-0.3,0.1-0.5,0.2-0.7
|
136 |
+
c0.1-0.2,0.3-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3s0.5-0.1,0.7-0.1c0.3,0,0.6,0,0.8,0.1c0.2,0,0.5,0.1,0.7,0.3s0.3,0.3,0.5,0.5
|
137 |
+
s0.2,0.5,0.2,0.8h-0.9c0-0.2-0.1-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1s-0.3,0-0.4,0c-0.1,0-0.3,0-0.4,0
|
138 |
+
c-0.1,0-0.2,0.1-0.4,0.1c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0.1,0.3,0.2,0.4c0.1,0.1,0.2,0.2,0.4,0.2
|
139 |
+
c0.2,0.1,0.3,0.1,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.2,0.5,0.3s0.3,0.2,0.4,0.4
|
140 |
+
c0.1,0.2,0.1,0.4,0.1,0.6c0,0.3-0.1,0.6-0.2,0.8c-0.1,0.2-0.3,0.4-0.5,0.5c-0.2,0.1-0.4,0.2-0.7,0.3c-0.3,0-0.5,0.1-0.8,0.1
|
141 |
+
c-0.3,0-0.6,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.4-0.3-0.5-0.5c-0.1-0.2-0.2-0.5-0.2-0.8h0.9
|
142 |
+
C30.2,97.6,30.3,97.7,30.4,97.8z"/>
|
143 |
+
<path fill="#565656" d="M35.4,97.8c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.3,0.1,0.4,0.2s0.3,0,0.5,0c0.1,0,0.3,0,0.4,0
|
144 |
+
c0.1,0,0.3-0.1,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.4-0.2-0.6-0.3
|
145 |
+
c-0.2-0.1-0.5-0.1-0.8-0.2s-0.6-0.1-0.8-0.2c-0.2-0.1-0.5-0.2-0.6-0.4s-0.2-0.4-0.2-0.8c0-0.3,0.1-0.5,0.2-0.7
|
146 |
+
c0.1-0.2,0.3-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3s0.5-0.1,0.7-0.1c0.3,0,0.6,0,0.8,0.1c0.2,0,0.5,0.1,0.7,0.3s0.3,0.3,0.5,0.5
|
147 |
+
s0.2,0.5,0.2,0.8h-0.9c0-0.2-0.1-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1s-0.3,0-0.4,0c-0.1,0-0.3,0-0.4,0
|
148 |
+
c-0.1,0-0.2,0.1-0.4,0.1c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0.1,0.3,0.2,0.4c0.1,0.1,0.2,0.2,0.4,0.2
|
149 |
+
c0.2,0.1,0.3,0.1,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.2,0.5,0.3s0.3,0.2,0.4,0.4
|
150 |
+
c0.1,0.2,0.1,0.4,0.1,0.6c0,0.3-0.1,0.6-0.2,0.8c-0.1,0.2-0.3,0.4-0.5,0.5c-0.2,0.1-0.4,0.2-0.7,0.3c-0.3,0-0.5,0.1-0.8,0.1
|
151 |
+
c-0.3,0-0.6,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.4-0.3-0.5-0.5c-0.1-0.2-0.2-0.5-0.2-0.8h0.9
|
152 |
+
C35.2,97.6,35.3,97.7,35.4,97.8z"/>
|
153 |
+
<path fill="#565656" d="M44.3,99c-0.1,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.4-0.1-0.5-0.2S43,98.6,43,98.3c-0.2,0.3-0.5,0.5-0.8,0.6
|
154 |
+
c-0.3,0.1-0.6,0.2-1,0.2c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.1-0.5-0.2s-0.3-0.3-0.4-0.4c-0.1-0.2-0.1-0.4-0.1-0.7
|
155 |
+
c0-0.3,0.1-0.5,0.1-0.7c0.1-0.2,0.2-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.6-0.2c0.2,0,0.5-0.1,0.7-0.1
|
156 |
+
c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5c-0.1-0.1-0.2-0.2-0.3-0.3
|
157 |
+
c-0.1-0.1-0.2-0.1-0.4-0.1c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.4-0.4,0.8h-0.9c0-0.3,0.1-0.6,0.2-0.8
|
158 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0s0.4,0.1,0.6,0.2
|
159 |
+
c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7v2.7c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V99z M42.9,96.3
|
160 |
+
c-0.1,0.1-0.2,0.1-0.4,0.2c-0.2,0-0.4,0.1-0.5,0.1s-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3
|
161 |
+
c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0
|
162 |
+
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.2,0.5-0.3c0.1-0.1,0.2-0.2,0.3-0.4s0.1-0.3,0.1-0.4V96.3z"/>
|
163 |
+
<path fill="#565656" d="M49,100.5c-0.4,0.4-1,0.6-1.8,0.6c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.5-0.1-0.7-0.3
|
164 |
+
c-0.2-0.1-0.4-0.3-0.5-0.5S45,99.8,45,99.6h0.9c0,0.2,0.1,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.3,0.1,0.4,0.1
|
165 |
+
c0.2,0,0.3,0,0.4,0c0.3,0,0.5,0,0.7-0.1s0.4-0.2,0.5-0.4s0.2-0.4,0.3-0.6s0.1-0.5,0.1-0.8v-0.3h0c-0.1,0.3-0.4,0.6-0.7,0.7
|
166 |
+
C47.8,99,47.5,99,47.1,99c-0.4,0-0.7-0.1-1-0.2c-0.3-0.1-0.5-0.3-0.7-0.6c-0.2-0.2-0.3-0.5-0.4-0.8s-0.1-0.7-0.1-1
|
167 |
+
c0-0.3,0-0.6,0.1-0.9s0.2-0.6,0.4-0.9s0.4-0.5,0.7-0.7s0.7-0.3,1.1-0.3c0.3,0,0.6,0.1,0.9,0.2s0.5,0.4,0.6,0.6h0v-0.7h0.8v4.7
|
168 |
+
C49.5,99.4,49.4,100,49,100.5z M47.9,98.1c0.2-0.1,0.4-0.3,0.5-0.5c0.1-0.2,0.2-0.4,0.3-0.6c0.1-0.2,0.1-0.5,0.1-0.7
|
169 |
+
c0-0.2,0-0.4-0.1-0.7c-0.1-0.2-0.1-0.4-0.3-0.6s-0.3-0.3-0.5-0.4c-0.2-0.1-0.4-0.2-0.7-0.2c-0.3,0-0.5,0.1-0.7,0.2
|
170 |
+
s-0.4,0.2-0.5,0.4c-0.1,0.2-0.2,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.7c0,0.2,0,0.5,0.1,0.7c0,0.2,0.1,0.4,0.2,0.6
|
171 |
+
c0.1,0.2,0.3,0.3,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2C47.4,98.3,47.7,98.3,47.9,98.1z"/>
|
172 |
+
<path fill="#565656" d="M54.5,98.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
173 |
+
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
174 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1h-3.9
|
175 |
+
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
176 |
+
s0.4-0.4,0.5-0.8h0.8C55.1,97.9,54.9,98.4,54.5,98.7z M54.3,95.3c-0.1-0.2-0.2-0.3-0.3-0.5c-0.1-0.1-0.3-0.2-0.5-0.3
|
177 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h3
|
178 |
+
C54.4,95.7,54.4,95.5,54.3,95.3z"/>
|
179 |
+
</g>
|
180 |
+
<path id="Rectangle_593" fill="#377DFF" d="M52,145h60c5.5,0,10,4.5,10,10l0,0c0,5.5-4.5,10-10,10H52c-5.5,0-10-4.5-10-10l0,0
|
181 |
+
C42,149.5,46.5,145,52,145z"/>
|
182 |
+
<g enable-background="new ">
|
183 |
+
<path fill="#FFFFFF" d="M70,156.6c0,0.3,0,0.5,0.1,0.7c0.1,0.2,0.2,0.4,0.4,0.5s0.4,0.2,0.6,0.3c0.2,0.1,0.5,0.1,0.7,0.1
|
184 |
+
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.3s0.1-0.3,0.1-0.4c0-0.3-0.1-0.5-0.2-0.6
|
185 |
+
c-0.1-0.1-0.3-0.2-0.4-0.3c-0.3-0.1-0.5-0.2-0.9-0.3c-0.3-0.1-0.8-0.2-1.2-0.3c-0.3-0.1-0.6-0.2-0.8-0.3c-0.2-0.1-0.4-0.3-0.5-0.4
|
186 |
+
c-0.1-0.2-0.2-0.3-0.3-0.5c0-0.2-0.1-0.4-0.1-0.5c0-0.4,0.1-0.7,0.2-0.9c0.1-0.3,0.3-0.5,0.6-0.7c0.2-0.2,0.5-0.3,0.8-0.4
|
187 |
+
c0.3-0.1,0.6-0.1,1-0.1c0.4,0,0.7,0,1.1,0.1s0.6,0.2,0.9,0.4c0.2,0.2,0.4,0.4,0.6,0.7s0.2,0.6,0.2,1h-1.2c0-0.5-0.2-0.8-0.5-1
|
188 |
+
c-0.3-0.2-0.6-0.3-1.1-0.3c-0.1,0-0.3,0-0.5,0s-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.2-0.3,0.3c-0.1,0.1-0.1,0.3-0.1,0.4
|
189 |
+
c0,0.3,0.1,0.5,0.2,0.6s0.4,0.3,0.6,0.3c0,0,0.1,0,0.3,0.1c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.1,0.7,0.2s0.4,0.1,0.5,0.1
|
190 |
+
c0.2,0.1,0.4,0.2,0.6,0.3s0.3,0.3,0.4,0.4c0.1,0.2,0.2,0.3,0.3,0.5s0.1,0.4,0.1,0.6c0,0.4-0.1,0.7-0.2,1c-0.2,0.3-0.4,0.5-0.6,0.7
|
191 |
+
c-0.3,0.2-0.6,0.3-0.9,0.4c-0.3,0.1-0.7,0.1-1,0.1c-0.4,0-0.8,0-1.1-0.2c-0.4-0.1-0.7-0.3-0.9-0.5c-0.3-0.2-0.5-0.5-0.6-0.8
|
192 |
+
c-0.2-0.3-0.2-0.7-0.2-1.1H70z"/>
|
193 |
+
<path fill="#FFFFFF" d="M75.6,151.9h5.1v1.1h-3.9v1.9h3.6v1h-3.6v2.1h4v1.1h-5.2V151.9z"/>
|
194 |
+
<path fill="#FFFFFF" d="M81.9,151.9h1.3l3.3,5.3h0v-5.3h1.2v7.1h-1.3l-3.2-5.2h0v5.2h-1.2V151.9z"/>
|
195 |
+
<path fill="#FFFFFF" d="M89.1,151.9h3c0.5,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.4,1,0.8c0.3,0.3,0.4,0.7,0.6,1.1s0.2,0.9,0.2,1.4
|
196 |
+
c0,0.5-0.1,1-0.2,1.4s-0.3,0.8-0.6,1.1c-0.3,0.3-0.6,0.6-1,0.8c-0.4,0.2-0.9,0.3-1.4,0.3h-3V151.9z M90.4,158h1.2
|
197 |
+
c0.5,0,0.9-0.1,1.2-0.2c0.3-0.1,0.6-0.3,0.7-0.5c0.2-0.2,0.3-0.5,0.4-0.8c0.1-0.3,0.1-0.6,0.1-1c0-0.4,0-0.7-0.1-1
|
198 |
+
c-0.1-0.3-0.2-0.6-0.4-0.8c-0.2-0.2-0.4-0.4-0.7-0.5c-0.3-0.1-0.7-0.2-1.2-0.2h-1.2V158z"/>
|
199 |
+
</g>
|
200 |
+
<g enable-background="new ">
|
201 |
+
<path fill="#565656" d="M90.7,19.9v6.3h3.8V27h-4.7v-7.1H90.7z"/>
|
202 |
+
<path fill="#565656" d="M99.8,27c-0.1,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.4-0.1-0.5-0.2c-0.1-0.1-0.2-0.3-0.2-0.6
|
203 |
+
c-0.2,0.3-0.5,0.5-0.8,0.6c-0.3,0.1-0.6,0.2-1,0.2c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.1-0.5-0.2s-0.3-0.3-0.4-0.4
|
204 |
+
s-0.1-0.4-0.1-0.7c0-0.3,0.1-0.5,0.2-0.7s0.2-0.3,0.4-0.5c0.2-0.1,0.3-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.6-0.2c0.2,0,0.5-0.1,0.7-0.1
|
205 |
+
c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5s-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1
|
206 |
+
c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.4-0.4,0.8h-0.9c0-0.3,0.1-0.6,0.2-0.8c0.1-0.2,0.3-0.4,0.5-0.5
|
207 |
+
c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0s0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7
|
208 |
+
v2.7c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V27z M98.4,24.3c-0.1,0.1-0.2,0.1-0.4,0.2
|
209 |
+
c-0.2,0-0.4,0.1-0.5,0.1c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0.1-0.1,0.3-0.1,0.5
|
210 |
+
c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0c0.3,0,0.5,0,0.7-0.1
|
211 |
+
c0.2-0.1,0.4-0.2,0.5-0.3c0.1-0.1,0.2-0.2,0.3-0.4c0.1-0.1,0.1-0.3,0.1-0.4V24.3z"/>
|
212 |
+
<path fill="#565656" d="M101.2,25.8c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.3,0.1,0.4,0.2s0.3,0,0.5,0c0.1,0,0.3,0,0.4,0
|
213 |
+
c0.1,0,0.3-0.1,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2s0.1-0.2,0.1-0.4c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.4-0.2-0.6-0.3
|
214 |
+
c-0.2-0.1-0.5-0.1-0.8-0.2c-0.3-0.1-0.6-0.1-0.8-0.2c-0.2-0.1-0.5-0.2-0.6-0.4s-0.2-0.4-0.2-0.8c0-0.3,0.1-0.5,0.2-0.7
|
215 |
+
c0.1-0.2,0.3-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3s0.5-0.1,0.7-0.1c0.3,0,0.6,0,0.8,0.1c0.2,0,0.5,0.1,0.7,0.3
|
216 |
+
c0.2,0.1,0.3,0.3,0.5,0.5s0.2,0.5,0.2,0.8h-0.9c0-0.2-0.1-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1
|
217 |
+
s-0.3,0-0.4,0c-0.1,0-0.3,0-0.4,0c-0.1,0-0.2,0.1-0.4,0.1c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0.1,0.3,0.2,0.4
|
218 |
+
s0.2,0.2,0.4,0.2c0.2,0.1,0.3,0.1,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.2,0.5,0.3s0.3,0.2,0.4,0.4
|
219 |
+
c0.1,0.2,0.1,0.4,0.1,0.6c0,0.3-0.1,0.6-0.2,0.8c-0.1,0.2-0.3,0.4-0.5,0.5c-0.2,0.1-0.4,0.2-0.7,0.3s-0.5,0.1-0.8,0.1
|
220 |
+
c-0.3,0-0.6,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.4-0.3-0.5-0.5c-0.1-0.2-0.2-0.5-0.2-0.8h0.8
|
221 |
+
C101.1,25.6,101.1,25.7,101.2,25.8z"/>
|
222 |
+
<path fill="#565656" d="M107.8,21.8v0.8h-1v3.2c0,0.1,0,0.2,0,0.2c0,0.1,0,0.1,0.1,0.1s0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3,0h0.4V27
|
223 |
+
h-0.6c-0.2,0-0.4,0-0.6,0s-0.3-0.1-0.4-0.2s-0.2-0.2-0.2-0.3c0-0.1-0.1-0.3-0.1-0.6v-3.3H105v-0.8h0.9v-1.5h0.8v1.5H107.8z"/>
|
224 |
+
<path fill="#565656" d="M112.6,19.9l3.8,5.8h0v-5.8h0.9V27h-1l-3.7-5.7h0V27h-0.9v-7.1H112.6z"/>
|
225 |
+
<path fill="#565656" d="M123.3,27c-0.1,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.4-0.1-0.5-0.2c-0.1-0.1-0.2-0.3-0.2-0.6
|
226 |
+
c-0.2,0.3-0.5,0.5-0.8,0.6c-0.3,0.1-0.6,0.2-1,0.2c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.1-0.5-0.2s-0.3-0.3-0.4-0.4
|
227 |
+
s-0.1-0.4-0.1-0.7c0-0.3,0.1-0.5,0.2-0.7s0.2-0.3,0.4-0.5c0.2-0.1,0.3-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.6-0.2c0.2,0,0.5-0.1,0.7-0.1
|
228 |
+
c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5s-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1
|
229 |
+
c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.4-0.4,0.8h-0.9c0-0.3,0.1-0.6,0.2-0.8c0.1-0.2,0.3-0.4,0.5-0.5
|
230 |
+
c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0s0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7
|
231 |
+
v2.7c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V27z M121.9,24.3c-0.1,0.1-0.2,0.1-0.4,0.2
|
232 |
+
c-0.2,0-0.4,0.1-0.5,0.1c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0.1-0.1,0.3-0.1,0.5
|
233 |
+
c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0c0.3,0,0.5,0,0.7-0.1
|
234 |
+
c0.2-0.1,0.4-0.2,0.5-0.3c0.1-0.1,0.2-0.2,0.3-0.4c0.1-0.1,0.1-0.3,0.1-0.4V24.3z"/>
|
235 |
+
<path fill="#565656" d="M124.9,21.8v0.8h0c0.4-0.6,0.9-0.9,1.7-0.9c0.3,0,0.6,0.1,0.9,0.2c0.3,0.1,0.4,0.4,0.5,0.7
|
236 |
+
c0.2-0.3,0.4-0.5,0.7-0.6s0.6-0.2,0.9-0.2c0.3,0,0.5,0,0.7,0.1s0.4,0.1,0.5,0.3c0.1,0.1,0.3,0.3,0.4,0.5c0.1,0.2,0.1,0.4,0.1,0.7
|
237 |
+
V27h-0.9v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.3-0.2c-0.1-0.1-0.3-0.1-0.5-0.1c-0.4,0-0.8,0.1-1,0.4
|
238 |
+
c-0.2,0.2-0.4,0.6-0.4,1V27h-0.8v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.3-0.2
|
239 |
+
c-0.1-0.1-0.3-0.1-0.5-0.1c-0.2,0-0.5,0-0.6,0.2c-0.2,0.1-0.3,0.2-0.4,0.4c-0.1,0.1-0.2,0.3-0.2,0.4c0,0.1-0.1,0.3-0.1,0.4V27
|
240 |
+
h-0.8v-5.2H124.9z"/>
|
241 |
+
<path fill="#565656" d="M136.3,26.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
242 |
+
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
243 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1h-3.9
|
244 |
+
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.5,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
245 |
+
s0.4-0.4,0.5-0.8h0.8C136.9,25.9,136.7,26.4,136.3,26.7z M136.1,23.3c-0.1-0.2-0.2-0.3-0.3-0.5s-0.3-0.2-0.5-0.3
|
246 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h3
|
247 |
+
C136.2,23.7,136.2,23.5,136.1,23.3z"/>
|
248 |
+
</g>
|
249 |
+
</g>
|
250 |
+
</svg>
|
templates/2/content.json
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
{"version":"0.4","title":"Contact Form Simple 2","type":"page","content":[{"id":"1637","settings":{"gap":"no","box_shadow_box_shadow":{"horizontal":30,"vertical":30,"blur":80,"spread":0,"color":"rgba(0,0,0,0.1)"}},"elements":[{"id":"6736","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"456b","settings":{"gap":"extended"},"elements":[{"id":"42ba","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"6adc","settings":{"title":"Your Details","title_color":"#101010","typography_typography":"custom","typography_font_family":"Helvetica","typography_font_size":{"unit":"px","size":20,"sizes":[]},"typography_font_weight":"700","typography_line_height":{"unit":"px","size":21,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"heading","elType":"widget"},{"id":"37e5","settings":{"title":"Let us know how to get back to you.","header_size":"p","title_color":"#999999","typography_typography":"custom","typography_font_family":"Helvetica","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"400","typography_line_height":{"unit":"px","size":18,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"_padding":{"unit":"px","top":"5","right":"0","bottom":"11","left":"0","isLinked":false},"_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"_border_color":"#e9e9e9"},"elements":[],"isInner":false,"widgetType":"heading","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"3974","settings":{"gap":"extended","structure":"20"},"elements":[{"id":"6d61","settings":{"_column_size":50,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"58c8","settings":{"mf_input_label":"First Name","mf_input_name":"mf-first-name","mf_input_placeholder":"Anderson","mf_input_help_text":"Enter your first name here","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_min_length":1,"mf_input_label_color":"#101010","mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_required":"yes","mf_input_required_indicator_color":"#101010"},"elements":[],"isInner":false,"widgetType":"mf-text","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"4d47","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"5086","settings":{"mf_input_label":"Last Name","mf_input_name":"mf-last-name","mf_input_placeholder":"Mikoo","mf_input_help_text":"Enter your last name here","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_required":"yes","mf_input_required_indicator_color":"#101010"},"elements":[],"isInner":false,"widgetType":"mf-text","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"6799","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"6f12","settings":{"_column_size":50,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"7e9d","settings":{"mf_input_label":"Email Address","mf_input_name":"mf-email","mf_input_placeholder":"","mf_input_help_text":"Example: user@website.com","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-email","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"78e0","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"76e3","settings":{"mf_input_label":"Subject","mf_input_name":"mf-subject","mf_input_placeholder":"","mf_input_help_text":"How can we help you?","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-text","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"70d1","settings":{"gap":"extended","padding":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"3f8","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"6a5e","settings":{"title":"How can we help?","title_color":"#101010","typography_typography":"custom","typography_font_family":"Helvetica","typography_font_size":{"unit":"px","size":20,"sizes":[]},"typography_font_weight":"700","typography_line_height":{"unit":"px","size":21,"sizes":[]},"_padding":{"unit":"px","top":"1","right":"0","bottom":"5","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"heading","elType":"widget"},{"id":"1e3f","settings":{"title":"Feel free to ask a question or simply leave a comment","header_size":"p","title_color":"#999999","typography_typography":"custom","typography_font_family":"Helvetica","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"400","typography_line_height":{"unit":"px","size":18,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_padding":{"unit":"px","top":"5","right":"0","bottom":"11","left":"0","isLinked":false},"_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"_border_color":"#e9e9e9"},"elements":[],"isInner":false,"widgetType":"heading","elType":"widget"},{"id":"430c","settings":{"mf_input_label":"Comments \/ Questions","mf_input_name":"mf-comment","mf_input_placeholder":"","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_textarea_field_height":{"unit":"px","size":140,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"mf-textarea","elType":"widget"},{"id":"6455","settings":{"_margin":{"unit":"px","top":"40","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-recaptcha","elType":"widget"},{"id":"4e6a","settings":{"mf_btn_text":"Send Message","mf_btn_align":"left","mf_btn_text_padding":{"unit":"px","top":"15","right":"20","bottom":"15","left":"20","isLinked":false},"mf_btn_typography_typography":"custom","mf_btn_typography_font_family":"Helvetica","mf_btn_typography_font_size":{"unit":"px","size":16,"sizes":[]},"mf_btn_typography_font_weight":"500","mf_btn_typography_line_height":{"unit":"px","size":18,"sizes":[]},"mf_btn_bg_color_background":"classic","mf_btn_bg_color_color":"#4285f4","mf_btn_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"mf_btn_box_shadow_group_box_shadow_type":"yes","mf_btn_box_shadow_group_box_shadow":{"horizontal":0,"vertical":7,"blur":15,"spread":0,"color":"rgba(66,133,244,0.3)"},"_margin":{"unit":"px","top":"40","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-button","elType":"widget"},{"id":"5f5b","settings":{"_padding":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false},"_margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-response","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}]}
|
templates/2/preview-thumb.svg
ADDED
@@ -0,0 +1,347 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 164 182" enable-background="new 0 0 164 182" xml:space="preserve">
|
5 |
+
<g id="Group_38" transform="translate(-1067 -241)">
|
6 |
+
<path id="Rectangle_634" fill="#FFFFFF" d="M1072,241h154c2.8,0,5,2.2,5,5v172c0,2.8-2.2,5-5,5h-154c-2.8,0-5-2.2-5-5V246
|
7 |
+
C1067,243.2,1069.2,241,1072,241z"/>
|
8 |
+
<path id="Rectangle_637" fill="#FF7B13" d="M1082.5,272h133c0.3,0,0.5,0.2,0.5,0.5l0,0c0,0.3-0.2,0.5-0.5,0.5h-133
|
9 |
+
c-0.3,0-0.5-0.2-0.5-0.5l0,0C1082,272.2,1082.2,272,1082.5,272z"/>
|
10 |
+
<path id="Rectangle_640" fill="#FF7B13" d="M1082.5,371h133c0.3,0,0.5,0.2,0.5,0.5l0,0c0,0.3-0.2,0.5-0.5,0.5h-133
|
11 |
+
c-0.3,0-0.5-0.2-0.5-0.5l0,0C1082,371.2,1082.2,371,1082.5,371z"/>
|
12 |
+
<g enable-background="new ">
|
13 |
+
<path fill="#565656" d="M1085.7,266h-1v-2.9l-2.8-4.2h1.1l2.1,3.4l2.1-3.4h1.1l-2.7,4.2V266z"/>
|
14 |
+
<path fill="#565656" d="M1087.9,262.4c0.1-0.3,0.3-0.6,0.5-0.9s0.5-0.4,0.8-0.6s0.7-0.2,1.1-0.2c0.4,0,0.8,0.1,1.1,0.2
|
15 |
+
s0.6,0.3,0.8,0.6c0.2,0.2,0.4,0.5,0.5,0.9c0.1,0.3,0.2,0.7,0.2,1.1s-0.1,0.7-0.2,1.1c-0.1,0.3-0.3,0.6-0.5,0.9
|
16 |
+
c-0.2,0.2-0.5,0.4-0.8,0.6s-0.7,0.2-1.1,0.2c-0.4,0-0.8-0.1-1.1-0.2s-0.6-0.3-0.8-0.6s-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1
|
17 |
+
S1087.8,262.7,1087.9,262.4z M1088.8,264.3c0.1,0.2,0.2,0.4,0.3,0.6s0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.6,0.1c0.2,0,0.4,0,0.6-0.1
|
18 |
+
c0.2-0.1,0.4-0.2,0.5-0.4c0.1-0.2,0.3-0.4,0.3-0.6s0.1-0.5,0.1-0.8s0-0.6-0.1-0.8s-0.2-0.4-0.3-0.6c-0.1-0.2-0.3-0.3-0.5-0.4
|
19 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.1,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8
|
20 |
+
S1088.7,264,1088.8,264.3z"/>
|
21 |
+
<path fill="#565656" d="M1097.2,266v-0.8h0c-0.2,0.3-0.4,0.6-0.7,0.7c-0.3,0.2-0.6,0.2-1,0.2c-0.3,0-0.6,0-0.9-0.1
|
22 |
+
c-0.2-0.1-0.4-0.2-0.5-0.4c-0.1-0.2-0.2-0.4-0.3-0.6c-0.1-0.2-0.1-0.5-0.1-0.8v-3.4h0.9v3.5c0,0.3,0.1,0.6,0.3,0.8
|
23 |
+
s0.4,0.3,0.8,0.3c0.3,0,0.5,0,0.7-0.1s0.3-0.2,0.5-0.3s0.2-0.3,0.3-0.5c0.1-0.2,0.1-0.4,0.1-0.6v-2.9h0.9v5.2H1097.2z"/>
|
24 |
+
<path fill="#565656" d="M1100.1,260.8v1.1h0c0.2-0.4,0.5-0.7,0.8-0.9c0.3-0.2,0.7-0.3,1.1-0.3v0.9c-0.3,0-0.6,0-0.9,0.1
|
25 |
+
c-0.2,0.1-0.4,0.2-0.6,0.4s-0.3,0.4-0.3,0.7c-0.1,0.3-0.1,0.6-0.1,0.9v2.3h-0.9v-5.2H1100.1z"/>
|
26 |
+
<path fill="#565656" d="M1108,258.9c1.1,0,1.9,0.3,2.5,0.8c0.6,0.6,0.9,1.4,0.9,2.6c0,0.6-0.1,1.1-0.2,1.6
|
27 |
+
c-0.1,0.5-0.3,0.9-0.6,1.2c-0.3,0.3-0.6,0.6-1.1,0.7c-0.4,0.2-0.9,0.2-1.5,0.2h-2.5v-7.1H1108z M1108.1,265.2c0.1,0,0.2,0,0.4,0
|
28 |
+
s0.3-0.1,0.5-0.1c0.2-0.1,0.4-0.2,0.5-0.3s0.3-0.3,0.5-0.5s0.3-0.5,0.3-0.8c0.1-0.3,0.1-0.7,0.1-1.1c0-0.4,0-0.8-0.1-1.1
|
29 |
+
s-0.2-0.6-0.4-0.9c-0.2-0.2-0.4-0.4-0.7-0.5c-0.3-0.1-0.7-0.2-1.1-0.2h-1.6v5.5H1108.1z"/>
|
30 |
+
<path fill="#565656" d="M1116.1,265.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
31 |
+
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
32 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1h-3.9
|
33 |
+
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
34 |
+
s0.4-0.4,0.5-0.8h0.8C1116.8,264.9,1116.5,265.4,1116.1,265.7z M1115.9,262.3c-0.1-0.2-0.2-0.3-0.3-0.5c-0.1-0.1-0.3-0.2-0.5-0.3
|
35 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h3
|
36 |
+
C1116,262.7,1116,262.5,1115.9,262.3z"/>
|
37 |
+
<path fill="#565656" d="M1120,260.8v0.8h-1v3.2c0,0.1,0,0.2,0,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3,0h0.4
|
38 |
+
v0.8h-0.6c-0.2,0-0.4,0-0.6,0c-0.2,0-0.3-0.1-0.4-0.2s-0.2-0.2-0.2-0.3c0-0.1-0.1-0.3-0.1-0.6v-3.3h-0.9v-0.8h0.9v-1.5h0.8v1.5
|
39 |
+
H1120z"/>
|
40 |
+
<path fill="#565656" d="M1125.6,266c-0.1,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.4-0.1-0.5-0.2s-0.2-0.3-0.2-0.6c-0.2,0.3-0.5,0.5-0.8,0.6
|
41 |
+
c-0.3,0.1-0.6,0.2-1,0.2c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.1-0.5-0.2s-0.3-0.3-0.4-0.4c-0.1-0.2-0.1-0.4-0.1-0.7
|
42 |
+
c0-0.3,0.1-0.5,0.1-0.7c0.1-0.2,0.2-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.6-0.2c0.2,0,0.5-0.1,0.7-0.1
|
43 |
+
c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5c-0.1-0.1-0.2-0.2-0.3-0.3
|
44 |
+
c-0.1-0.1-0.2-0.1-0.4-0.1c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.4-0.4,0.8h-0.9c0-0.3,0.1-0.6,0.2-0.8
|
45 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0s0.4,0.1,0.6,0.2
|
46 |
+
c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7v2.7c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V266z M1124.2,263.3
|
47 |
+
c-0.1,0.1-0.2,0.1-0.4,0.2c-0.2,0-0.4,0.1-0.5,0.1s-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3
|
48 |
+
c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0
|
49 |
+
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.2,0.5-0.3c0.1-0.1,0.2-0.2,0.3-0.4s0.1-0.3,0.1-0.4V263.3z"/>
|
50 |
+
<path fill="#565656" d="M1126.4,259.9v-1h0.9v1H1126.4z M1127.2,260.8v5.2h-0.9v-5.2H1127.2z"/>
|
51 |
+
<path fill="#565656" d="M1129.5,258.9v7.1h-0.9v-7.1H1129.5z"/>
|
52 |
+
<path fill="#565656" d="M1131.4,264.8c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.3,0.1,0.4,0.2s0.3,0,0.5,0c0.1,0,0.3,0,0.4,0
|
53 |
+
c0.1,0,0.3-0.1,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.4-0.2-0.6-0.3
|
54 |
+
c-0.2-0.1-0.5-0.1-0.8-0.2s-0.6-0.1-0.8-0.2c-0.2-0.1-0.5-0.2-0.6-0.4s-0.2-0.4-0.2-0.8c0-0.3,0.1-0.5,0.2-0.7
|
55 |
+
c0.1-0.2,0.3-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3s0.5-0.1,0.7-0.1c0.3,0,0.6,0,0.8,0.1c0.2,0,0.5,0.1,0.7,0.3s0.3,0.3,0.5,0.5
|
56 |
+
s0.2,0.5,0.2,0.8h-0.9c0-0.2-0.1-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1s-0.3,0-0.4,0c-0.1,0-0.3,0-0.4,0
|
57 |
+
c-0.1,0-0.2,0.1-0.4,0.1c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0.1,0.3,0.2,0.4c0.1,0.1,0.2,0.2,0.4,0.2
|
58 |
+
c0.2,0.1,0.3,0.1,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.2,0.5,0.3s0.3,0.2,0.4,0.4
|
59 |
+
c0.1,0.2,0.1,0.4,0.1,0.6c0,0.3-0.1,0.6-0.2,0.8c-0.1,0.2-0.3,0.4-0.5,0.5c-0.2,0.1-0.4,0.2-0.7,0.3c-0.3,0-0.5,0.1-0.8,0.1
|
60 |
+
c-0.3,0-0.6,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.4-0.3-0.5-0.5c-0.1-0.2-0.2-0.5-0.2-0.8h0.9
|
61 |
+
C1131.3,264.6,1131.4,264.7,1131.4,264.8z"/>
|
62 |
+
</g>
|
63 |
+
<g enable-background="new ">
|
64 |
+
<path fill="#565656" d="M1083.7,357.9v3.1h3.8v-3.1h0.9v7.1h-0.9v-3.3h-3.8v3.3h-1v-7.1H1083.7z"/>
|
65 |
+
<path fill="#565656" d="M1089.7,361.4c0.1-0.3,0.3-0.6,0.5-0.9s0.5-0.4,0.8-0.6s0.7-0.2,1.1-0.2c0.4,0,0.8,0.1,1.1,0.2
|
66 |
+
s0.6,0.3,0.8,0.6c0.2,0.2,0.4,0.5,0.5,0.9c0.1,0.3,0.2,0.7,0.2,1.1s-0.1,0.7-0.2,1.1c-0.1,0.3-0.3,0.6-0.5,0.9
|
67 |
+
c-0.2,0.2-0.5,0.4-0.8,0.6s-0.7,0.2-1.1,0.2c-0.4,0-0.8-0.1-1.1-0.2s-0.6-0.3-0.8-0.6s-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1
|
68 |
+
S1089.6,361.7,1089.7,361.4z M1090.6,363.3c0.1,0.2,0.2,0.4,0.3,0.6s0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.6,0.1c0.2,0,0.4,0,0.6-0.1
|
69 |
+
c0.2-0.1,0.4-0.2,0.5-0.4c0.1-0.2,0.3-0.4,0.3-0.6s0.1-0.5,0.1-0.8s0-0.6-0.1-0.8s-0.2-0.4-0.3-0.6c-0.1-0.2-0.3-0.3-0.5-0.4
|
70 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.1,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8
|
71 |
+
S1090.5,363,1090.6,363.3z"/>
|
72 |
+
<path fill="#565656" d="M1099.8,365l-1-4.1h0l-1,4.1h-0.9l-1.7-5.2h0.9l1.2,4.2h0l1-4.2h0.9l1.1,4.2h0l1.2-4.2h0.9l-1.7,5.2
|
73 |
+
H1099.8z"/>
|
74 |
+
<path fill="#565656" d="M1109,360.7c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.5s-0.2,0.4-0.3,0.6
|
75 |
+
c-0.1,0.2-0.1,0.5-0.1,0.8c0,0.2,0,0.5,0.1,0.7c0.1,0.2,0.1,0.4,0.3,0.6c0.1,0.2,0.3,0.3,0.5,0.4s0.4,0.2,0.7,0.2
|
76 |
+
c0.4,0,0.7-0.1,1-0.3s0.4-0.5,0.4-0.9h0.9c-0.1,0.6-0.3,1.1-0.7,1.5c-0.4,0.3-0.9,0.5-1.6,0.5c-0.4,0-0.7-0.1-1-0.2
|
77 |
+
s-0.6-0.3-0.8-0.5c-0.2-0.2-0.4-0.5-0.5-0.8c-0.1-0.3-0.2-0.7-0.2-1.1s0.1-0.7,0.1-1.1c0.1-0.3,0.3-0.6,0.5-0.9
|
78 |
+
c0.2-0.2,0.5-0.4,0.8-0.6s0.7-0.2,1.1-0.2c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.7,0.3c0.2,0.1,0.4,0.3,0.5,0.6
|
79 |
+
c0.1,0.2,0.2,0.5,0.2,0.8h-0.9C1109.4,361.2,1109.3,360.9,1109,360.7z"/>
|
80 |
+
<path fill="#565656" d="M1115.9,365c-0.1,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.4-0.1-0.5-0.2s-0.2-0.3-0.2-0.6c-0.2,0.3-0.5,0.5-0.8,0.6
|
81 |
+
c-0.3,0.1-0.6,0.2-1,0.2c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.1-0.5-0.2s-0.3-0.3-0.4-0.4c-0.1-0.2-0.1-0.4-0.1-0.7
|
82 |
+
c0-0.3,0.1-0.5,0.1-0.7c0.1-0.2,0.2-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.6-0.2c0.2,0,0.5-0.1,0.7-0.1
|
83 |
+
c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5c-0.1-0.1-0.2-0.2-0.3-0.3
|
84 |
+
c-0.1-0.1-0.2-0.1-0.4-0.1c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.4-0.4,0.8h-0.9c0-0.3,0.1-0.6,0.2-0.8
|
85 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0s0.4,0.1,0.6,0.2
|
86 |
+
c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7v2.7c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V365z M1114.5,362.3
|
87 |
+
c-0.1,0.1-0.2,0.1-0.4,0.2c-0.2,0-0.4,0.1-0.5,0.1s-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3
|
88 |
+
c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0
|
89 |
+
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.2,0.5-0.3c0.1-0.1,0.2-0.2,0.3-0.4s0.1-0.3,0.1-0.4V362.3z"/>
|
90 |
+
<path fill="#565656" d="M1117.5,359.8v0.8h0c0.4-0.6,0.9-0.9,1.7-0.9c0.3,0,0.6,0,0.9,0.1c0.2,0.1,0.4,0.2,0.5,0.4
|
91 |
+
c0.1,0.2,0.2,0.4,0.3,0.6c0.1,0.2,0.1,0.5,0.1,0.8v3.4h-0.9v-3.5c0-0.3-0.1-0.6-0.3-0.8s-0.4-0.3-0.8-0.3c-0.3,0-0.5,0-0.7,0.1
|
92 |
+
c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6v2.9h-0.9v-5.2H1117.5z"/>
|
93 |
+
<path fill="#565656" d="M1129.3,365l-1-4.1h0l-1,4.1h-0.9l-1.7-5.2h0.9l1.2,4.2h0l1-4.2h0.9l1.1,4.2h0l1.2-4.2h0.9l-1.7,5.2
|
94 |
+
H1129.3z"/>
|
95 |
+
<path fill="#565656" d="M1136.3,364.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
96 |
+
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
97 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1h-3.9
|
98 |
+
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
99 |
+
s0.4-0.4,0.5-0.8h0.8C1136.9,363.9,1136.7,364.4,1136.3,364.7z M1136.1,361.3c-0.1-0.2-0.2-0.3-0.3-0.5c-0.1-0.1-0.3-0.2-0.5-0.3
|
100 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h3
|
101 |
+
C1136.2,361.7,1136.2,361.5,1136.1,361.3z"/>
|
102 |
+
<path fill="#565656" d="M1141.6,357.9v2.7h0c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.3-0.2,0.4-0.3c0.2-0.1,0.3-0.1,0.5-0.2
|
103 |
+
c0.2,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9,0.1c0.2,0.1,0.4,0.2,0.5,0.4c0.1,0.2,0.2,0.4,0.3,0.6c0.1,0.2,0.1,0.5,0.1,0.8v3.4h-0.9v-3.5
|
104 |
+
c0-0.3-0.1-0.6-0.3-0.8s-0.4-0.3-0.8-0.3c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5
|
105 |
+
c-0.1,0.2-0.1,0.4-0.1,0.6v2.9h-0.9v-7.1H1141.6z"/>
|
106 |
+
<path fill="#565656" d="M1150,364.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
107 |
+
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
108 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1s0.1,0.7,0.1,1h-3.9
|
109 |
+
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
110 |
+
c0.2-0.2,0.4-0.4,0.5-0.8h0.8C1150.6,363.9,1150.4,364.4,1150,364.7z M1149.8,361.3c-0.1-0.2-0.2-0.3-0.3-0.5
|
111 |
+
c-0.1-0.1-0.3-0.2-0.5-0.3c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5
|
112 |
+
c-0.1,0.2-0.1,0.4-0.1,0.6h3C1149.9,361.7,1149.9,361.5,1149.8,361.3z"/>
|
113 |
+
<path fill="#565656" d="M1152.6,357.9v7.1h-0.9v-7.1H1152.6z"/>
|
114 |
+
<path fill="#565656" d="M1154.8,359.8v0.7h0c0.1-0.3,0.4-0.5,0.7-0.6c0.3-0.1,0.6-0.2,1-0.2c0.4,0,0.7,0.1,1,0.2
|
115 |
+
c0.3,0.1,0.5,0.3,0.7,0.6c0.2,0.2,0.3,0.5,0.4,0.9c0.1,0.3,0.1,0.7,0.1,1c0,0.4,0,0.7-0.1,1c-0.1,0.3-0.2,0.6-0.4,0.9
|
116 |
+
s-0.4,0.4-0.7,0.6c-0.3,0.1-0.6,0.2-1,0.2c-0.1,0-0.3,0-0.4,0c-0.2,0-0.3-0.1-0.5-0.1c-0.2-0.1-0.3-0.1-0.4-0.2s-0.3-0.2-0.3-0.4
|
117 |
+
h0v2.7h-0.8v-7.1H1154.8z M1157.9,361.7c-0.1-0.2-0.2-0.4-0.3-0.6c-0.1-0.2-0.3-0.3-0.5-0.4c-0.2-0.1-0.4-0.2-0.7-0.2
|
118 |
+
c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.4-0.3,0.6s-0.1,0.5-0.1,0.7c0,0.3,0,0.5,0.1,0.7
|
119 |
+
c0.1,0.2,0.2,0.4,0.3,0.6c0.1,0.2,0.3,0.3,0.5,0.4s0.5,0.2,0.8,0.2s0.5-0.1,0.7-0.2s0.4-0.3,0.5-0.5c0.1-0.2,0.2-0.4,0.3-0.6
|
120 |
+
c0.1-0.2,0.1-0.5,0.1-0.7C1157.9,362.1,1157.9,361.9,1157.9,361.7z"/>
|
121 |
+
<path fill="#565656" d="M1159.9,359.1c0.1-0.3,0.3-0.5,0.4-0.8s0.4-0.4,0.7-0.5c0.3-0.1,0.6-0.2,0.9-0.2c0.3,0,0.6,0,0.9,0.1
|
122 |
+
c0.3,0.1,0.5,0.2,0.7,0.4c0.2,0.2,0.3,0.4,0.4,0.6c0.1,0.2,0.2,0.5,0.2,0.9c0,0.2,0,0.4-0.1,0.6s-0.1,0.3-0.2,0.4
|
123 |
+
c-0.1,0.1-0.2,0.3-0.3,0.4c-0.1,0.1-0.2,0.2-0.3,0.3c-0.1,0.1-0.2,0.2-0.3,0.3s-0.2,0.2-0.3,0.3c-0.1,0.1-0.2,0.2-0.2,0.4
|
124 |
+
s-0.1,0.3-0.1,0.5v0.4h-0.8v-0.5c0-0.3,0.1-0.5,0.2-0.7s0.2-0.4,0.3-0.5c0.1-0.2,0.3-0.3,0.4-0.4c0.1-0.1,0.3-0.3,0.4-0.4
|
125 |
+
s0.2-0.3,0.3-0.5c0.1-0.2,0.1-0.4,0.1-0.6c0-0.4-0.1-0.7-0.4-0.9c-0.2-0.2-0.5-0.3-0.9-0.3c-0.2,0-0.4,0-0.6,0.1
|
126 |
+
c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h-0.9C1159.8,359.8,1159.8,359.4,1159.9,359.1z
|
127 |
+
M1162.5,363.9v1.1h-1.1v-1.1H1162.5z"/>
|
128 |
+
</g>
|
129 |
+
<path id="Rectangle_638" fill="#FF7A14" d="M1104,386h90c5.5,0,10,4.5,10,10l0,0c0,5.5-4.5,10-10,10h-90c-5.5,0-10-4.5-10-10l0,0
|
130 |
+
C1094,390.5,1098.5,386,1104,386z"/>
|
131 |
+
<g enable-background="new ">
|
132 |
+
<path fill="#FFFFFF" d="M1111.2,397.6c0,0.3,0,0.5,0.1,0.7c0.1,0.2,0.2,0.4,0.4,0.5s0.4,0.2,0.6,0.3c0.2,0.1,0.5,0.1,0.7,0.1
|
133 |
+
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.3s0.1-0.3,0.1-0.4c0-0.3-0.1-0.5-0.2-0.6
|
134 |
+
c-0.1-0.1-0.3-0.2-0.4-0.3c-0.3-0.1-0.5-0.2-0.9-0.3c-0.3-0.1-0.8-0.2-1.2-0.3c-0.3-0.1-0.6-0.2-0.8-0.3c-0.2-0.1-0.4-0.3-0.5-0.4
|
135 |
+
c-0.1-0.2-0.2-0.3-0.3-0.5c0-0.2-0.1-0.4-0.1-0.5c0-0.4,0.1-0.7,0.2-0.9c0.1-0.3,0.3-0.5,0.6-0.7c0.2-0.2,0.5-0.3,0.8-0.4
|
136 |
+
c0.3-0.1,0.6-0.1,1-0.1c0.4,0,0.7,0,1.1,0.1s0.6,0.2,0.9,0.4c0.2,0.2,0.4,0.4,0.6,0.7s0.2,0.6,0.2,1h-1.2c0-0.5-0.2-0.8-0.5-1
|
137 |
+
c-0.3-0.2-0.6-0.3-1.1-0.3c-0.1,0-0.3,0-0.5,0s-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.2-0.3,0.3c-0.1,0.1-0.1,0.3-0.1,0.4
|
138 |
+
c0,0.3,0.1,0.5,0.2,0.6s0.4,0.3,0.6,0.3c0,0,0.1,0,0.3,0.1c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.1,0.7,0.2s0.4,0.1,0.5,0.1
|
139 |
+
c0.2,0.1,0.4,0.2,0.6,0.3s0.3,0.3,0.4,0.4c0.1,0.2,0.2,0.3,0.3,0.5s0.1,0.4,0.1,0.6c0,0.4-0.1,0.7-0.2,1c-0.2,0.3-0.4,0.5-0.6,0.7
|
140 |
+
c-0.3,0.2-0.6,0.3-0.9,0.4c-0.3,0.1-0.7,0.1-1,0.1c-0.4,0-0.8,0-1.1-0.2c-0.4-0.1-0.7-0.3-0.9-0.5c-0.3-0.2-0.5-0.5-0.6-0.8
|
141 |
+
c-0.2-0.3-0.2-0.7-0.2-1.1H1111.2z"/>
|
142 |
+
<path fill="#FFFFFF" d="M1116.9,392.9h5.1v1.1h-3.9v1.9h3.6v1h-3.6v2.1h4v1.1h-5.2V392.9z"/>
|
143 |
+
<path fill="#FFFFFF" d="M1123.1,392.9h1.3l3.3,5.3h0v-5.3h1.2v7.1h-1.3l-3.2-5.2h0v5.2h-1.2V392.9z"/>
|
144 |
+
<path fill="#FFFFFF" d="M1130.4,392.9h3c0.5,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.4,1,0.8c0.3,0.3,0.4,0.7,0.6,1.1
|
145 |
+
c0.1,0.4,0.2,0.9,0.2,1.4c0,0.5-0.1,1-0.2,1.4c-0.1,0.4-0.3,0.8-0.6,1.1c-0.3,0.3-0.6,0.6-1,0.8s-0.9,0.3-1.4,0.3h-3V392.9z
|
146 |
+
M1131.7,399h1.2c0.5,0,0.9-0.1,1.2-0.2s0.6-0.3,0.7-0.5c0.2-0.2,0.3-0.5,0.4-0.8c0.1-0.3,0.1-0.6,0.1-1c0-0.4,0-0.7-0.1-1
|
147 |
+
c-0.1-0.3-0.2-0.6-0.4-0.8c-0.2-0.2-0.4-0.4-0.7-0.5s-0.7-0.2-1.2-0.2h-1.2V399z"/>
|
148 |
+
<path fill="#FFFFFF" d="M1140.4,392.9h1.8l2,5.6h0l1.9-5.6h1.7v7.1h-1.2v-5.5h0l-2,5.5h-1l-2-5.5h0v5.5h-1.2V392.9z"/>
|
149 |
+
<path fill="#FFFFFF" d="M1149.3,392.9h5.1v1.1h-3.9v1.9h3.6v1h-3.6v2.1h4v1.1h-5.2V392.9z"/>
|
150 |
+
<path fill="#FFFFFF" d="M1156.4,397.6c0,0.3,0,0.5,0.1,0.7s0.2,0.4,0.4,0.5s0.4,0.2,0.6,0.3s0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.7-0.1
|
151 |
+
c0.2-0.1,0.4-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.3s0.1-0.3,0.1-0.4c0-0.3-0.1-0.5-0.2-0.6c-0.1-0.1-0.3-0.2-0.4-0.3
|
152 |
+
c-0.3-0.1-0.5-0.2-0.9-0.3c-0.3-0.1-0.8-0.2-1.2-0.3c-0.3-0.1-0.6-0.2-0.8-0.3c-0.2-0.1-0.4-0.3-0.5-0.4c-0.1-0.2-0.2-0.3-0.3-0.5
|
153 |
+
c-0.1-0.2-0.1-0.4-0.1-0.5c0-0.4,0.1-0.7,0.2-0.9c0.1-0.3,0.3-0.5,0.6-0.7c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1
|
154 |
+
c0.4,0,0.7,0,1.1,0.1s0.6,0.2,0.9,0.4c0.2,0.2,0.4,0.4,0.6,0.7s0.2,0.6,0.2,1h-1.2c0-0.5-0.2-0.8-0.5-1c-0.3-0.2-0.6-0.3-1.1-0.3
|
155 |
+
c-0.1,0-0.3,0-0.4,0c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.2-0.3,0.3c-0.1,0.1-0.1,0.3-0.1,0.4c0,0.3,0.1,0.5,0.2,0.6
|
156 |
+
c0.2,0.1,0.4,0.3,0.6,0.3c0,0,0.1,0,0.3,0.1c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.1,0.7,0.2s0.4,0.1,0.5,0.1
|
157 |
+
c0.2,0.1,0.4,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.4c0.1,0.2,0.2,0.3,0.3,0.5s0.1,0.4,0.1,0.6c0,0.4-0.1,0.7-0.2,1s-0.4,0.5-0.6,0.7
|
158 |
+
c-0.3,0.2-0.6,0.3-0.9,0.4c-0.3,0.1-0.7,0.1-1,0.1c-0.4,0-0.8,0-1.2-0.2c-0.4-0.1-0.7-0.3-0.9-0.5c-0.3-0.2-0.5-0.5-0.6-0.8
|
159 |
+
c-0.2-0.3-0.2-0.7-0.2-1.1H1156.4z"/>
|
160 |
+
<path fill="#FFFFFF" d="M1162.9,397.6c0,0.3,0,0.5,0.1,0.7c0.1,0.2,0.2,0.4,0.4,0.5c0.2,0.1,0.4,0.2,0.6,0.3
|
161 |
+
c0.2,0.1,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.1-0.3,0.1-0.4
|
162 |
+
c0-0.3-0.1-0.5-0.2-0.6s-0.3-0.2-0.4-0.3c-0.3-0.1-0.5-0.2-0.9-0.3c-0.3-0.1-0.8-0.2-1.2-0.3c-0.3-0.1-0.6-0.2-0.8-0.3
|
163 |
+
c-0.2-0.1-0.4-0.3-0.5-0.4c-0.1-0.2-0.2-0.3-0.3-0.5s-0.1-0.4-0.1-0.5c0-0.4,0.1-0.7,0.2-0.9c0.1-0.3,0.3-0.5,0.6-0.7
|
164 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.4,0,0.7,0,1.1,0.1s0.6,0.2,0.9,0.4c0.2,0.2,0.4,0.4,0.6,0.7s0.2,0.6,0.2,1h-1.2
|
165 |
+
c0-0.5-0.2-0.8-0.5-1c-0.3-0.2-0.6-0.3-1.1-0.3c-0.1,0-0.3,0-0.5,0s-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.2-0.3,0.3
|
166 |
+
c-0.1,0.1-0.1,0.3-0.1,0.4c0,0.3,0.1,0.5,0.2,0.6s0.4,0.3,0.6,0.3c0,0,0.1,0,0.3,0.1c0.2,0.1,0.4,0.1,0.6,0.2
|
167 |
+
c0.2,0.1,0.4,0.1,0.7,0.2s0.4,0.1,0.5,0.1c0.2,0.1,0.4,0.2,0.6,0.3s0.3,0.3,0.4,0.4c0.1,0.2,0.2,0.3,0.3,0.5s0.1,0.4,0.1,0.6
|
168 |
+
c0,0.4-0.1,0.7-0.2,1c-0.2,0.3-0.4,0.5-0.6,0.7c-0.3,0.2-0.6,0.3-0.9,0.4s-0.7,0.1-1,0.1c-0.4,0-0.8,0-1.2-0.2
|
169 |
+
c-0.4-0.1-0.7-0.3-0.9-0.5c-0.3-0.2-0.5-0.5-0.6-0.8c-0.2-0.3-0.2-0.7-0.2-1.1H1162.9z"/>
|
170 |
+
<path fill="#FFFFFF" d="M1170.5,392.9h1.3l2.8,7.1h-1.3l-0.7-1.9h-2.9l-0.7,1.9h-1.3L1170.5,392.9z M1170,397.2h2.2l-1.1-3.1h0
|
171 |
+
L1170,397.2z"/>
|
172 |
+
<path fill="#FFFFFF" d="M1181.5,400h-0.8l-0.2-0.8c-0.3,0.4-0.7,0.6-1,0.8c-0.3,0.1-0.7,0.2-1.2,0.2c-0.5,0-1-0.1-1.4-0.3
|
173 |
+
c-0.4-0.2-0.8-0.5-1.1-0.8c-0.3-0.3-0.5-0.7-0.7-1.2c-0.2-0.5-0.2-0.9-0.2-1.5c0-0.5,0.1-1,0.2-1.4c0.2-0.5,0.4-0.9,0.7-1.2
|
174 |
+
c0.3-0.3,0.7-0.6,1.1-0.8c0.4-0.2,0.9-0.3,1.4-0.3c0.4,0,0.8,0.1,1.1,0.2c0.3,0.1,0.7,0.3,0.9,0.5c0.3,0.2,0.5,0.5,0.7,0.8
|
175 |
+
c0.2,0.3,0.3,0.7,0.3,1.1h-1.2c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.2-0.2-0.3-0.4-0.4s-0.4-0.2-0.6-0.3c-0.2-0.1-0.4-0.1-0.7-0.1
|
176 |
+
c-0.4,0-0.7,0.1-1,0.2c-0.3,0.2-0.5,0.4-0.7,0.6c-0.2,0.3-0.3,0.5-0.4,0.9c-0.1,0.3-0.1,0.7-0.1,1s0,0.7,0.1,1
|
177 |
+
c0.1,0.3,0.2,0.6,0.4,0.9c0.2,0.3,0.4,0.5,0.7,0.6c0.3,0.2,0.6,0.2,1,0.2c0.3,0,0.6,0,0.8-0.1c0.2-0.1,0.5-0.2,0.6-0.4
|
178 |
+
s0.3-0.4,0.4-0.6c0.1-0.2,0.1-0.5,0.1-0.8h-1.9v-1h3V400z"/>
|
179 |
+
<path fill="#FFFFFF" d="M1182.8,392.9h5.1v1.1h-3.9v1.9h3.6v1h-3.6v2.1h4v1.1h-5.2V392.9z"/>
|
180 |
+
</g>
|
181 |
+
<g id="Group_37">
|
182 |
+
<path id="Rectangle_635" fill="#DDE1E3" d="M1084.5,301h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
183 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C1082,302.1,1083.1,301,1084.5,301z"/>
|
184 |
+
<path id="Rectangle_639" fill="#DDE1E3" d="M1158.5,301h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
185 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C1156,302.1,1157.1,301,1158.5,301z"/>
|
186 |
+
<g enable-background="new ">
|
187 |
+
<path fill="#565656" d="M1087.5,287.9v0.8h-3.7v2.3h3.3v0.8h-3.3v3.3h-1v-7.1H1087.5z"/>
|
188 |
+
<path fill="#565656" d="M1088.4,288.9v-1h0.9v1H1088.4z M1089.3,289.8v5.2h-0.9v-5.2H1089.3z"/>
|
189 |
+
<path fill="#565656" d="M1091.4,289.8v1.1h0c0.2-0.4,0.5-0.7,0.8-0.9c0.3-0.2,0.7-0.3,1.1-0.3v0.9c-0.3,0-0.6,0-0.9,0.1
|
190 |
+
c-0.2,0.1-0.4,0.2-0.6,0.4s-0.3,0.4-0.3,0.7c-0.1,0.3-0.1,0.6-0.1,0.9v2.3h-0.9v-5.2H1091.4z"/>
|
191 |
+
<path fill="#565656" d="M1094.6,293.8c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.3,0.1,0.4,0.2s0.3,0,0.5,0c0.1,0,0.3,0,0.4,0
|
192 |
+
c0.1,0,0.3-0.1,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.4-0.2-0.6-0.3
|
193 |
+
c-0.2-0.1-0.5-0.1-0.8-0.2s-0.6-0.1-0.8-0.2c-0.2-0.1-0.5-0.2-0.6-0.4s-0.2-0.4-0.2-0.8c0-0.3,0.1-0.5,0.2-0.7
|
194 |
+
c0.1-0.2,0.3-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3s0.5-0.1,0.7-0.1c0.3,0,0.6,0,0.8,0.1c0.2,0,0.5,0.1,0.7,0.3s0.3,0.3,0.5,0.5
|
195 |
+
s0.2,0.5,0.2,0.8h-0.9c0-0.2-0.1-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1s-0.3,0-0.4,0
|
196 |
+
c-0.1,0-0.3,0-0.4,0c-0.1,0-0.2,0.1-0.4,0.1c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0.1,0.3,0.2,0.4
|
197 |
+
c0.1,0.1,0.2,0.2,0.4,0.2c0.2,0.1,0.3,0.1,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.2,0.5,0.3
|
198 |
+
s0.3,0.2,0.4,0.4c0.1,0.2,0.1,0.4,0.1,0.6c0,0.3-0.1,0.6-0.2,0.8c-0.1,0.2-0.3,0.4-0.5,0.5c-0.2,0.1-0.4,0.2-0.7,0.3
|
199 |
+
c-0.3,0-0.5,0.1-0.8,0.1c-0.3,0-0.6,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.4-0.3-0.5-0.5c-0.1-0.2-0.2-0.5-0.2-0.8h0.9
|
200 |
+
C1094.5,293.6,1094.5,293.7,1094.6,293.8z"/>
|
201 |
+
<path fill="#565656" d="M1101.1,289.8v0.8h-1v3.2c0,0.1,0,0.2,0,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3,0
|
202 |
+
h0.4v0.8h-0.6c-0.2,0-0.4,0-0.6,0c-0.2,0-0.3-0.1-0.4-0.2s-0.2-0.2-0.2-0.3c0-0.1-0.1-0.3-0.1-0.6v-3.3h-0.9v-0.8h0.9v-1.5h0.8
|
203 |
+
v1.5H1101.1z"/>
|
204 |
+
<path fill="#565656" d="M1106,287.9l3.8,5.8h0v-5.8h0.9v7.1h-1l-3.7-5.7h0v5.7h-0.9v-7.1H1106z"/>
|
205 |
+
<path fill="#565656" d="M1116.7,295c-0.1,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.4-0.1-0.5-0.2s-0.2-0.3-0.2-0.6c-0.2,0.3-0.5,0.5-0.8,0.6
|
206 |
+
c-0.3,0.1-0.6,0.2-1,0.2c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.1-0.5-0.2s-0.3-0.3-0.4-0.4c-0.1-0.2-0.1-0.4-0.1-0.7
|
207 |
+
c0-0.3,0.1-0.5,0.1-0.7c0.1-0.2,0.2-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.6-0.2c0.2,0,0.5-0.1,0.7-0.1
|
208 |
+
c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5c-0.1-0.1-0.2-0.2-0.3-0.3
|
209 |
+
c-0.1-0.1-0.2-0.1-0.4-0.1c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.4-0.4,0.8h-0.9c0-0.3,0.1-0.6,0.2-0.8
|
210 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0s0.4,0.1,0.6,0.2
|
211 |
+
c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7v2.7c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V295z M1115.3,292.3
|
212 |
+
c-0.1,0.1-0.2,0.1-0.4,0.2c-0.2,0-0.4,0.1-0.5,0.1s-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3
|
213 |
+
c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0
|
214 |
+
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.2,0.5-0.3c0.1-0.1,0.2-0.2,0.3-0.4s0.1-0.3,0.1-0.4V292.3z"/>
|
215 |
+
<path fill="#565656" d="M1118.2,289.8v0.8h0c0.4-0.6,0.9-0.9,1.7-0.9c0.3,0,0.6,0.1,0.9,0.2c0.3,0.1,0.4,0.4,0.5,0.7
|
216 |
+
c0.2-0.3,0.4-0.5,0.7-0.6s0.6-0.2,0.9-0.2c0.3,0,0.5,0,0.7,0.1s0.4,0.1,0.5,0.3c0.1,0.1,0.3,0.3,0.4,0.5c0.1,0.2,0.1,0.4,0.1,0.7
|
217 |
+
v3.8h-0.9v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.2c-0.1-0.1-0.3-0.1-0.5-0.1
|
218 |
+
c-0.4,0-0.8,0.1-1,0.4c-0.2,0.2-0.4,0.6-0.4,1v3.2h-0.9v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.3-0.2
|
219 |
+
c-0.1-0.1-0.3-0.1-0.5-0.1c-0.2,0-0.5,0-0.6,0.2c-0.2,0.1-0.3,0.2-0.4,0.4c-0.1,0.1-0.2,0.3-0.2,0.4c0,0.1-0.1,0.3-0.1,0.4v3.2
|
220 |
+
h-0.9v-5.2H1118.2z"/>
|
221 |
+
<path fill="#565656" d="M1129.6,294.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
222 |
+
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
223 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1h-3.9
|
224 |
+
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
225 |
+
s0.4-0.4,0.5-0.8h0.8C1130.3,293.9,1130,294.4,1129.6,294.7z M1129.4,291.3c-0.1-0.2-0.2-0.3-0.3-0.5c-0.1-0.1-0.3-0.2-0.5-0.3
|
226 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h3
|
227 |
+
C1129.6,291.7,1129.5,291.5,1129.4,291.3z"/>
|
228 |
+
</g>
|
229 |
+
<g enable-background="new ">
|
230 |
+
<path fill="#565656" d="M1157.7,287.9v6.3h3.8v0.8h-4.7v-7.1H1157.7z"/>
|
231 |
+
<path fill="#565656" d="M1166.8,295c-0.1,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.4-0.1-0.5-0.2c-0.1-0.1-0.2-0.3-0.2-0.6
|
232 |
+
c-0.2,0.3-0.5,0.5-0.8,0.6c-0.3,0.1-0.6,0.2-1,0.2c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.1-0.5-0.2s-0.3-0.3-0.4-0.4
|
233 |
+
s-0.1-0.4-0.1-0.7c0-0.3,0.1-0.5,0.2-0.7s0.2-0.3,0.4-0.5c0.2-0.1,0.3-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.6-0.2
|
234 |
+
c0.2,0,0.5-0.1,0.7-0.1c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5s-0.2-0.2-0.3-0.3
|
235 |
+
c-0.1-0.1-0.2-0.1-0.4-0.1c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.4-0.4,0.8h-0.9c0-0.3,0.1-0.6,0.2-0.8
|
236 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0s0.4,0.1,0.6,0.2
|
237 |
+
c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7v2.7c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V295z M1165.4,292.3
|
238 |
+
c-0.1,0.1-0.2,0.1-0.4,0.2c-0.2,0-0.4,0.1-0.5,0.1c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3
|
239 |
+
c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0
|
240 |
+
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.2,0.5-0.3c0.1-0.1,0.2-0.2,0.3-0.4c0.1-0.1,0.1-0.3,0.1-0.4V292.3z"/>
|
241 |
+
<path fill="#565656" d="M1168.2,293.8c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.3,0.1,0.4,0.2s0.3,0,0.5,0c0.1,0,0.3,0,0.4,0
|
242 |
+
c0.1,0,0.3-0.1,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2s0.1-0.2,0.1-0.4c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.4-0.2-0.6-0.3
|
243 |
+
c-0.2-0.1-0.5-0.1-0.8-0.2c-0.3-0.1-0.6-0.1-0.8-0.2c-0.2-0.1-0.5-0.2-0.6-0.4s-0.2-0.4-0.2-0.8c0-0.3,0.1-0.5,0.2-0.7
|
244 |
+
c0.1-0.2,0.3-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3s0.5-0.1,0.7-0.1c0.3,0,0.6,0,0.8,0.1c0.2,0,0.5,0.1,0.7,0.3
|
245 |
+
c0.2,0.1,0.3,0.3,0.5,0.5s0.2,0.5,0.2,0.8h-0.9c0-0.2-0.1-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1
|
246 |
+
s-0.3,0-0.4,0c-0.1,0-0.3,0-0.4,0c-0.1,0-0.2,0.1-0.4,0.1c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.3
|
247 |
+
c0,0.1,0.1,0.3,0.2,0.4s0.2,0.2,0.4,0.2c0.2,0.1,0.3,0.1,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.4,0.1,0.6,0.2
|
248 |
+
c0.2,0.1,0.4,0.2,0.5,0.3s0.3,0.2,0.4,0.4c0.1,0.2,0.1,0.4,0.1,0.6c0,0.3-0.1,0.6-0.2,0.8c-0.1,0.2-0.3,0.4-0.5,0.5
|
249 |
+
c-0.2,0.1-0.4,0.2-0.7,0.3s-0.5,0.1-0.8,0.1c-0.3,0-0.6,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.4-0.3-0.5-0.5
|
250 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8h0.8C1168.1,293.6,1168.1,293.7,1168.2,293.8z"/>
|
251 |
+
<path fill="#565656" d="M1174.8,289.8v0.8h-1v3.2c0,0.1,0,0.2,0,0.2c0,0.1,0,0.1,0.1,0.1s0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3,0h0.4
|
252 |
+
v0.8h-0.6c-0.2,0-0.4,0-0.6,0s-0.3-0.1-0.4-0.2s-0.2-0.2-0.2-0.3c0-0.1-0.1-0.3-0.1-0.6v-3.3h-0.9v-0.8h0.9v-1.5h0.8v1.5H1174.8z
|
253 |
+
"/>
|
254 |
+
<path fill="#565656" d="M1179.6,287.9l3.8,5.8h0v-5.8h0.9v7.1h-1l-3.7-5.7h0v5.7h-0.9v-7.1H1179.6z"/>
|
255 |
+
<path fill="#565656" d="M1190.3,295c-0.1,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.4-0.1-0.5-0.2c-0.1-0.1-0.2-0.3-0.2-0.6
|
256 |
+
c-0.2,0.3-0.5,0.5-0.8,0.6c-0.3,0.1-0.6,0.2-1,0.2c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.1-0.5-0.2s-0.3-0.3-0.4-0.4
|
257 |
+
s-0.1-0.4-0.1-0.7c0-0.3,0.1-0.5,0.2-0.7s0.2-0.3,0.4-0.5c0.2-0.1,0.3-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.6-0.2
|
258 |
+
c0.2,0,0.5-0.1,0.7-0.1c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5s-0.2-0.2-0.3-0.3
|
259 |
+
c-0.1-0.1-0.2-0.1-0.4-0.1c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.4-0.4,0.8h-0.9c0-0.3,0.1-0.6,0.2-0.8
|
260 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0s0.4,0.1,0.6,0.2
|
261 |
+
c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7v2.7c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V295z M1188.9,292.3
|
262 |
+
c-0.1,0.1-0.2,0.1-0.4,0.2c-0.2,0-0.4,0.1-0.5,0.1c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3
|
263 |
+
c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0
|
264 |
+
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.2,0.5-0.3c0.1-0.1,0.2-0.2,0.3-0.4c0.1-0.1,0.1-0.3,0.1-0.4V292.3z"/>
|
265 |
+
<path fill="#565656" d="M1191.9,289.8v0.8h0c0.4-0.6,0.9-0.9,1.7-0.9c0.3,0,0.6,0.1,0.9,0.2c0.3,0.1,0.4,0.4,0.5,0.7
|
266 |
+
c0.2-0.3,0.4-0.5,0.7-0.6s0.6-0.2,0.9-0.2c0.3,0,0.5,0,0.7,0.1s0.4,0.1,0.5,0.3c0.1,0.1,0.3,0.3,0.4,0.5c0.1,0.2,0.1,0.4,0.1,0.7
|
267 |
+
v3.8h-0.9v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.3-0.2c-0.1-0.1-0.3-0.1-0.5-0.1
|
268 |
+
c-0.4,0-0.8,0.1-1,0.4c-0.2,0.2-0.4,0.6-0.4,1v3.2h-0.8v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.3-0.2
|
269 |
+
c-0.1-0.1-0.3-0.1-0.5-0.1c-0.2,0-0.5,0-0.6,0.2c-0.2,0.1-0.3,0.2-0.4,0.4c-0.1,0.1-0.2,0.3-0.2,0.4c0,0.1-0.1,0.3-0.1,0.4v3.2
|
270 |
+
h-0.8v-5.2H1191.9z"/>
|
271 |
+
<path fill="#565656" d="M1203.3,294.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
272 |
+
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
273 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1h-3.9
|
274 |
+
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.5,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
275 |
+
s0.4-0.4,0.5-0.8h0.8C1203.9,293.9,1203.7,294.4,1203.3,294.7z M1203.1,291.3c-0.1-0.2-0.2-0.3-0.3-0.5s-0.3-0.2-0.5-0.3
|
276 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h3
|
277 |
+
C1203.2,291.7,1203.2,291.5,1203.1,291.3z"/>
|
278 |
+
</g>
|
279 |
+
</g>
|
280 |
+
<path id="Rectangle_635-2" fill="#DDE1E3" d="M1084.5,335h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
281 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C1082,336.1,1083.1,335,1084.5,335z"/>
|
282 |
+
<path id="Rectangle_639-2" fill="#DDE1E3" d="M1158.5,335h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
283 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C1156,336.1,1157.1,335,1158.5,335z"/>
|
284 |
+
<g enable-background="new ">
|
285 |
+
<path fill="#565656" d="M1087.7,321.9v0.8h-4v2.3h3.7v0.8h-3.7v2.5h4v0.8h-5v-7.1H1087.7z"/>
|
286 |
+
<path fill="#565656" d="M1089.5,323.8v0.8h0c0.4-0.6,0.9-0.9,1.7-0.9c0.3,0,0.6,0.1,0.9,0.2c0.3,0.1,0.4,0.4,0.5,0.7
|
287 |
+
c0.2-0.3,0.4-0.5,0.7-0.6s0.6-0.2,0.9-0.2c0.3,0,0.5,0,0.7,0.1s0.4,0.1,0.5,0.3c0.1,0.1,0.3,0.3,0.4,0.5c0.1,0.2,0.1,0.4,0.1,0.7
|
288 |
+
v3.8h-0.9v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.2c-0.1-0.1-0.3-0.1-0.5-0.1c-0.4,0-0.8,0.1-1,0.4
|
289 |
+
c-0.2,0.2-0.4,0.6-0.4,1v3.2h-0.9v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.3-0.2
|
290 |
+
c-0.1-0.1-0.3-0.1-0.5-0.1c-0.2,0-0.5,0-0.6,0.2c-0.2,0.1-0.3,0.2-0.4,0.4c-0.1,0.1-0.2,0.3-0.2,0.4c0,0.1-0.1,0.3-0.1,0.4v3.2
|
291 |
+
h-0.9v-5.2H1089.5z"/>
|
292 |
+
<path fill="#565656" d="M1101.9,329c-0.1,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.4-0.1-0.5-0.2s-0.2-0.3-0.2-0.6c-0.2,0.3-0.5,0.5-0.8,0.6
|
293 |
+
c-0.3,0.1-0.6,0.2-1,0.2c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.1-0.5-0.2s-0.3-0.3-0.4-0.4c-0.1-0.2-0.1-0.4-0.1-0.7
|
294 |
+
c0-0.3,0.1-0.5,0.1-0.7c0.1-0.2,0.2-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.6-0.2c0.2,0,0.5-0.1,0.7-0.1
|
295 |
+
c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5c-0.1-0.1-0.2-0.2-0.3-0.3
|
296 |
+
c-0.1-0.1-0.2-0.1-0.4-0.1c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.4-0.4,0.8h-0.9c0-0.3,0.1-0.6,0.2-0.8
|
297 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0s0.4,0.1,0.6,0.2
|
298 |
+
c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7v2.7c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V329z M1100.5,326.3
|
299 |
+
c-0.1,0.1-0.2,0.1-0.4,0.2c-0.2,0-0.4,0.1-0.5,0.1s-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3
|
300 |
+
c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0
|
301 |
+
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.2,0.5-0.3c0.1-0.1,0.2-0.2,0.3-0.4s0.1-0.3,0.1-0.4V326.3z"/>
|
302 |
+
<path fill="#565656" d="M1102.7,322.9v-1h0.9v1H1102.7z M1103.5,323.8v5.2h-0.9v-5.2H1103.5z"/>
|
303 |
+
<path fill="#565656" d="M1105.8,321.9v7.1h-0.9v-7.1H1105.8z"/>
|
304 |
+
</g>
|
305 |
+
<g enable-background="new ">
|
306 |
+
<path fill="#565656" d="M1160.4,322.8c-0.3-0.2-0.7-0.3-1.2-0.3c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.2s-0.3,0.2-0.4,0.4
|
307 |
+
c-0.1,0.2-0.1,0.4-0.1,0.6c0,0.2,0.1,0.4,0.2,0.5c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.2,0.7,0.2s0.6,0.1,0.8,0.2
|
308 |
+
c0.3,0.1,0.6,0.1,0.8,0.2s0.5,0.2,0.7,0.4s0.4,0.3,0.5,0.6s0.2,0.5,0.2,0.9c0,0.4-0.1,0.7-0.3,1c-0.2,0.3-0.4,0.5-0.7,0.7
|
309 |
+
s-0.6,0.3-0.9,0.4s-0.7,0.1-1,0.1c-0.4,0-0.8,0-1.1-0.2c-0.4-0.1-0.7-0.3-0.9-0.5c-0.3-0.2-0.5-0.5-0.6-0.8
|
310 |
+
c-0.2-0.3-0.2-0.7-0.2-1.1h0.9c0,0.3,0.1,0.6,0.2,0.8c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.3c0.3,0.1,0.5,0.1,0.8,0.1
|
311 |
+
c0.2,0,0.4,0,0.6-0.1c0.2,0,0.4-0.1,0.6-0.2s0.3-0.2,0.4-0.4c0.1-0.2,0.2-0.4,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6
|
312 |
+
c-0.1-0.2-0.3-0.3-0.5-0.4s-0.5-0.2-0.7-0.2c-0.3-0.1-0.6-0.1-0.8-0.2s-0.6-0.1-0.8-0.2s-0.5-0.2-0.7-0.3s-0.4-0.3-0.5-0.5
|
313 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.7,0.2-0.9c0.1-0.3,0.3-0.5,0.6-0.6c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1
|
314 |
+
c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.4c0.2,0.2,0.4,0.4,0.6,0.7c0.1,0.3,0.2,0.6,0.2,1h-0.9
|
315 |
+
C1160.9,323.4,1160.7,323.1,1160.4,322.8z"/>
|
316 |
+
<path fill="#565656" d="M1166.6,329v-0.8h0c-0.2,0.3-0.4,0.6-0.7,0.7c-0.3,0.2-0.6,0.2-1,0.2c-0.3,0-0.6,0-0.9-0.1
|
317 |
+
c-0.2-0.1-0.4-0.2-0.5-0.4c-0.1-0.2-0.2-0.4-0.3-0.6c-0.1-0.2-0.1-0.5-0.1-0.8v-3.4h0.9v3.5c0,0.3,0.1,0.6,0.3,0.8
|
318 |
+
s0.4,0.3,0.8,0.3c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.3-0.2,0.5-0.3s0.2-0.3,0.3-0.5c0.1-0.2,0.1-0.4,0.1-0.6v-2.9h0.9v5.2H1166.6z"/>
|
319 |
+
<path fill="#565656" d="M1169.6,321.9v2.7h0c0.1-0.3,0.4-0.5,0.7-0.6c0.3-0.1,0.6-0.2,1-0.2c0.4,0,0.7,0.1,1,0.2
|
320 |
+
c0.3,0.1,0.5,0.3,0.7,0.6c0.2,0.2,0.3,0.5,0.4,0.9c0.1,0.3,0.1,0.7,0.1,1c0,0.4,0,0.7-0.1,1c-0.1,0.3-0.2,0.6-0.4,0.9
|
321 |
+
c-0.2,0.2-0.4,0.4-0.7,0.6c-0.3,0.1-0.6,0.2-1,0.2c-0.1,0-0.3,0-0.4,0c-0.2,0-0.3-0.1-0.5-0.1c-0.2-0.1-0.3-0.1-0.4-0.2
|
322 |
+
s-0.3-0.2-0.3-0.4h0v0.7h-0.9v-7.1H1169.6z M1172.6,325.7c-0.1-0.2-0.2-0.4-0.3-0.6c-0.1-0.2-0.3-0.3-0.5-0.4
|
323 |
+
c-0.2-0.1-0.4-0.2-0.7-0.2c-0.3,0-0.5,0.1-0.7,0.2s-0.4,0.3-0.5,0.4c-0.1,0.2-0.2,0.4-0.3,0.6s-0.1,0.5-0.1,0.7
|
324 |
+
c0,0.3,0,0.5,0.1,0.7c0.1,0.2,0.2,0.4,0.3,0.6c0.1,0.2,0.3,0.3,0.5,0.4s0.5,0.2,0.8,0.2s0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.5-0.5
|
325 |
+
s0.2-0.4,0.3-0.6c0.1-0.2,0.1-0.5,0.1-0.7C1172.7,326.1,1172.7,325.9,1172.6,325.7z"/>
|
326 |
+
<path fill="#565656" d="M1175.2,330.7c-0.2,0.2-0.5,0.3-0.9,0.3c-0.2,0-0.3,0-0.4,0v-0.7c0,0,0.1,0,0.1,0c0,0,0,0,0.1,0h0.2
|
327 |
+
c0.2,0,0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.3,0.1-0.6v-5.7h0.8v5.8C1175.5,330.1,1175.4,330.4,1175.2,330.7z M1174.7,322.9v-1h0.8v1
|
328 |
+
H1174.7z"/>
|
329 |
+
<path fill="#565656" d="M1180.5,328.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
330 |
+
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
331 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1s0.1,0.7,0.1,1h-3.9
|
332 |
+
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
333 |
+
s0.4-0.4,0.5-0.8h0.8C1181.1,327.9,1180.9,328.4,1180.5,328.7z M1180.3,325.3c-0.1-0.2-0.2-0.3-0.3-0.5c-0.1-0.1-0.3-0.2-0.5-0.3
|
334 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h3
|
335 |
+
C1180.4,325.7,1180.4,325.5,1180.3,325.3z"/>
|
336 |
+
<path fill="#565656" d="M1185.3,324.7c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.5
|
337 |
+
c-0.1,0.2-0.2,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8c0,0.2,0,0.5,0.1,0.7s0.1,0.4,0.3,0.6c0.1,0.2,0.3,0.3,0.5,0.4
|
338 |
+
s0.4,0.2,0.7,0.2c0.4,0,0.7-0.1,1-0.3s0.4-0.5,0.4-0.9h0.9c-0.1,0.6-0.3,1.1-0.7,1.5c-0.4,0.3-0.9,0.5-1.6,0.5
|
339 |
+
c-0.4,0-0.7-0.1-1-0.2c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.4-0.5-0.5-0.8s-0.2-0.7-0.2-1.1s0-0.7,0.1-1.1
|
340 |
+
c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6s0.7-0.2,1.1-0.2c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.7,0.3
|
341 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.2,0.2,0.5,0.2,0.8h-0.9C1185.6,325.2,1185.5,324.9,1185.3,324.7z"/>
|
342 |
+
<path fill="#565656" d="M1189.8,323.8v0.8h-1v3.2c0,0.1,0,0.2,0,0.2c0,0.1,0,0.1,0.1,0.1s0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3,0h0.4
|
343 |
+
v0.8h-0.7c-0.2,0-0.4,0-0.6,0s-0.3-0.1-0.4-0.2c-0.1-0.1-0.2-0.2-0.2-0.3s-0.1-0.3-0.1-0.6v-3.3h-0.9v-0.8h0.9v-1.5h0.8v1.5
|
344 |
+
H1189.8z"/>
|
345 |
+
</g>
|
346 |
+
</g>
|
347 |
+
</svg>
|
templates/3/content.json
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
{"version":"0.4","title":"Booking Form","type":"page","content":[{"id":"434f","settings":{"gap":"no","box_shadow_box_shadow":{"horizontal":30,"vertical":30,"blur":80,"spread":0,"color":"rgba(0,0,0,0.1)"}},"elements":[{"id":"39ae","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"5dbd","settings":{"gap":"extended","structure":"20"},"elements":[{"id":"4726","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"1a81","settings":{"mf_input_label":"First Name","mf_input_name":"mf-first-name","mf_input_placeholder":"Anderson","mf_input_help_text":"Enter your first name here","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_min_length":1,"mf_input_label_color":"#101010","mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_required":"yes","mf_input_required_indicator_color":"#101010"},"elements":[],"isInner":false,"widgetType":"mf-text","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"2114","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"f67","settings":{"mf_input_label":"Last Name","mf_input_name":"mf-last-name","mf_input_placeholder":"Mikoo","mf_input_help_text":"Enter your last name here","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_required":"yes","mf_input_required_indicator_color":"#101010"},"elements":[],"isInner":false,"widgetType":"mf-text","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"14fe","settings":{"gap":"extended","structure":"20"},"elements":[{"id":"3b03","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"2fb2","settings":{"mf_input_label":"Mobile Number","mf_input_name":"mf-tel","mf_input_placeholder":"","mf_input_help_text":"Example: +1 212-695-1962","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-telephone","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"18b9","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"3a80","settings":{"mf_input_label":"Email Address","mf_input_name":"mf-email","mf_input_placeholder":"","mf_input_help_text":"Example: user@website.com","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-email","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"77b","settings":{"gap":"extended","structure":"20"},"elements":[{"id":"7eac","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"45f","settings":{"mf_input_label":"Check in Date","mf_input_name":"mf-checkin-date","mf_input_required":"yes","mf_input_min_date":"yes","mf_input_default_date":"","mf_input_date_format_all":"d-m-Y","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_placeholder":"DD - MM - YYYY"},"elements":[],"isInner":false,"widgetType":"mf-date","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"30a","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"775","settings":{"mf_input_label":"Check out Date","mf_input_name":"mf-checkout-date","mf_input_required":"yes","mf_input_date_format_all":"d-m-Y","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_placeholder":"DD - MM - YYYY"},"elements":[],"isInner":false,"widgetType":"mf-date","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"7744","settings":{"gap":"extended","structure":"20"},"elements":[{"id":"25f1","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"5998","settings":{"mf_input_label":"Number of Adults","mf_input_name":"mf-adults","mf_input_placeholder":"","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-number","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"2057","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"45d6","settings":{"mf_input_label":"Number of Children","mf_input_name":"mf-childs","mf_input_placeholder":"","mf_input_required":"","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-number","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"2229","settings":{"gap":"extended"},"elements":[{"id":"43b0","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0,"margin":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"302d","settings":{"mf_input_label":"Write your comment here","mf_input_name":"mf-comment","mf_input_placeholder":"","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_textarea_field_height":{"unit":"px","size":140,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"mf-textarea","elType":"widget"},{"id":"6962","settings":{"mf_btn_text":"Submit","mf_btn_align":"left","mf_btn_text_padding":{"unit":"px","top":"15","right":"50","bottom":"15","left":"50","isLinked":false},"mf_btn_typography_typography":"custom","mf_btn_typography_font_family":"Helvetica","mf_btn_typography_font_size":{"unit":"px","size":16,"sizes":[]},"mf_btn_typography_font_weight":"500","mf_btn_typography_line_height":{"unit":"px","size":18,"sizes":[]},"mf_btn_bg_color_background":"classic","mf_btn_bg_color_color":"#4285f4","mf_btn_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"mf_btn_box_shadow_group_box_shadow_type":"yes","mf_btn_box_shadow_group_box_shadow":{"horizontal":0,"vertical":7,"blur":15,"spread":0,"color":"rgba(66,133,244,0.3)"},"_margin":{"unit":"px","top":"40","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-button","elType":"widget"},{"id":"6af3","settings":{"_padding":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false},"_margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-response","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}]}
|
templates/3/preview-thumb.svg
ADDED
@@ -0,0 +1,320 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 164 182" enable-background="new 0 0 164 182" xml:space="preserve">
|
5 |
+
<g>
|
6 |
+
<path id="Rectangle_594" fill="#FFFFFF" d="M5,0h154c2.8,0,5,2.2,5,5v172c0,2.8-2.2,5-5,5H5c-2.8,0-5-2.2-5-5V5C0,2.2,2.2,0,5,0z"
|
7 |
+
/>
|
8 |
+
<path id="Rectangle_595" fill="#DDE1E3" d="M17.5,31h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
9 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C15,32.1,16.1,31,17.5,31z"/>
|
10 |
+
<path id="Rectangle_599" fill="#DDE1E3" d="M17.5,65h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
11 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C15,66.1,16.1,65,17.5,65z"/>
|
12 |
+
<path id="Rectangle_601" fill="#DDE1E3" d="M17.5,99h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
13 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C15,100.1,16.1,99,17.5,99z"/>
|
14 |
+
<path id="Rectangle_603" fill="#DDE1E3" d="M17.5,133h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
15 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C15,134.1,16.1,133,17.5,133z"/>
|
16 |
+
<path id="Rectangle_598" fill="#DDE1E3" d="M91.5,31h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
17 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C89,32.1,90.1,31,91.5,31z"/>
|
18 |
+
<path id="Rectangle_600" fill="#DDE1E3" d="M91.5,65h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
19 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C89,66.1,90.1,65,91.5,65z"/>
|
20 |
+
<path id="Rectangle_602" fill="#DDE1E3" d="M91.5,99h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
21 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C89,100.1,90.1,99,91.5,99z"/>
|
22 |
+
<path id="Rectangle_604" fill="#DDE1E3" d="M91.5,133h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
23 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C89,134.1,90.1,133,91.5,133z"/>
|
24 |
+
<g enable-background="new ">
|
25 |
+
<path fill="#565656" d="M20.5,17.9v0.8h-3.7v2.3H20v0.8h-3.3V25h-1v-7.1H20.5z"/>
|
26 |
+
<path fill="#565656" d="M21.4,18.9v-1h0.9v1H21.4z M22.3,19.8V25h-0.9v-5.2H22.3z"/>
|
27 |
+
<path fill="#565656" d="M24.4,19.8v1.1h0c0.2-0.4,0.5-0.7,0.8-0.9c0.3-0.2,0.7-0.3,1.1-0.3v0.9c-0.3,0-0.6,0-0.9,0.1
|
28 |
+
c-0.2,0.1-0.4,0.2-0.6,0.4s-0.3,0.4-0.3,0.7c-0.1,0.3-0.1,0.6-0.1,0.9V25h-0.9v-5.2H24.4z"/>
|
29 |
+
<path fill="#565656" d="M27.6,23.8c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.3,0.1,0.4,0.2s0.3,0,0.5,0c0.1,0,0.3,0,0.4,0
|
30 |
+
c0.1,0,0.3-0.1,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.4-0.2-0.6-0.3
|
31 |
+
c-0.2-0.1-0.5-0.1-0.8-0.2s-0.6-0.1-0.8-0.2c-0.2-0.1-0.5-0.2-0.6-0.4s-0.2-0.4-0.2-0.8c0-0.3,0.1-0.5,0.2-0.7
|
32 |
+
c0.1-0.2,0.3-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3s0.5-0.1,0.7-0.1c0.3,0,0.6,0,0.8,0.1c0.2,0,0.5,0.1,0.7,0.3s0.3,0.3,0.5,0.5
|
33 |
+
s0.2,0.5,0.2,0.8h-0.9c0-0.2-0.1-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1s-0.3,0-0.4,0c-0.1,0-0.3,0-0.4,0
|
34 |
+
c-0.1,0-0.2,0.1-0.4,0.1c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0.1,0.3,0.2,0.4c0.1,0.1,0.2,0.2,0.4,0.2
|
35 |
+
c0.2,0.1,0.3,0.1,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.2,0.5,0.3s0.3,0.2,0.4,0.4
|
36 |
+
c0.1,0.2,0.1,0.4,0.1,0.6c0,0.3-0.1,0.6-0.2,0.8c-0.1,0.2-0.3,0.4-0.5,0.5c-0.2,0.1-0.4,0.2-0.7,0.3c-0.3,0-0.5,0.1-0.8,0.1
|
37 |
+
c-0.3,0-0.6,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.4-0.3-0.5-0.5c-0.1-0.2-0.2-0.5-0.2-0.8h0.9
|
38 |
+
C27.5,23.6,27.5,23.7,27.6,23.8z"/>
|
39 |
+
<path fill="#565656" d="M34.1,19.8v0.8h-1v3.2c0,0.1,0,0.2,0,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3,0h0.4
|
40 |
+
V25h-0.6c-0.2,0-0.4,0-0.6,0c-0.2,0-0.3-0.1-0.4-0.2s-0.2-0.2-0.2-0.3c0-0.1-0.1-0.3-0.1-0.6v-3.3h-0.9v-0.8h0.9v-1.5h0.8v1.5
|
41 |
+
H34.1z"/>
|
42 |
+
<path fill="#565656" d="M39,17.9l3.8,5.8h0v-5.8h0.9V25h-1l-3.7-5.7h0V25H38v-7.1H39z"/>
|
43 |
+
<path fill="#565656" d="M49.7,25c-0.1,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.4-0.1-0.5-0.2s-0.2-0.3-0.2-0.6c-0.2,0.3-0.5,0.5-0.8,0.6
|
44 |
+
c-0.3,0.1-0.6,0.2-1,0.2c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.1-0.5-0.2s-0.3-0.3-0.4-0.4c-0.1-0.2-0.1-0.4-0.1-0.7
|
45 |
+
c0-0.3,0.1-0.5,0.1-0.7c0.1-0.2,0.2-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.6-0.2c0.2,0,0.5-0.1,0.7-0.1
|
46 |
+
c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5c-0.1-0.1-0.2-0.2-0.3-0.3
|
47 |
+
c-0.1-0.1-0.2-0.1-0.4-0.1c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.4-0.4,0.8H45c0-0.3,0.1-0.6,0.2-0.8
|
48 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0s0.4,0.1,0.6,0.2
|
49 |
+
c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7v2.7c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V25z M48.3,22.3
|
50 |
+
c-0.1,0.1-0.2,0.1-0.4,0.2c-0.2,0-0.4,0.1-0.5,0.1s-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3
|
51 |
+
c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0
|
52 |
+
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.2,0.5-0.3c0.1-0.1,0.2-0.2,0.3-0.4s0.1-0.3,0.1-0.4V22.3z"/>
|
53 |
+
<path fill="#565656" d="M51.2,19.8v0.8h0c0.4-0.6,0.9-0.9,1.7-0.9c0.3,0,0.6,0.1,0.9,0.2c0.3,0.1,0.4,0.4,0.5,0.7
|
54 |
+
c0.2-0.3,0.4-0.5,0.7-0.6s0.6-0.2,0.9-0.2c0.3,0,0.5,0,0.7,0.1s0.4,0.1,0.5,0.3c0.1,0.1,0.3,0.3,0.4,0.5c0.1,0.2,0.1,0.4,0.1,0.7
|
55 |
+
V25h-0.9v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.2c-0.1-0.1-0.3-0.1-0.5-0.1c-0.4,0-0.8,0.1-1,0.4
|
56 |
+
c-0.2,0.2-0.4,0.6-0.4,1V25h-0.9v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.3-0.2
|
57 |
+
c-0.1-0.1-0.3-0.1-0.5-0.1c-0.2,0-0.5,0-0.6,0.2c-0.2,0.1-0.3,0.2-0.4,0.4c-0.1,0.1-0.2,0.3-0.2,0.4c0,0.1-0.1,0.3-0.1,0.4V25
|
58 |
+
h-0.9v-5.2H51.2z"/>
|
59 |
+
<path fill="#565656" d="M62.6,24.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
60 |
+
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
61 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1h-3.9
|
62 |
+
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
63 |
+
s0.4-0.4,0.5-0.8h0.8C63.3,23.9,63,24.4,62.6,24.7z M62.4,21.3c-0.1-0.2-0.2-0.3-0.3-0.5c-0.1-0.1-0.3-0.2-0.5-0.3
|
64 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h3
|
65 |
+
C62.6,21.7,62.5,21.5,62.4,21.3z"/>
|
66 |
+
</g>
|
67 |
+
<g enable-background="new ">
|
68 |
+
<path fill="#565656" d="M17.1,51.9l2.2,6l2.3-6h1.3V59H22v-5.9h0L19.8,59H19l-2.2-5.9h0V59h-0.9v-7.1H17.1z"/>
|
69 |
+
<path fill="#565656" d="M24.2,55.4c0.1-0.3,0.3-0.6,0.5-0.9s0.5-0.4,0.8-0.6s0.7-0.2,1.1-0.2c0.4,0,0.8,0.1,1.1,0.2
|
70 |
+
s0.6,0.3,0.8,0.6c0.2,0.2,0.4,0.5,0.5,0.9c0.1,0.3,0.2,0.7,0.2,1.1s-0.1,0.7-0.2,1.1c-0.1,0.3-0.3,0.6-0.5,0.9
|
71 |
+
c-0.2,0.2-0.5,0.4-0.8,0.6s-0.7,0.2-1.1,0.2c-0.4,0-0.8-0.1-1.1-0.2s-0.6-0.3-0.8-0.6s-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1
|
72 |
+
S24.1,55.7,24.2,55.4z M25.1,57.3c0.1,0.2,0.2,0.4,0.3,0.6s0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.6,0.1c0.2,0,0.4,0,0.6-0.1
|
73 |
+
c0.2-0.1,0.4-0.2,0.5-0.4c0.1-0.2,0.3-0.4,0.3-0.6s0.1-0.5,0.1-0.8s0-0.6-0.1-0.8s-0.2-0.4-0.3-0.6c-0.1-0.2-0.3-0.3-0.5-0.4
|
74 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.1,0.2-0.3,0.4-0.3,0.6C25,55.8,25,56.1,25,56.4
|
75 |
+
S25,57,25.1,57.3z"/>
|
76 |
+
<path fill="#565656" d="M31,51.9v2.7h0c0.1-0.3,0.4-0.5,0.7-0.6c0.3-0.1,0.6-0.2,1-0.2c0.4,0,0.7,0.1,1,0.2
|
77 |
+
c0.3,0.1,0.5,0.3,0.7,0.6c0.2,0.2,0.3,0.5,0.4,0.9c0.1,0.3,0.1,0.7,0.1,1c0,0.4,0,0.7-0.1,1c-0.1,0.3-0.2,0.6-0.4,0.9
|
78 |
+
s-0.4,0.4-0.7,0.6c-0.3,0.1-0.6,0.2-1,0.2c-0.1,0-0.3,0-0.4,0c-0.2,0-0.3-0.1-0.5-0.1c-0.2-0.1-0.3-0.1-0.4-0.2s-0.3-0.2-0.3-0.4
|
79 |
+
h0V59h-0.9v-7.1H31z M34,55.7c-0.1-0.2-0.2-0.4-0.3-0.6c-0.1-0.2-0.3-0.3-0.5-0.4c-0.2-0.1-0.4-0.2-0.7-0.2
|
80 |
+
c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.3-0.5,0.4c-0.1,0.2-0.2,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.7c0,0.3,0,0.5,0.1,0.7
|
81 |
+
c0.1,0.2,0.2,0.4,0.3,0.6c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.7-0.2s0.4-0.3,0.5-0.5
|
82 |
+
s0.2-0.4,0.3-0.6c0.1-0.2,0.1-0.5,0.1-0.7C34.1,56.1,34.1,55.9,34,55.7z"/>
|
83 |
+
<path fill="#565656" d="M36.1,52.9v-1h0.9v1H36.1z M36.9,53.8V59h-0.9v-5.2H36.9z"/>
|
84 |
+
<path fill="#565656" d="M39.1,51.9V59h-0.9v-7.1H39.1z"/>
|
85 |
+
<path fill="#565656" d="M44.1,58.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
86 |
+
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
87 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1h-3.9
|
88 |
+
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
89 |
+
s0.4-0.4,0.5-0.8h0.8C44.8,57.9,44.5,58.4,44.1,58.7z M43.9,55.3c-0.1-0.2-0.2-0.3-0.3-0.5c-0.1-0.1-0.3-0.2-0.5-0.3
|
90 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h3
|
91 |
+
C44,55.7,44,55.5,43.9,55.3z"/>
|
92 |
+
</g>
|
93 |
+
<g enable-background="new ">
|
94 |
+
<path fill="#565656" d="M20.1,86.9c-0.4-0.3-0.8-0.4-1.3-0.4c-0.4,0-0.8,0.1-1.1,0.2c-0.3,0.2-0.6,0.4-0.8,0.6
|
95 |
+
c-0.2,0.3-0.3,0.6-0.4,0.9s-0.1,0.7-0.1,1.1c0,0.4,0,0.8,0.1,1.2s0.2,0.7,0.4,1c0.2,0.3,0.4,0.5,0.8,0.6s0.7,0.2,1.1,0.2
|
96 |
+
c0.3,0,0.6-0.1,0.8-0.2c0.2-0.1,0.5-0.2,0.6-0.4s0.3-0.4,0.4-0.7c0.1-0.3,0.2-0.5,0.2-0.8h0.9c-0.1,0.9-0.4,1.6-0.9,2.1
|
97 |
+
c-0.5,0.5-1.2,0.8-2.2,0.8c-0.6,0-1-0.1-1.5-0.3c-0.4-0.2-0.8-0.5-1-0.8c-0.3-0.3-0.5-0.7-0.6-1.2s-0.2-0.9-0.2-1.5
|
98 |
+
c0-0.5,0.1-1,0.2-1.5c0.1-0.5,0.4-0.9,0.6-1.2s0.6-0.6,1.1-0.8c0.4-0.2,0.9-0.3,1.5-0.3c0.4,0,0.7,0,1.1,0.1
|
99 |
+
c0.3,0.1,0.6,0.2,0.9,0.4c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.3,1h-1C20.7,87.5,20.5,87.1,20.1,86.9z"/>
|
100 |
+
<path fill="#565656" d="M23.7,85.9v2.7h0c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.3-0.2,0.4-0.3c0.2-0.1,0.3-0.1,0.5-0.2
|
101 |
+
c0.2,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9,0.1c0.2,0.1,0.4,0.2,0.5,0.4c0.1,0.2,0.2,0.4,0.3,0.6c0.1,0.2,0.1,0.5,0.1,0.8V93h-0.9v-3.5
|
102 |
+
c0-0.3-0.1-0.6-0.3-0.8s-0.4-0.3-0.8-0.3c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5
|
103 |
+
c-0.1,0.2-0.1,0.4-0.1,0.6V93h-0.9v-7.1H23.7z"/>
|
104 |
+
<path fill="#565656" d="M32.1,92.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
105 |
+
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
106 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1H29
|
107 |
+
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
108 |
+
s0.4-0.4,0.5-0.8h0.8C32.7,91.9,32.5,92.4,32.1,92.7z M31.9,89.3c-0.1-0.2-0.2-0.3-0.3-0.5c-0.1-0.1-0.3-0.2-0.5-0.3
|
109 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h3
|
110 |
+
C32,89.7,32,89.5,31.9,89.3z"/>
|
111 |
+
<path fill="#565656" d="M36.9,88.7c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.5s-0.2,0.4-0.3,0.6
|
112 |
+
c-0.1,0.2-0.1,0.5-0.1,0.8c0,0.2,0,0.5,0.1,0.7c0.1,0.2,0.1,0.4,0.3,0.6c0.1,0.2,0.3,0.3,0.5,0.4s0.4,0.2,0.7,0.2
|
113 |
+
c0.4,0,0.7-0.1,1-0.3s0.4-0.5,0.4-0.9h0.9c-0.1,0.6-0.3,1.1-0.7,1.5c-0.4,0.3-0.9,0.5-1.6,0.5c-0.4,0-0.7-0.1-1-0.2
|
114 |
+
s-0.6-0.3-0.8-0.5c-0.2-0.2-0.4-0.5-0.5-0.8c-0.1-0.3-0.2-0.7-0.2-1.1s0.1-0.7,0.1-1.1c0.1-0.3,0.3-0.6,0.5-0.9
|
115 |
+
c0.2-0.2,0.5-0.4,0.8-0.6s0.7-0.2,1.1-0.2c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.7,0.3c0.2,0.1,0.4,0.3,0.5,0.6
|
116 |
+
c0.1,0.2,0.2,0.5,0.2,0.8h-0.9C37.2,89.2,37.1,88.9,36.9,88.7z"/>
|
117 |
+
<path fill="#565656" d="M40.1,85.9v4.2l2.4-2.3h1.1l-2,1.9l2.2,3.3h-1.1l-1.8-2.7L40.1,91v2h-0.9v-7.1H40.1z"/>
|
118 |
+
<path fill="#565656" d="M47.2,86.9v-1H48v1H47.2z M48,87.8V93h-0.9v-5.2H48z"/>
|
119 |
+
<path fill="#565656" d="M50.1,87.8v0.8h0c0.4-0.6,0.9-0.9,1.7-0.9c0.3,0,0.6,0,0.9,0.1c0.2,0.1,0.4,0.2,0.5,0.4
|
120 |
+
c0.1,0.2,0.2,0.4,0.3,0.6c0.1,0.2,0.1,0.5,0.1,0.8V93h-0.9v-3.5c0-0.3-0.1-0.6-0.3-0.8s-0.4-0.3-0.8-0.3c-0.3,0-0.5,0-0.7,0.1
|
121 |
+
c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6V93h-0.9v-5.2H50.1z"/>
|
122 |
+
</g>
|
123 |
+
<g enable-background="new ">
|
124 |
+
<path fill="#565656" d="M18.8,119.9l2.8,7.1h-1.1l-0.8-2.2h-3l-0.8,2.2h-1l2.8-7.1H18.8z M19.4,124l-1.2-3.3h0L17,124H19.4z"/>
|
125 |
+
<path fill="#565656" d="M25.9,127v-0.7h0c-0.1,0.3-0.4,0.5-0.7,0.6s-0.6,0.2-1,0.2c-0.4,0-0.7-0.1-1-0.2c-0.3-0.1-0.5-0.3-0.7-0.6
|
126 |
+
c-0.2-0.2-0.3-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1c0-0.4,0-0.7,0.1-1c0.1-0.3,0.2-0.6,0.4-0.9s0.4-0.4,0.7-0.6
|
127 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.1,0,0.3,0,0.4,0s0.3,0.1,0.5,0.1s0.3,0.1,0.4,0.2s0.3,0.2,0.3,0.4h0v-2.7h0.8v7.1H25.9z M22.8,125.2
|
128 |
+
c0.1,0.2,0.2,0.4,0.3,0.6c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.2,0.7,0.2c0.3,0,0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.5-0.4
|
129 |
+
c0.1-0.2,0.2-0.4,0.3-0.6s0.1-0.5,0.1-0.7c0-0.3,0-0.5-0.1-0.7c-0.1-0.2-0.2-0.4-0.3-0.6c-0.1-0.2-0.3-0.3-0.5-0.4
|
130 |
+
s-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.3-0.5,0.5s-0.2,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.7
|
131 |
+
C22.7,124.7,22.8,124.9,22.8,125.2z"/>
|
132 |
+
<path fill="#565656" d="M31.5,127v-0.8h0c-0.2,0.3-0.4,0.6-0.7,0.7c-0.3,0.2-0.6,0.2-1,0.2c-0.3,0-0.6,0-0.9-0.1
|
133 |
+
c-0.2-0.1-0.4-0.2-0.5-0.4c-0.1-0.2-0.2-0.4-0.3-0.6c-0.1-0.2-0.1-0.5-0.1-0.8v-3.4h0.9v3.5c0,0.3,0.1,0.6,0.3,0.8
|
134 |
+
s0.4,0.3,0.8,0.3c0.3,0,0.5,0,0.7-0.1s0.3-0.2,0.5-0.3s0.2-0.3,0.3-0.5c0.1-0.2,0.1-0.4,0.1-0.6v-2.9h0.9v5.2H31.5z"/>
|
135 |
+
<path fill="#565656" d="M34.5,119.9v7.1h-0.9v-7.1H34.5z"/>
|
136 |
+
<path fill="#565656" d="M38,121.8v0.8h-1v3.2c0,0.1,0,0.2,0,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3,0H38
|
137 |
+
v0.8h-0.6c-0.2,0-0.4,0-0.6,0c-0.2,0-0.3-0.1-0.4-0.2s-0.2-0.2-0.2-0.3c0-0.1-0.1-0.3-0.1-0.6v-3.3h-0.9v-0.8h0.9v-1.5H37v1.5H38z
|
138 |
+
"/>
|
139 |
+
<path fill="#565656" d="M39.6,125.8c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.3,0.1,0.4,0.2s0.3,0,0.5,0c0.1,0,0.3,0,0.4,0
|
140 |
+
c0.1,0,0.3-0.1,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.4-0.2-0.6-0.3
|
141 |
+
c-0.2-0.1-0.5-0.1-0.8-0.2s-0.6-0.1-0.8-0.2c-0.2-0.1-0.5-0.2-0.6-0.4s-0.2-0.4-0.2-0.8c0-0.3,0.1-0.5,0.2-0.7
|
142 |
+
c0.1-0.2,0.3-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3s0.5-0.1,0.7-0.1c0.3,0,0.6,0,0.8,0.1c0.2,0,0.5,0.1,0.7,0.3s0.3,0.3,0.5,0.5
|
143 |
+
s0.2,0.5,0.2,0.8H42c0-0.2-0.1-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1s-0.3,0-0.4,0c-0.1,0-0.3,0-0.4,0
|
144 |
+
c-0.1,0-0.2,0.1-0.4,0.1c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0.1,0.3,0.2,0.4c0.1,0.1,0.2,0.2,0.4,0.2
|
145 |
+
c0.2,0.1,0.3,0.1,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.2,0.5,0.3s0.3,0.2,0.4,0.4
|
146 |
+
c0.1,0.2,0.1,0.4,0.1,0.6c0,0.3-0.1,0.6-0.2,0.8c-0.1,0.2-0.3,0.4-0.5,0.5c-0.2,0.1-0.4,0.2-0.7,0.3c-0.3,0-0.5,0.1-0.8,0.1
|
147 |
+
c-0.3,0-0.6,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.4-0.3-0.5-0.5c-0.1-0.2-0.2-0.5-0.2-0.8h0.9
|
148 |
+
C39.5,125.6,39.5,125.7,39.6,125.8z"/>
|
149 |
+
</g>
|
150 |
+
<path id="Rectangle_593" fill="#00C9A7" d="M52,147h60c5.5,0,10,4.5,10,10l0,0c0,5.5-4.5,10-10,10H52c-5.5,0-10-4.5-10-10l0,0
|
151 |
+
C42,151.5,46.5,147,52,147z"/>
|
152 |
+
<g enable-background="new ">
|
153 |
+
<path fill="#FFFFFF" d="M64.6,158.6c0,0.3,0,0.5,0.1,0.7c0.1,0.2,0.2,0.4,0.4,0.5s0.4,0.2,0.6,0.3c0.2,0.1,0.5,0.1,0.7,0.1
|
154 |
+
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.3s0.1-0.3,0.1-0.4c0-0.3-0.1-0.5-0.2-0.6
|
155 |
+
c-0.1-0.1-0.3-0.2-0.4-0.3c-0.3-0.1-0.5-0.2-0.9-0.3c-0.3-0.1-0.8-0.2-1.2-0.3c-0.3-0.1-0.6-0.2-0.8-0.3c-0.2-0.1-0.4-0.3-0.5-0.4
|
156 |
+
c-0.1-0.2-0.2-0.3-0.3-0.5c0-0.2-0.1-0.4-0.1-0.5c0-0.4,0.1-0.7,0.2-0.9c0.1-0.3,0.3-0.5,0.6-0.7c0.2-0.2,0.5-0.3,0.8-0.4
|
157 |
+
c0.3-0.1,0.6-0.1,1-0.1c0.4,0,0.7,0,1.1,0.1s0.6,0.2,0.9,0.4c0.2,0.2,0.4,0.4,0.6,0.7s0.2,0.6,0.2,1h-1.2c0-0.5-0.2-0.8-0.5-1
|
158 |
+
c-0.3-0.2-0.6-0.3-1.1-0.3c-0.1,0-0.3,0-0.5,0s-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.2-0.3,0.3c-0.1,0.1-0.1,0.3-0.1,0.4
|
159 |
+
c0,0.3,0.1,0.5,0.2,0.6s0.4,0.3,0.6,0.3c0,0,0.1,0,0.3,0.1c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.1,0.7,0.2s0.4,0.1,0.5,0.1
|
160 |
+
c0.2,0.1,0.4,0.2,0.6,0.3s0.3,0.3,0.4,0.4c0.1,0.2,0.2,0.3,0.3,0.5s0.1,0.4,0.1,0.6c0,0.4-0.1,0.7-0.2,1c-0.2,0.3-0.4,0.5-0.6,0.7
|
161 |
+
c-0.3,0.2-0.6,0.3-0.9,0.4c-0.3,0.1-0.7,0.1-1,0.1c-0.4,0-0.8,0-1.1-0.2c-0.4-0.1-0.7-0.3-0.9-0.5c-0.3-0.2-0.5-0.5-0.6-0.8
|
162 |
+
c-0.2-0.3-0.2-0.7-0.2-1.1H64.6z"/>
|
163 |
+
<path fill="#FFFFFF" d="M70.2,153.9h1.2v4.2c0,0.2,0,0.5,0,0.7c0,0.2,0.1,0.5,0.2,0.7s0.3,0.4,0.5,0.5c0.2,0.1,0.5,0.2,0.9,0.2
|
164 |
+
s0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.5-0.5c0.1-0.2,0.2-0.4,0.2-0.7c0-0.2,0-0.5,0-0.7v-4.2H76v4.6c0,0.5-0.1,0.9-0.2,1.2
|
165 |
+
s-0.3,0.6-0.6,0.9c-0.3,0.2-0.6,0.4-0.9,0.5s-0.8,0.2-1.2,0.2s-0.8-0.1-1.2-0.2c-0.4-0.1-0.7-0.3-0.9-0.5
|
166 |
+
c-0.3-0.2-0.5-0.5-0.6-0.9c-0.1-0.3-0.2-0.7-0.2-1.2V153.9z"/>
|
167 |
+
<path fill="#FFFFFF" d="M77.5,153.9h3.5c0.6,0,1.2,0.1,1.5,0.4c0.4,0.3,0.6,0.7,0.6,1.3c0,0.4-0.1,0.7-0.3,0.9
|
168 |
+
c-0.2,0.3-0.4,0.5-0.8,0.6v0c0.4,0.1,0.8,0.3,1,0.6s0.3,0.7,0.3,1.2c0,0.3,0,0.5-0.1,0.8s-0.3,0.5-0.5,0.6
|
169 |
+
c-0.2,0.2-0.5,0.3-0.8,0.4c-0.3,0.1-0.7,0.2-1.2,0.2h-3.3V153.9z M78.7,156.8h2c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.4,0.3-0.7
|
170 |
+
c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.1-0.4-0.2-0.8-0.2h-2V156.8z M78.7,160h2.2c0.4,0,0.7-0.1,0.9-0.3c0.2-0.2,0.3-0.5,0.3-0.8
|
171 |
+
c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.5-0.3-0.9-0.3h-2.2V160z"/>
|
172 |
+
<path fill="#FFFFFF" d="M84.5,153.9h1.8l2,5.6h0l1.9-5.6h1.7v7.1h-1.2v-5.5h0l-2,5.5h-1l-2-5.5h0v5.5h-1.2V153.9z"/>
|
173 |
+
<path fill="#FFFFFF" d="M93.4,153.9h1.2v7.1h-1.2V153.9z"/>
|
174 |
+
<path fill="#FFFFFF" d="M95.5,153.9h5.8v1.1H99v6.1h-1.2v-6.1h-2.3V153.9z"/>
|
175 |
+
</g>
|
176 |
+
<g enable-background="new ">
|
177 |
+
<path fill="#565656" d="M90.7,17.9v6.3h3.8V25h-4.7v-7.1H90.7z"/>
|
178 |
+
<path fill="#565656" d="M99.8,25c-0.1,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.4-0.1-0.5-0.2c-0.1-0.1-0.2-0.3-0.2-0.6
|
179 |
+
c-0.2,0.3-0.5,0.5-0.8,0.6c-0.3,0.1-0.6,0.2-1,0.2c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.1-0.5-0.2s-0.3-0.3-0.4-0.4
|
180 |
+
s-0.1-0.4-0.1-0.7c0-0.3,0.1-0.5,0.2-0.7s0.2-0.3,0.4-0.5c0.2-0.1,0.3-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.6-0.2c0.2,0,0.5-0.1,0.7-0.1
|
181 |
+
c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5s-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1
|
182 |
+
c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.4-0.4,0.8h-0.9c0-0.3,0.1-0.6,0.2-0.8c0.1-0.2,0.3-0.4,0.5-0.5
|
183 |
+
c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0s0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7
|
184 |
+
v2.7c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V25z M98.4,22.3c-0.1,0.1-0.2,0.1-0.4,0.2
|
185 |
+
c-0.2,0-0.4,0.1-0.5,0.1c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0.1-0.1,0.3-0.1,0.5
|
186 |
+
c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0c0.3,0,0.5,0,0.7-0.1
|
187 |
+
c0.2-0.1,0.4-0.2,0.5-0.3c0.1-0.1,0.2-0.2,0.3-0.4c0.1-0.1,0.1-0.3,0.1-0.4V22.3z"/>
|
188 |
+
<path fill="#565656" d="M101.2,23.8c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.3,0.1,0.4,0.2s0.3,0,0.5,0c0.1,0,0.3,0,0.4,0
|
189 |
+
c0.1,0,0.3-0.1,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2s0.1-0.2,0.1-0.4c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.4-0.2-0.6-0.3
|
190 |
+
c-0.2-0.1-0.5-0.1-0.8-0.2c-0.3-0.1-0.6-0.1-0.8-0.2c-0.2-0.1-0.5-0.2-0.6-0.4s-0.2-0.4-0.2-0.8c0-0.3,0.1-0.5,0.2-0.7
|
191 |
+
c0.1-0.2,0.3-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3s0.5-0.1,0.7-0.1c0.3,0,0.6,0,0.8,0.1c0.2,0,0.5,0.1,0.7,0.3
|
192 |
+
c0.2,0.1,0.3,0.3,0.5,0.5s0.2,0.5,0.2,0.8h-0.9c0-0.2-0.1-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1
|
193 |
+
s-0.3,0-0.4,0c-0.1,0-0.3,0-0.4,0c-0.1,0-0.2,0.1-0.4,0.1c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0.1,0.3,0.2,0.4
|
194 |
+
s0.2,0.2,0.4,0.2c0.2,0.1,0.3,0.1,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.2,0.5,0.3s0.3,0.2,0.4,0.4
|
195 |
+
c0.1,0.2,0.1,0.4,0.1,0.6c0,0.3-0.1,0.6-0.2,0.8c-0.1,0.2-0.3,0.4-0.5,0.5c-0.2,0.1-0.4,0.2-0.7,0.3s-0.5,0.1-0.8,0.1
|
196 |
+
c-0.3,0-0.6,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.4-0.3-0.5-0.5c-0.1-0.2-0.2-0.5-0.2-0.8h0.8
|
197 |
+
C101.1,23.6,101.1,23.7,101.2,23.8z"/>
|
198 |
+
<path fill="#565656" d="M107.8,19.8v0.8h-1v3.2c0,0.1,0,0.2,0,0.2c0,0.1,0,0.1,0.1,0.1s0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3,0h0.4V25
|
199 |
+
h-0.6c-0.2,0-0.4,0-0.6,0s-0.3-0.1-0.4-0.2s-0.2-0.2-0.2-0.3c0-0.1-0.1-0.3-0.1-0.6v-3.3H105v-0.8h0.9v-1.5h0.8v1.5H107.8z"/>
|
200 |
+
<path fill="#565656" d="M112.6,17.9l3.8,5.8h0v-5.8h0.9V25h-1l-3.7-5.7h0V25h-0.9v-7.1H112.6z"/>
|
201 |
+
<path fill="#565656" d="M123.3,25c-0.1,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.4-0.1-0.5-0.2c-0.1-0.1-0.2-0.3-0.2-0.6
|
202 |
+
c-0.2,0.3-0.5,0.5-0.8,0.6c-0.3,0.1-0.6,0.2-1,0.2c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.1-0.5-0.2s-0.3-0.3-0.4-0.4
|
203 |
+
s-0.1-0.4-0.1-0.7c0-0.3,0.1-0.5,0.2-0.7s0.2-0.3,0.4-0.5c0.2-0.1,0.3-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.6-0.2c0.2,0,0.5-0.1,0.7-0.1
|
204 |
+
c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5s-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1
|
205 |
+
c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.4-0.4,0.8h-0.9c0-0.3,0.1-0.6,0.2-0.8c0.1-0.2,0.3-0.4,0.5-0.5
|
206 |
+
c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0s0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7
|
207 |
+
v2.7c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V25z M121.9,22.3c-0.1,0.1-0.2,0.1-0.4,0.2
|
208 |
+
c-0.2,0-0.4,0.1-0.5,0.1c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0.1-0.1,0.3-0.1,0.5
|
209 |
+
c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0c0.3,0,0.5,0,0.7-0.1
|
210 |
+
c0.2-0.1,0.4-0.2,0.5-0.3c0.1-0.1,0.2-0.2,0.3-0.4c0.1-0.1,0.1-0.3,0.1-0.4V22.3z"/>
|
211 |
+
<path fill="#565656" d="M124.9,19.8v0.8h0c0.4-0.6,0.9-0.9,1.7-0.9c0.3,0,0.6,0.1,0.9,0.2c0.3,0.1,0.4,0.4,0.5,0.7
|
212 |
+
c0.2-0.3,0.4-0.5,0.7-0.6s0.6-0.2,0.9-0.2c0.3,0,0.5,0,0.7,0.1s0.4,0.1,0.5,0.3c0.1,0.1,0.3,0.3,0.4,0.5c0.1,0.2,0.1,0.4,0.1,0.7
|
213 |
+
V25h-0.9v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.3-0.2c-0.1-0.1-0.3-0.1-0.5-0.1c-0.4,0-0.8,0.1-1,0.4
|
214 |
+
c-0.2,0.2-0.4,0.6-0.4,1V25h-0.8v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.3-0.2
|
215 |
+
c-0.1-0.1-0.3-0.1-0.5-0.1c-0.2,0-0.5,0-0.6,0.2c-0.2,0.1-0.3,0.2-0.4,0.4c-0.1,0.1-0.2,0.3-0.2,0.4c0,0.1-0.1,0.3-0.1,0.4V25
|
216 |
+
h-0.8v-5.2H124.9z"/>
|
217 |
+
<path fill="#565656" d="M136.3,24.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
218 |
+
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
219 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1h-3.9
|
220 |
+
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.5,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
221 |
+
s0.4-0.4,0.5-0.8h0.8C136.9,23.9,136.7,24.4,136.3,24.7z M136.1,21.3c-0.1-0.2-0.2-0.3-0.3-0.5s-0.3-0.2-0.5-0.3
|
222 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h3
|
223 |
+
C136.2,21.7,136.2,21.5,136.1,21.3z"/>
|
224 |
+
</g>
|
225 |
+
<g enable-background="new ">
|
226 |
+
<path fill="#565656" d="M94.7,51.9v0.8h-4v2.3h3.7v0.8h-3.7v2.5h4V59h-5v-7.1H94.7z"/>
|
227 |
+
<path fill="#565656" d="M96.5,53.8v0.8h0c0.4-0.6,0.9-0.9,1.7-0.9c0.3,0,0.6,0.1,0.9,0.2c0.3,0.1,0.4,0.4,0.6,0.7
|
228 |
+
c0.2-0.3,0.4-0.5,0.7-0.6s0.6-0.2,0.9-0.2c0.3,0,0.5,0,0.7,0.1c0.2,0.1,0.4,0.1,0.5,0.3c0.1,0.1,0.3,0.3,0.3,0.5
|
229 |
+
c0.1,0.2,0.1,0.4,0.1,0.7V59h-0.8v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.1-0.4s-0.2-0.2-0.3-0.2c-0.1-0.1-0.3-0.1-0.5-0.1
|
230 |
+
c-0.4,0-0.8,0.1-1,0.4c-0.2,0.2-0.4,0.6-0.4,1V59h-0.9v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.3-0.2
|
231 |
+
s-0.3-0.1-0.5-0.1c-0.2,0-0.5,0-0.6,0.2c-0.2,0.1-0.3,0.2-0.4,0.4c-0.1,0.1-0.2,0.3-0.2,0.4c0,0.1-0.1,0.3-0.1,0.4V59h-0.8v-5.2
|
232 |
+
H96.5z"/>
|
233 |
+
<path fill="#565656" d="M108.9,59c-0.1,0.1-0.3,0.1-0.6,0.1c-0.2,0-0.4-0.1-0.5-0.2s-0.2-0.3-0.2-0.6c-0.2,0.3-0.5,0.5-0.8,0.6
|
234 |
+
c-0.3,0.1-0.6,0.2-1,0.2c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.1-0.5-0.2c-0.2-0.1-0.3-0.3-0.4-0.4s-0.1-0.4-0.1-0.7
|
235 |
+
c0-0.3,0-0.5,0.1-0.7c0.1-0.2,0.2-0.3,0.4-0.5c0.2-0.1,0.3-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.6-0.2c0.2,0,0.5-0.1,0.7-0.1
|
236 |
+
c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5s-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1
|
237 |
+
c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2s-0.4,0.4-0.4,0.8h-0.9c0-0.3,0.1-0.6,0.2-0.8s0.3-0.4,0.5-0.5s0.4-0.2,0.7-0.3
|
238 |
+
c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7v2.7
|
239 |
+
c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V59z M107.5,56.3c-0.1,0.1-0.2,0.1-0.4,0.2c-0.2,0-0.4,0.1-0.5,0.1
|
240 |
+
s-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.1,0,0.3,0.1,0.4s0.1,0.2,0.2,0.2
|
241 |
+
c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.2,0.5-0.3s0.2-0.2,0.3-0.4s0.1-0.3,0.1-0.4V56.3z"
|
242 |
+
/>
|
243 |
+
<path fill="#565656" d="M109.7,52.9v-1h0.9v1H109.7z M110.5,53.8V59h-0.9v-5.2H110.5z"/>
|
244 |
+
<path fill="#565656" d="M112.8,51.9V59h-0.8v-7.1H112.8z"/>
|
245 |
+
</g>
|
246 |
+
<g enable-background="new ">
|
247 |
+
<path fill="#565656" d="M94.1,86.9c-0.4-0.3-0.8-0.4-1.3-0.4c-0.4,0-0.8,0.1-1.1,0.2c-0.3,0.2-0.6,0.4-0.8,0.6
|
248 |
+
c-0.2,0.3-0.3,0.6-0.4,0.9c-0.1,0.3-0.1,0.7-0.1,1.1c0,0.4,0,0.8,0.1,1.2c0.1,0.4,0.2,0.7,0.4,1c0.2,0.3,0.4,0.5,0.8,0.6
|
249 |
+
s0.7,0.2,1.1,0.2c0.3,0,0.6-0.1,0.8-0.2c0.2-0.1,0.5-0.2,0.6-0.4c0.2-0.2,0.3-0.4,0.4-0.7c0.1-0.3,0.2-0.5,0.2-0.8h1
|
250 |
+
c-0.1,0.9-0.4,1.6-0.9,2.1c-0.5,0.5-1.2,0.8-2.2,0.8c-0.6,0-1-0.1-1.5-0.3c-0.4-0.2-0.8-0.5-1-0.8c-0.3-0.3-0.5-0.7-0.6-1.2
|
251 |
+
s-0.2-0.9-0.2-1.5c0-0.5,0.1-1,0.2-1.5c0.1-0.5,0.4-0.9,0.6-1.2s0.6-0.6,1.1-0.8c0.4-0.2,0.9-0.3,1.5-0.3c0.4,0,0.7,0,1.1,0.1
|
252 |
+
c0.3,0.1,0.6,0.2,0.9,0.4s0.5,0.4,0.7,0.7s0.3,0.6,0.3,1h-1C94.7,87.5,94.5,87.1,94.1,86.9z"/>
|
253 |
+
<path fill="#565656" d="M97.7,85.9v2.7h0c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.3-0.2,0.4-0.3c0.2-0.1,0.3-0.1,0.5-0.2
|
254 |
+
c0.2,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9,0.1c0.2,0.1,0.4,0.2,0.5,0.4c0.1,0.2,0.2,0.4,0.3,0.6c0.1,0.2,0.1,0.5,0.1,0.8V93h-0.9v-3.5
|
255 |
+
c0-0.3-0.1-0.6-0.3-0.8s-0.4-0.3-0.8-0.3c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.3,0.2-0.5,0.3s-0.2,0.3-0.3,0.5
|
256 |
+
c-0.1,0.2-0.1,0.4-0.1,0.6V93h-0.9v-7.1H97.7z"/>
|
257 |
+
<path fill="#565656" d="M106.1,92.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
258 |
+
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
259 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1H103
|
260 |
+
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
261 |
+
c0.2-0.2,0.4-0.4,0.5-0.8h0.8C106.7,91.9,106.5,92.4,106.1,92.7z M105.9,89.3c-0.1-0.2-0.2-0.3-0.3-0.5c-0.1-0.1-0.3-0.2-0.5-0.3
|
262 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h3
|
263 |
+
C106,89.7,106,89.5,105.9,89.3z"/>
|
264 |
+
<path fill="#565656" d="M110.9,88.7c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.5s-0.2,0.4-0.3,0.6
|
265 |
+
c-0.1,0.2-0.1,0.5-0.1,0.8c0,0.2,0,0.5,0.1,0.7c0.1,0.2,0.1,0.4,0.3,0.6c0.1,0.2,0.3,0.3,0.5,0.4s0.4,0.2,0.7,0.2
|
266 |
+
c0.4,0,0.7-0.1,1-0.3c0.2-0.2,0.4-0.5,0.4-0.9h0.9c-0.1,0.6-0.3,1.1-0.7,1.5s-0.9,0.5-1.6,0.5c-0.4,0-0.7-0.1-1-0.2
|
267 |
+
s-0.6-0.3-0.8-0.5s-0.4-0.5-0.5-0.8c-0.1-0.3-0.2-0.7-0.2-1.1s0.1-0.7,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9s0.5-0.4,0.8-0.6
|
268 |
+
s0.7-0.2,1.1-0.2c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.7,0.3c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.2,0.2,0.5,0.2,0.8h-0.9
|
269 |
+
C111.2,89.2,111.1,88.9,110.9,88.7z"/>
|
270 |
+
<path fill="#565656" d="M114.1,85.9v4.2l2.4-2.3h1.1l-2,1.9l2.2,3.3h-1.1l-1.8-2.7l-0.8,0.7v2h-0.9v-7.1H114.1z"/>
|
271 |
+
<path fill="#565656" d="M121,89.4c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6c0.3-0.1,0.7-0.2,1.1-0.2
|
272 |
+
c0.4,0,0.8,0.1,1.1,0.2c0.3,0.1,0.6,0.3,0.8,0.6c0.2,0.2,0.4,0.5,0.5,0.9c0.1,0.3,0.2,0.7,0.2,1.1s-0.1,0.7-0.2,1.1
|
273 |
+
c-0.1,0.3-0.3,0.6-0.5,0.9c-0.2,0.2-0.5,0.4-0.8,0.6c-0.3,0.1-0.7,0.2-1.1,0.2c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
274 |
+
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1S120.9,89.7,121,89.4z M121.9,91.3c0.1,0.2,0.2,0.4,0.3,0.6s0.3,0.3,0.5,0.4
|
275 |
+
c0.2,0.1,0.4,0.1,0.6,0.1c0.2,0,0.4,0,0.6-0.1c0.2-0.1,0.4-0.2,0.5-0.4s0.3-0.4,0.3-0.6s0.1-0.5,0.1-0.8s0-0.6-0.1-0.8
|
276 |
+
s-0.2-0.4-0.3-0.6c-0.1-0.2-0.3-0.3-0.5-0.4c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.4,0.2-0.5,0.4
|
277 |
+
c-0.1,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8S121.8,91,121.9,91.3z"/>
|
278 |
+
<path fill="#565656" d="M130.3,93v-0.8h0c-0.2,0.3-0.4,0.6-0.7,0.7c-0.3,0.2-0.6,0.2-1,0.2c-0.3,0-0.6,0-0.9-0.1
|
279 |
+
c-0.2-0.1-0.4-0.2-0.5-0.4c-0.1-0.2-0.2-0.4-0.3-0.6c-0.1-0.2-0.1-0.5-0.1-0.8v-3.4h0.9v3.5c0,0.3,0.1,0.6,0.3,0.8
|
280 |
+
c0.2,0.2,0.4,0.3,0.8,0.3c0.3,0,0.5,0,0.7-0.1s0.3-0.2,0.5-0.3c0.1-0.1,0.2-0.3,0.3-0.5c0.1-0.2,0.1-0.4,0.1-0.6v-2.9h0.9V93
|
281 |
+
H130.3z"/>
|
282 |
+
<path fill="#565656" d="M134.6,87.8v0.8h-1v3.2c0,0.1,0,0.2,0,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3,0h0.4
|
283 |
+
V93H134c-0.2,0-0.4,0-0.6,0c-0.2,0-0.3-0.1-0.4-0.2c-0.1-0.1-0.2-0.2-0.2-0.3c0-0.1-0.1-0.3-0.1-0.6v-3.3h-0.9v-0.8h0.9v-1.5h0.8
|
284 |
+
v1.5H134.6z"/>
|
285 |
+
</g>
|
286 |
+
<g enable-background="new ">
|
287 |
+
<path fill="#565656" d="M94.1,120.9c-0.4-0.3-0.8-0.4-1.3-0.4c-0.4,0-0.8,0.1-1.1,0.2c-0.3,0.2-0.6,0.4-0.8,0.6
|
288 |
+
c-0.2,0.3-0.3,0.6-0.4,0.9c-0.1,0.3-0.1,0.7-0.1,1.1c0,0.4,0,0.8,0.1,1.2c0.1,0.4,0.2,0.7,0.4,1c0.2,0.3,0.4,0.5,0.8,0.6
|
289 |
+
s0.7,0.2,1.1,0.2c0.3,0,0.6-0.1,0.8-0.2c0.2-0.1,0.5-0.2,0.6-0.4c0.2-0.2,0.3-0.4,0.4-0.7c0.1-0.3,0.2-0.5,0.2-0.8h1
|
290 |
+
c-0.1,0.9-0.4,1.6-0.9,2.1c-0.5,0.5-1.2,0.8-2.2,0.8c-0.6,0-1-0.1-1.5-0.3c-0.4-0.2-0.8-0.5-1-0.8c-0.3-0.3-0.5-0.7-0.6-1.2
|
291 |
+
s-0.2-0.9-0.2-1.5c0-0.5,0.1-1,0.2-1.5c0.1-0.5,0.4-0.9,0.6-1.2s0.6-0.6,1.1-0.8c0.4-0.2,0.9-0.3,1.5-0.3c0.4,0,0.7,0,1.1,0.1
|
292 |
+
c0.3,0.1,0.6,0.2,0.9,0.4s0.5,0.4,0.7,0.7s0.3,0.6,0.3,1h-1C94.7,121.5,94.5,121.1,94.1,120.9z"/>
|
293 |
+
<path fill="#565656" d="M97.7,119.9v2.7h0c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.3-0.2,0.4-0.3c0.2-0.1,0.3-0.1,0.5-0.2
|
294 |
+
c0.2,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9,0.1c0.2,0.1,0.4,0.2,0.5,0.4c0.1,0.2,0.2,0.4,0.3,0.6c0.1,0.2,0.1,0.5,0.1,0.8v3.4h-0.9v-3.5
|
295 |
+
c0-0.3-0.1-0.6-0.3-0.8s-0.4-0.3-0.8-0.3c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.3,0.2-0.5,0.3s-0.2,0.3-0.3,0.5
|
296 |
+
c-0.1,0.2-0.1,0.4-0.1,0.6v2.9h-0.9v-7.1H97.7z"/>
|
297 |
+
<path fill="#565656" d="M102.5,120.9v-1h0.9v1H102.5z M103.3,121.8v5.2h-0.9v-5.2H103.3z"/>
|
298 |
+
<path fill="#565656" d="M105.5,119.9v7.1h-0.8v-7.1H105.5z"/>
|
299 |
+
<path fill="#565656" d="M110.6,127v-0.7h0c-0.1,0.3-0.4,0.5-0.7,0.6c-0.3,0.1-0.6,0.2-1,0.2c-0.4,0-0.7-0.1-1-0.2
|
300 |
+
c-0.3-0.1-0.5-0.3-0.7-0.6c-0.2-0.2-0.3-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1c0-0.4,0-0.7,0.1-1c0.1-0.3,0.2-0.6,0.4-0.9
|
301 |
+
c0.2-0.2,0.4-0.4,0.7-0.6s0.6-0.2,1-0.2c0.1,0,0.3,0,0.4,0c0.2,0,0.3,0.1,0.5,0.1c0.2,0.1,0.3,0.1,0.4,0.2s0.3,0.2,0.3,0.4h0v-2.7
|
302 |
+
h0.8v7.1H110.6z M107.6,125.2c0.1,0.2,0.2,0.4,0.3,0.6c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.2,0.7,0.2c0.3,0,0.5-0.1,0.7-0.2
|
303 |
+
s0.4-0.3,0.5-0.4c0.1-0.2,0.2-0.4,0.3-0.6s0.1-0.5,0.1-0.7c0-0.3,0-0.5-0.1-0.7c-0.1-0.2-0.2-0.4-0.3-0.6
|
304 |
+
c-0.1-0.2-0.3-0.3-0.5-0.4c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.7,0.2s-0.4,0.3-0.5,0.5c-0.1,0.2-0.2,0.4-0.3,0.6
|
305 |
+
c-0.1,0.2-0.1,0.5-0.1,0.7C107.5,124.7,107.5,124.9,107.6,125.2z"/>
|
306 |
+
<path fill="#565656" d="M113.6,121.8v1.1h0c0.2-0.4,0.5-0.7,0.8-0.9c0.3-0.2,0.7-0.3,1.1-0.3v0.9c-0.3,0-0.6,0-0.9,0.1
|
307 |
+
s-0.4,0.2-0.6,0.4s-0.3,0.4-0.3,0.7c-0.1,0.3-0.1,0.6-0.1,0.9v2.3h-0.8v-5.2H113.6z"/>
|
308 |
+
<path fill="#565656" d="M119.6,126.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
309 |
+
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
310 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1h-3.9
|
311 |
+
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
312 |
+
c0.2-0.2,0.4-0.4,0.5-0.8h0.8C120.2,125.9,120,126.4,119.6,126.7z M119.4,123.3c-0.1-0.2-0.2-0.3-0.3-0.5
|
313 |
+
c-0.1-0.1-0.3-0.2-0.5-0.3c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5
|
314 |
+
c-0.1,0.2-0.1,0.4-0.1,0.6h3C119.5,123.7,119.5,123.5,119.4,123.3z"/>
|
315 |
+
<path fill="#565656" d="M122.1,121.8v0.8h0c0.4-0.6,0.9-0.9,1.7-0.9c0.3,0,0.6,0,0.9,0.1c0.2,0.1,0.4,0.2,0.5,0.4
|
316 |
+
c0.1,0.2,0.2,0.4,0.3,0.6c0.1,0.2,0.1,0.5,0.1,0.8v3.4h-0.9v-3.5c0-0.3-0.1-0.6-0.3-0.8c-0.2-0.2-0.4-0.3-0.8-0.3
|
317 |
+
c-0.3,0-0.5,0-0.7,0.1s-0.3,0.2-0.5,0.3s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6v2.9h-0.9v-5.2H122.1z"/>
|
318 |
+
</g>
|
319 |
+
</g>
|
320 |
+
</svg>
|
templates/4/content.json
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
{"version":"0.4","title":"Job Application Form","type":"section","content":[{"id":"15e2","settings":{"gap":"no","box_shadow_box_shadow":{"horizontal":30,"vertical":30,"blur":80,"spread":0,"color":"rgba(0,0,0,0.1)"},"background_background":"classic","background_color":"#ffffff","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","padding":{"unit":"px","top":"32","right":"35","bottom":"15","left":"35","isLinked":false},"padding_tablet":{"unit":"px","top":"35","right":"15","bottom":"35","left":"15","isLinked":false}},"elements":[{"id":"3ead","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3994","settings":{"gap":"extended","structure":"20"},"elements":[{"id":"2101","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"16e8","settings":{"mf_input_label":"First Name","mf_input_name":"mf-first-name","mf_input_placeholder":"Anderson","mf_input_help_text":"Enter your first name here","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_min_length":1,"mf_input_label_color":"#101010","mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_required":"yes","mf_input_required_indicator_color":"#101010"},"elements":[],"isInner":false,"widgetType":"mf-text","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"39e7","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"ba6","settings":{"mf_input_label":"Last Name","mf_input_name":"mf-last-name","mf_input_placeholder":"Mikoo","mf_input_help_text":"Enter your last name here","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_required":"yes","mf_input_required_indicator_color":"#101010"},"elements":[],"isInner":false,"widgetType":"mf-text","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"6f39","settings":{"gap":"extended","structure":"20"},"elements":[{"id":"3c32","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"4c3d","settings":{"mf_input_label":"Contact Number","mf_input_name":"mf-contact-num","mf_input_placeholder":"","mf_input_help_text":"Example: +1 212-695-1962","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-telephone","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"5b00","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"d83","settings":{"mf_input_label":"Alternative Contact Number","mf_input_name":"mf-alt-num","mf_input_placeholder":"","mf_input_help_text":"Example: +1 212-695-1962","mf_input_required":"","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-telephone","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"1f8a","settings":{"gap":"extended","structure":"20"},"elements":[{"id":"7edf","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"697e","settings":{"mf_input_label":"Job Title","mf_input_name":"mf-job-title","mf_input_help_text":"Select your job title from dropdown","mf_input_list":[{"mf_input_option_text":"Product Designer","mf_input_option_value":"value-1","mf_input_option_status":"","_id":"a2fad29"},{"mf_input_option_text":"Software Engineer","mf_input_option_value":"value-2","mf_input_option_status":"","_id":"644c4ff"},{"mf_input_option_text":"QA Engineer","mf_input_option_value":"value-3","mf_input_option_status":"","_id":"8c9320c"}],"mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-select","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"45f5","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"272c","settings":{"mf_input_label":"Email Address","mf_input_name":"mf-email","mf_input_placeholder":"","mf_input_help_text":"Example: user@website.com","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-email","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"2fc4","settings":{"gap":"extended"},"elements":[{"id":"6ad7","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0,"margin":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"29fb","settings":{"mf_input_label":"Upload your Resume","mf_input_name":"mf-resume","mf_input_help_text":"Please upload your CV in .pdf format.","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"3","right":"0","bottom":"1","left":"0","isLinked":false},"mf_input_color":"#999999","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-file-upload","elType":"widget"},{"id":"a18","settings":{"mf_input_label":"Message \/ Cover Letter","mf_input_name":"mf-comment","mf_input_placeholder":"","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_textarea_field_height":{"unit":"px","size":140,"sizes":[]},"_padding":{"unit":"px","top":"37","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-textarea","elType":"widget"},{"id":"4c71","settings":{"mf_btn_text":"Apply","mf_btn_align":"left","mf_btn_text_padding":{"unit":"px","top":"15","right":"50","bottom":"15","left":"50","isLinked":false},"mf_btn_typography_typography":"custom","mf_btn_typography_font_family":"Helvetica","mf_btn_typography_font_size":{"unit":"px","size":16,"sizes":[]},"mf_btn_typography_font_weight":"500","mf_btn_typography_line_height":{"unit":"px","size":18,"sizes":[]},"mf_btn_bg_color_background":"classic","mf_btn_bg_color_color":"#4285f4","mf_btn_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"mf_btn_box_shadow_group_box_shadow_type":"yes","mf_btn_box_shadow_group_box_shadow":{"horizontal":0,"vertical":7,"blur":15,"spread":0,"color":"rgba(66,133,244,0.3)"},"_margin":{"unit":"px","top":"40","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-button","elType":"widget"},{"id":"2a56","settings":{"_padding":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false},"_margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false},"mf_response_padding":{"unit":"px","top":"12","right":"30","bottom":"12","left":"30","isLinked":false},"mf_response_typography_typography":"custom","mf_response_typography_font_family":"Helvetica","mf_response_typography_font_size":{"unit":"px","size":16,"sizes":[]},"mf_response_typography_font_weight":"500","mf_response_typography_line_height":{"unit":"px","size":21,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"mf-response","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}]}
|
templates/4/preview-thumb.svg
ADDED
@@ -0,0 +1,329 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 164 182" enable-background="new 0 0 164 182" xml:space="preserve">
|
5 |
+
<g>
|
6 |
+
<path id="Rectangle_605" fill="#FFFFFF" d="M5,0h154c2.8,0,5,2.2,5,5v172c0,2.8-2.2,5-5,5H5c-2.8,0-5-2.2-5-5V5C0,2.2,2.2,0,5,0z"
|
7 |
+
/>
|
8 |
+
<path id="Rectangle_606" fill="#DDE1E3" d="M17.5,31h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
9 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C15,32.1,16.1,31,17.5,31z"/>
|
10 |
+
<path id="Rectangle_607" fill="#DDE1E3" d="M17.5,65h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
11 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C15,66.1,16.1,65,17.5,65z"/>
|
12 |
+
<path id="Rectangle_608" fill="#DDE1E3" d="M17.5,99h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
13 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C15,100.1,16.1,99,17.5,99z"/>
|
14 |
+
<path id="Rectangle_610" fill="#DDE1E3" d="M91.5,31h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
15 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C89,32.1,90.1,31,91.5,31z"/>
|
16 |
+
<path id="Rectangle_611" fill="#DDE1E3" d="M91.5,65h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
17 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C89,66.1,90.1,65,91.5,65z"/>
|
18 |
+
<path id="Rectangle_612" fill="#DDE1E3" d="M91.5,99h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
19 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C89,100.1,90.1,99,91.5,99z"/>
|
20 |
+
<path id="Rectangle_613" fill="#DDE1E3" d="M17.5,123h15c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-15
|
21 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C15,124.1,16.1,123,17.5,123z"/>
|
22 |
+
<path id="Rectangle_615" fill="#DDE1E3" d="M42.5,123h5c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-5
|
23 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,124.1,41.1,123,42.5,123z"/>
|
24 |
+
<path id="Rectangle_616" fill="#DDE1E3" d="M57.5,123h15c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-15
|
25 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C55,124.1,56.1,123,57.5,123z"/>
|
26 |
+
<g enable-background="new ">
|
27 |
+
<path fill="#565656" d="M19.3,23.9c-0.1,0.2-0.2,0.4-0.4,0.6c-0.2,0.2-0.4,0.3-0.6,0.4s-0.6,0.2-1,0.2c-0.7,0-1.2-0.2-1.5-0.5
|
28 |
+
c-0.4-0.3-0.5-0.9-0.5-1.5v-0.4h0.9V23c0,0.2,0,0.4,0.1,0.6c0,0.2,0.1,0.3,0.2,0.5c0.1,0.1,0.2,0.2,0.4,0.3
|
29 |
+
c0.1,0.1,0.3,0.1,0.6,0.1c0.4,0,0.7-0.1,0.9-0.4c0.2-0.2,0.2-0.5,0.2-0.9v-5.2h1v5.4C19.4,23.5,19.4,23.7,19.3,23.9z"/>
|
30 |
+
<path fill="#565656" d="M20.7,21.4c0.1-0.3,0.3-0.6,0.5-0.9s0.5-0.4,0.8-0.6s0.7-0.2,1.1-0.2c0.4,0,0.8,0.1,1.1,0.2
|
31 |
+
s0.6,0.3,0.8,0.6c0.2,0.2,0.4,0.5,0.5,0.9c0.1,0.3,0.2,0.7,0.2,1.1s-0.1,0.7-0.2,1.1c-0.1,0.3-0.3,0.6-0.5,0.9
|
32 |
+
c-0.2,0.2-0.5,0.4-0.8,0.6s-0.7,0.2-1.1,0.2c-0.4,0-0.8-0.1-1.1-0.2s-0.6-0.3-0.8-0.6s-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1
|
33 |
+
S20.6,21.7,20.7,21.4z M21.6,23.3c0.1,0.2,0.2,0.4,0.3,0.6s0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.6,0.1c0.2,0,0.4,0,0.6-0.1
|
34 |
+
c0.2-0.1,0.4-0.2,0.5-0.4c0.1-0.2,0.3-0.4,0.3-0.6s0.1-0.5,0.1-0.8s0-0.6-0.1-0.8s-0.2-0.4-0.3-0.6c-0.1-0.2-0.3-0.3-0.5-0.4
|
35 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.1,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8
|
36 |
+
S21.5,23,21.6,23.3z"/>
|
37 |
+
<path fill="#565656" d="M27.4,17.9v2.7h0c0.1-0.3,0.4-0.5,0.7-0.6c0.3-0.1,0.6-0.2,1-0.2c0.4,0,0.7,0.1,1,0.2
|
38 |
+
c0.3,0.1,0.5,0.3,0.7,0.6c0.2,0.2,0.3,0.5,0.4,0.9c0.1,0.3,0.1,0.7,0.1,1c0,0.4,0,0.7-0.1,1c-0.1,0.3-0.2,0.6-0.4,0.9
|
39 |
+
s-0.4,0.4-0.7,0.6c-0.3,0.1-0.6,0.2-1,0.2c-0.1,0-0.3,0-0.4,0c-0.2,0-0.3-0.1-0.5-0.1c-0.2-0.1-0.3-0.1-0.4-0.2s-0.3-0.2-0.3-0.4
|
40 |
+
h0V25h-0.9v-7.1H27.4z M30.5,21.7c-0.1-0.2-0.2-0.4-0.3-0.6c-0.1-0.2-0.3-0.3-0.5-0.4c-0.2-0.1-0.4-0.2-0.7-0.2
|
41 |
+
c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.3-0.5,0.4c-0.1,0.2-0.2,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.7c0,0.3,0,0.5,0.1,0.7
|
42 |
+
c0.1,0.2,0.2,0.4,0.3,0.6c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.7-0.2s0.4-0.3,0.5-0.5
|
43 |
+
s0.2-0.4,0.3-0.6c0.1-0.2,0.1-0.5,0.1-0.7C30.6,22.1,30.6,21.9,30.5,21.7z"/>
|
44 |
+
<path fill="#565656" d="M34.7,18.7v-0.8h5.7v0.8H38V25h-1v-6.3H34.7z"/>
|
45 |
+
<path fill="#565656" d="M41.1,18.9v-1h0.9v1H41.1z M41.9,19.8V25h-0.9v-5.2H41.9z"/>
|
46 |
+
<path fill="#565656" d="M45.4,19.8v0.8h-1v3.2c0,0.1,0,0.2,0,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3,0h0.4
|
47 |
+
V25h-0.6c-0.2,0-0.4,0-0.6,0c-0.2,0-0.3-0.1-0.4-0.2s-0.2-0.2-0.2-0.3c0-0.1-0.1-0.3-0.1-0.6v-3.3h-0.9v-0.8h0.9v-1.5h0.8v1.5
|
48 |
+
H45.4z"/>
|
49 |
+
<path fill="#565656" d="M47.3,17.9V25h-0.9v-7.1H47.3z"/>
|
50 |
+
<path fill="#565656" d="M52.3,24.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
51 |
+
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
52 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1h-3.9
|
53 |
+
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
54 |
+
s0.4-0.4,0.5-0.8H53C52.9,23.9,52.7,24.4,52.3,24.7z M52.1,21.3c-0.1-0.2-0.2-0.3-0.3-0.5c-0.1-0.1-0.3-0.2-0.5-0.3
|
55 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h3
|
56 |
+
C52.2,21.7,52.1,21.5,52.1,21.3z"/>
|
57 |
+
</g>
|
58 |
+
<g enable-background="new ">
|
59 |
+
<path fill="#565656" d="M20.5,51.9v0.8h-3.7v2.3H20v0.8h-3.3V59h-1v-7.1H20.5z"/>
|
60 |
+
<path fill="#565656" d="M21.4,52.9v-1h0.9v1H21.4z M22.3,53.8V59h-0.9v-5.2H22.3z"/>
|
61 |
+
<path fill="#565656" d="M24.4,53.8v1.1h0c0.2-0.4,0.5-0.7,0.8-0.9c0.3-0.2,0.7-0.3,1.1-0.3v0.9c-0.3,0-0.6,0-0.9,0.1
|
62 |
+
c-0.2,0.1-0.4,0.2-0.6,0.4s-0.3,0.4-0.3,0.7c-0.1,0.3-0.1,0.6-0.1,0.9V59h-0.9v-5.2H24.4z"/>
|
63 |
+
<path fill="#565656" d="M27.6,57.8c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.3,0.1,0.4,0.2s0.3,0,0.5,0c0.1,0,0.3,0,0.4,0
|
64 |
+
c0.1,0,0.3-0.1,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.4-0.2-0.6-0.3
|
65 |
+
c-0.2-0.1-0.5-0.1-0.8-0.2s-0.6-0.1-0.8-0.2c-0.2-0.1-0.5-0.2-0.6-0.4s-0.2-0.4-0.2-0.8c0-0.3,0.1-0.5,0.2-0.7
|
66 |
+
c0.1-0.2,0.3-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3s0.5-0.1,0.7-0.1c0.3,0,0.6,0,0.8,0.1c0.2,0,0.5,0.1,0.7,0.3s0.3,0.3,0.5,0.5
|
67 |
+
s0.2,0.5,0.2,0.8h-0.9c0-0.2-0.1-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1s-0.3,0-0.4,0c-0.1,0-0.3,0-0.4,0
|
68 |
+
c-0.1,0-0.2,0.1-0.4,0.1c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0.1,0.3,0.2,0.4c0.1,0.1,0.2,0.2,0.4,0.2
|
69 |
+
c0.2,0.1,0.3,0.1,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.2,0.5,0.3s0.3,0.2,0.4,0.4
|
70 |
+
c0.1,0.2,0.1,0.4,0.1,0.6c0,0.3-0.1,0.6-0.2,0.8c-0.1,0.2-0.3,0.4-0.5,0.5c-0.2,0.1-0.4,0.2-0.7,0.3c-0.3,0-0.5,0.1-0.8,0.1
|
71 |
+
c-0.3,0-0.6,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.4-0.3-0.5-0.5c-0.1-0.2-0.2-0.5-0.2-0.8h0.9
|
72 |
+
C27.5,57.6,27.5,57.7,27.6,57.8z"/>
|
73 |
+
<path fill="#565656" d="M34.1,53.8v0.8h-1v3.2c0,0.1,0,0.2,0,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3,0h0.4
|
74 |
+
V59h-0.6c-0.2,0-0.4,0-0.6,0c-0.2,0-0.3-0.1-0.4-0.2s-0.2-0.2-0.2-0.3c0-0.1-0.1-0.3-0.1-0.6v-3.3h-0.9v-0.8h0.9v-1.5h0.8v1.5
|
75 |
+
H34.1z"/>
|
76 |
+
<path fill="#565656" d="M39,51.9l3.8,5.8h0v-5.8h0.9V59h-1l-3.7-5.7h0V59H38v-7.1H39z"/>
|
77 |
+
<path fill="#565656" d="M49.7,59c-0.1,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.4-0.1-0.5-0.2s-0.2-0.3-0.2-0.6c-0.2,0.3-0.5,0.5-0.8,0.6
|
78 |
+
c-0.3,0.1-0.6,0.2-1,0.2c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.1-0.5-0.2s-0.3-0.3-0.4-0.4c-0.1-0.2-0.1-0.4-0.1-0.7
|
79 |
+
c0-0.3,0.1-0.5,0.1-0.7c0.1-0.2,0.2-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.6-0.2c0.2,0,0.5-0.1,0.7-0.1
|
80 |
+
c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5c-0.1-0.1-0.2-0.2-0.3-0.3
|
81 |
+
c-0.1-0.1-0.2-0.1-0.4-0.1c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.4-0.4,0.8H45c0-0.3,0.1-0.6,0.2-0.8
|
82 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0s0.4,0.1,0.6,0.2
|
83 |
+
c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7v2.7c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V59z M48.3,56.3
|
84 |
+
c-0.1,0.1-0.2,0.1-0.4,0.2c-0.2,0-0.4,0.1-0.5,0.1s-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3
|
85 |
+
c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0
|
86 |
+
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.2,0.5-0.3c0.1-0.1,0.2-0.2,0.3-0.4s0.1-0.3,0.1-0.4V56.3z"/>
|
87 |
+
<path fill="#565656" d="M51.2,53.8v0.8h0c0.4-0.6,0.9-0.9,1.7-0.9c0.3,0,0.6,0.1,0.9,0.2c0.3,0.1,0.4,0.4,0.5,0.7
|
88 |
+
c0.2-0.3,0.4-0.5,0.7-0.6s0.6-0.2,0.9-0.2c0.3,0,0.5,0,0.7,0.1s0.4,0.1,0.5,0.3c0.1,0.1,0.3,0.3,0.4,0.5c0.1,0.2,0.1,0.4,0.1,0.7
|
89 |
+
V59h-0.9v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.2c-0.1-0.1-0.3-0.1-0.5-0.1c-0.4,0-0.8,0.1-1,0.4
|
90 |
+
c-0.2,0.2-0.4,0.6-0.4,1V59h-0.9v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.3-0.2
|
91 |
+
c-0.1-0.1-0.3-0.1-0.5-0.1c-0.2,0-0.5,0-0.6,0.2c-0.2,0.1-0.3,0.2-0.4,0.4c-0.1,0.1-0.2,0.3-0.2,0.4c0,0.1-0.1,0.3-0.1,0.4V59
|
92 |
+
h-0.9v-5.2H51.2z"/>
|
93 |
+
<path fill="#565656" d="M62.6,58.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
94 |
+
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
95 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1h-3.9
|
96 |
+
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
97 |
+
s0.4-0.4,0.5-0.8h0.8C63.3,57.9,63,58.4,62.6,58.7z M62.4,55.3c-0.1-0.2-0.2-0.3-0.3-0.5c-0.1-0.1-0.3-0.2-0.5-0.3
|
98 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h3
|
99 |
+
C62.6,55.7,62.5,55.5,62.4,55.3z"/>
|
100 |
+
</g>
|
101 |
+
<g enable-background="new ">
|
102 |
+
<path fill="#565656" d="M20.1,86.9c-0.4-0.3-0.8-0.4-1.3-0.4c-0.4,0-0.8,0.1-1.1,0.2c-0.3,0.2-0.6,0.4-0.8,0.6
|
103 |
+
c-0.2,0.3-0.3,0.6-0.4,0.9s-0.1,0.7-0.1,1.1c0,0.4,0,0.8,0.1,1.2s0.2,0.7,0.4,1c0.2,0.3,0.4,0.5,0.8,0.6s0.7,0.2,1.1,0.2
|
104 |
+
c0.3,0,0.6-0.1,0.8-0.2c0.2-0.1,0.5-0.2,0.6-0.4s0.3-0.4,0.4-0.7c0.1-0.3,0.2-0.5,0.2-0.8h0.9c-0.1,0.9-0.4,1.6-0.9,2.1
|
105 |
+
c-0.5,0.5-1.2,0.8-2.2,0.8c-0.6,0-1-0.1-1.5-0.3c-0.4-0.2-0.8-0.5-1-0.8c-0.3-0.3-0.5-0.7-0.6-1.2s-0.2-0.9-0.2-1.5
|
106 |
+
c0-0.5,0.1-1,0.2-1.5c0.1-0.5,0.4-0.9,0.6-1.2s0.6-0.6,1.1-0.8c0.4-0.2,0.9-0.3,1.5-0.3c0.4,0,0.7,0,1.1,0.1
|
107 |
+
c0.3,0.1,0.6,0.2,0.9,0.4c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.3,1h-1C20.7,87.5,20.5,87.1,20.1,86.9z"/>
|
108 |
+
<path fill="#565656" d="M22.7,89.4c0.1-0.3,0.3-0.6,0.5-0.9s0.5-0.4,0.8-0.6s0.7-0.2,1.1-0.2c0.4,0,0.8,0.1,1.1,0.2
|
109 |
+
s0.6,0.3,0.8,0.6c0.2,0.2,0.4,0.5,0.5,0.9c0.1,0.3,0.2,0.7,0.2,1.1s-0.1,0.7-0.2,1.1c-0.1,0.3-0.3,0.6-0.5,0.9
|
110 |
+
c-0.2,0.2-0.5,0.4-0.8,0.6s-0.7,0.2-1.1,0.2c-0.4,0-0.8-0.1-1.1-0.2s-0.6-0.3-0.8-0.6s-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1
|
111 |
+
S22.6,89.7,22.7,89.4z M23.6,91.3c0.1,0.2,0.2,0.4,0.3,0.6s0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.6,0.1c0.2,0,0.4,0,0.6-0.1
|
112 |
+
c0.2-0.1,0.4-0.2,0.5-0.4c0.1-0.2,0.3-0.4,0.3-0.6s0.1-0.5,0.1-0.8s0-0.6-0.1-0.8s-0.2-0.4-0.3-0.6c-0.1-0.2-0.3-0.3-0.5-0.4
|
113 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.1,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8
|
114 |
+
S23.5,91,23.6,91.3z"/>
|
115 |
+
<path fill="#565656" d="M29.4,87.8v0.8h0c0.4-0.6,0.9-0.9,1.7-0.9c0.3,0,0.6,0,0.9,0.1c0.2,0.1,0.4,0.2,0.5,0.4
|
116 |
+
c0.1,0.2,0.2,0.4,0.3,0.6c0.1,0.2,0.1,0.5,0.1,0.8V93H32v-3.5c0-0.3-0.1-0.6-0.3-0.8s-0.4-0.3-0.8-0.3c-0.3,0-0.5,0-0.7,0.1
|
117 |
+
c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6V93h-0.9v-5.2H29.4z"/>
|
118 |
+
<path fill="#565656" d="M36.4,87.8v0.8h-1v3.2c0,0.1,0,0.2,0,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3,0h0.4
|
119 |
+
V93h-0.6c-0.2,0-0.4,0-0.6,0c-0.2,0-0.3-0.1-0.4-0.2s-0.2-0.2-0.2-0.3c0-0.1-0.1-0.3-0.1-0.6v-3.3h-0.9v-0.8h0.9v-1.5h0.8v1.5
|
120 |
+
H36.4z"/>
|
121 |
+
<path fill="#565656" d="M41.9,93c-0.1,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.4-0.1-0.5-0.2s-0.2-0.3-0.2-0.6c-0.2,0.3-0.5,0.5-0.8,0.6
|
122 |
+
c-0.3,0.1-0.6,0.2-1,0.2c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.1-0.5-0.2s-0.3-0.3-0.4-0.4c-0.1-0.2-0.1-0.4-0.1-0.7
|
123 |
+
c0-0.3,0.1-0.5,0.1-0.7c0.1-0.2,0.2-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.6-0.2c0.2,0,0.5-0.1,0.7-0.1
|
124 |
+
c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5c-0.1-0.1-0.2-0.2-0.3-0.3
|
125 |
+
c-0.1-0.1-0.2-0.1-0.4-0.1c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.4-0.4,0.8h-0.9c0-0.3,0.1-0.6,0.2-0.8
|
126 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0s0.4,0.1,0.6,0.2
|
127 |
+
c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7v2.7c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V93z M40.5,90.3
|
128 |
+
c-0.1,0.1-0.2,0.1-0.4,0.2c-0.2,0-0.4,0.1-0.5,0.1s-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3
|
129 |
+
c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0
|
130 |
+
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.2,0.5-0.3c0.1-0.1,0.2-0.2,0.3-0.4s0.1-0.3,0.1-0.4V90.3z"/>
|
131 |
+
<path fill="#565656" d="M45.8,88.7c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.5s-0.2,0.4-0.3,0.6
|
132 |
+
c-0.1,0.2-0.1,0.5-0.1,0.8c0,0.2,0,0.5,0.1,0.7c0.1,0.2,0.1,0.4,0.3,0.6c0.1,0.2,0.3,0.3,0.5,0.4s0.4,0.2,0.7,0.2
|
133 |
+
c0.4,0,0.7-0.1,1-0.3s0.4-0.5,0.4-0.9h0.9c-0.1,0.6-0.3,1.1-0.7,1.5c-0.4,0.3-0.9,0.5-1.6,0.5c-0.4,0-0.7-0.1-1-0.2
|
134 |
+
s-0.6-0.3-0.8-0.5c-0.2-0.2-0.4-0.5-0.5-0.8c-0.1-0.3-0.2-0.7-0.2-1.1s0.1-0.7,0.1-1.1c0.1-0.3,0.3-0.6,0.5-0.9
|
135 |
+
c0.2-0.2,0.5-0.4,0.8-0.6s0.7-0.2,1.1-0.2c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.7,0.3c0.2,0.1,0.4,0.3,0.5,0.6
|
136 |
+
c0.1,0.2,0.2,0.5,0.2,0.8h-0.9C46.1,89.2,46,88.9,45.8,88.7z"/>
|
137 |
+
<path fill="#565656" d="M50.3,87.8v0.8h-1v3.2c0,0.1,0,0.2,0,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3,0h0.4
|
138 |
+
V93h-0.6c-0.2,0-0.4,0-0.6,0c-0.2,0-0.3-0.1-0.4-0.2s-0.2-0.2-0.2-0.3c0-0.1-0.1-0.3-0.1-0.6v-3.3h-0.9v-0.8h0.9v-1.5h0.8v1.5
|
139 |
+
H50.3z"/>
|
140 |
+
</g>
|
141 |
+
<g enable-background="new ">
|
142 |
+
<path fill="#565656" d="M93.1,121.9c0.7,0,1.2,0.2,1.6,0.5c0.4,0.3,0.6,0.8,0.6,1.4c0,0.4-0.1,0.8-0.3,1.1
|
143 |
+
c-0.2,0.3-0.5,0.5-0.9,0.7v0c0.2,0,0.4,0.1,0.5,0.2c0.1,0.1,0.2,0.2,0.3,0.3s0.1,0.3,0.2,0.4s0.1,0.3,0.1,0.5c0,0.2,0,0.3,0,0.5
|
144 |
+
c0,0.2,0,0.4,0.1,0.5c0,0.2,0.1,0.3,0.1,0.5c0,0.2,0.1,0.3,0.2,0.4h-1.1c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.3,0-0.4c0-0.2,0-0.3,0-0.5
|
145 |
+
c0-0.2,0-0.4-0.1-0.5c0-0.2-0.1-0.3-0.1-0.5c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.6-0.1h-2.3v3h-1
|
146 |
+
v-7.1H93.1z M93.3,125.1c0.2,0,0.4-0.1,0.5-0.2s0.3-0.2,0.4-0.4c0.1-0.2,0.1-0.4,0.1-0.6c0-0.4-0.1-0.7-0.3-0.9
|
147 |
+
c-0.2-0.2-0.5-0.3-1-0.3h-2.4v2.5h2C92.9,125.2,93.1,125.1,93.3,125.1z"/>
|
148 |
+
<path fill="#565656" d="M100.2,128.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
149 |
+
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
150 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1h-3.9
|
151 |
+
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
152 |
+
c0.2-0.2,0.4-0.4,0.5-0.8h0.8C100.8,127.9,100.5,128.4,100.2,128.7z M99.9,125.3c-0.1-0.2-0.2-0.3-0.3-0.5
|
153 |
+
c-0.1-0.1-0.3-0.2-0.5-0.3c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5
|
154 |
+
c-0.1,0.2-0.1,0.4-0.1,0.6h3C100.1,125.7,100,125.5,99.9,125.3z"/>
|
155 |
+
<path fill="#565656" d="M102.5,127.8c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.3,0.1,0.4,0.2s0.3,0,0.5,0c0.1,0,0.3,0,0.4,0
|
156 |
+
c0.1,0,0.3-0.1,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.4-0.2-0.6-0.3
|
157 |
+
c-0.2-0.1-0.5-0.1-0.8-0.2c-0.3-0.1-0.6-0.1-0.8-0.2c-0.2-0.1-0.5-0.2-0.6-0.4s-0.2-0.4-0.2-0.8c0-0.3,0.1-0.5,0.2-0.7
|
158 |
+
c0.1-0.2,0.3-0.3,0.5-0.5c0.2-0.1,0.4-0.2,0.6-0.3s0.5-0.1,0.7-0.1c0.3,0,0.6,0,0.8,0.1s0.5,0.1,0.7,0.3c0.2,0.1,0.3,0.3,0.5,0.5
|
159 |
+
s0.2,0.5,0.2,0.8h-0.8c0-0.2-0.1-0.3-0.1-0.4s-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1s-0.3,0-0.4,0c-0.1,0-0.3,0-0.4,0
|
160 |
+
c-0.1,0-0.2,0.1-0.4,0.1c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0.1,0.3,0.2,0.4c0.1,0.1,0.2,0.2,0.4,0.2
|
161 |
+
c0.2,0.1,0.3,0.1,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.2,0.5,0.3s0.3,0.2,0.4,0.4
|
162 |
+
c0.1,0.2,0.1,0.4,0.1,0.6c0,0.3-0.1,0.6-0.2,0.8c-0.1,0.2-0.3,0.4-0.5,0.5c-0.2,0.1-0.4,0.2-0.7,0.3c-0.3,0-0.5,0.1-0.8,0.1
|
163 |
+
c-0.3,0-0.6,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.4-0.3-0.5-0.5c-0.1-0.2-0.2-0.5-0.2-0.8h0.9
|
164 |
+
C102.4,127.6,102.4,127.7,102.5,127.8z"/>
|
165 |
+
<path fill="#565656" d="M110.3,129v-0.8h0c-0.2,0.3-0.4,0.6-0.7,0.7c-0.3,0.2-0.6,0.2-1,0.2c-0.3,0-0.6,0-0.9-0.1
|
166 |
+
c-0.2-0.1-0.4-0.2-0.5-0.4c-0.1-0.2-0.2-0.4-0.3-0.6c-0.1-0.2-0.1-0.5-0.1-0.8v-3.4h0.9v3.5c0,0.3,0.1,0.6,0.3,0.8
|
167 |
+
c0.2,0.2,0.4,0.3,0.8,0.3c0.3,0,0.5,0,0.7-0.1s0.3-0.2,0.5-0.3c0.1-0.1,0.2-0.3,0.3-0.5c0.1-0.2,0.1-0.4,0.1-0.6v-2.9h0.9v5.2
|
168 |
+
H110.3z"/>
|
169 |
+
<path fill="#565656" d="M113.2,123.8v0.8h0c0.4-0.6,0.9-0.9,1.7-0.9c0.3,0,0.6,0.1,0.9,0.2c0.3,0.1,0.4,0.4,0.6,0.7
|
170 |
+
c0.2-0.3,0.4-0.5,0.7-0.6s0.6-0.2,0.9-0.2c0.3,0,0.5,0,0.7,0.1c0.2,0.1,0.4,0.1,0.5,0.3c0.1,0.1,0.3,0.3,0.3,0.5
|
171 |
+
c0.1,0.2,0.1,0.4,0.1,0.7v3.8h-0.8v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.1-0.4s-0.2-0.2-0.3-0.2c-0.1-0.1-0.3-0.1-0.5-0.1
|
172 |
+
c-0.4,0-0.8,0.1-1,0.4c-0.2,0.2-0.4,0.6-0.4,1v3.2h-0.9v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.3-0.2
|
173 |
+
s-0.3-0.1-0.5-0.1c-0.2,0-0.5,0-0.6,0.2c-0.2,0.1-0.3,0.2-0.4,0.4c-0.1,0.1-0.2,0.3-0.2,0.4c0,0.1-0.1,0.3-0.1,0.4v3.2h-0.8v-5.2
|
174 |
+
H113.2z"/>
|
175 |
+
<path fill="#565656" d="M124.6,128.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
176 |
+
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
177 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1h-3.9
|
178 |
+
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.5,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
179 |
+
s0.4-0.4,0.5-0.8h0.8C125.2,127.9,125,128.4,124.6,128.7z M124.4,125.3c-0.1-0.2-0.2-0.3-0.3-0.5s-0.3-0.2-0.5-0.3
|
180 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h3
|
181 |
+
C124.5,125.7,124.5,125.5,124.4,125.3z"/>
|
182 |
+
<path fill="#565656" d="M132,121.7l-3,7.5h-0.7l3-7.5H132z"/>
|
183 |
+
<path fill="#565656" d="M139.7,122.9c-0.4-0.3-0.8-0.4-1.3-0.4c-0.4,0-0.8,0.1-1.1,0.2c-0.3,0.2-0.6,0.4-0.8,0.6
|
184 |
+
c-0.2,0.3-0.3,0.6-0.4,0.9s-0.1,0.7-0.1,1.1c0,0.4,0,0.8,0.1,1.2s0.2,0.7,0.4,1c0.2,0.3,0.4,0.5,0.8,0.6s0.7,0.2,1.1,0.2
|
185 |
+
c0.3,0,0.6-0.1,0.8-0.2c0.2-0.1,0.5-0.2,0.6-0.4s0.3-0.4,0.4-0.7c0.1-0.3,0.2-0.5,0.2-0.8h1c-0.1,0.9-0.4,1.6-0.9,2.1
|
186 |
+
s-1.2,0.8-2.2,0.8c-0.6,0-1-0.1-1.5-0.3c-0.4-0.2-0.8-0.5-1-0.8c-0.3-0.3-0.5-0.7-0.6-1.2s-0.2-0.9-0.2-1.5c0-0.5,0.1-1,0.2-1.5
|
187 |
+
c0.1-0.5,0.4-0.9,0.6-1.2s0.6-0.6,1.1-0.8c0.4-0.2,0.9-0.3,1.5-0.3c0.4,0,0.7,0,1.1,0.1c0.3,0.1,0.6,0.2,0.9,0.4s0.5,0.4,0.7,0.7
|
188 |
+
c0.2,0.3,0.3,0.6,0.3,1h-1C140.3,123.5,140,123.1,139.7,122.9z"/>
|
189 |
+
<path fill="#565656" d="M144.3,129l-2.5-7.1h1l2,6.2h0l2.1-6.2h1l-2.5,7.1H144.3z"/>
|
190 |
+
</g>
|
191 |
+
<path id="Rectangle_614" fill="#DE4437" d="M52,147h60c5.5,0,10,4.5,10,10l0,0c0,5.5-4.5,10-10,10H52c-5.5,0-10-4.5-10-10l0,0
|
192 |
+
C42,151.5,46.5,147,52,147z"/>
|
193 |
+
<g enable-background="new ">
|
194 |
+
<path fill="#FFFFFF" d="M64.6,158.6c0,0.3,0,0.5,0.1,0.7c0.1,0.2,0.2,0.4,0.4,0.5s0.4,0.2,0.6,0.3c0.2,0.1,0.5,0.1,0.7,0.1
|
195 |
+
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.3s0.1-0.3,0.1-0.4c0-0.3-0.1-0.5-0.2-0.6
|
196 |
+
c-0.1-0.1-0.3-0.2-0.4-0.3c-0.3-0.1-0.5-0.2-0.9-0.3c-0.3-0.1-0.8-0.2-1.2-0.3c-0.3-0.1-0.6-0.2-0.8-0.3c-0.2-0.1-0.4-0.3-0.5-0.4
|
197 |
+
c-0.1-0.2-0.2-0.3-0.3-0.5c0-0.2-0.1-0.4-0.1-0.5c0-0.4,0.1-0.7,0.2-0.9c0.1-0.3,0.3-0.5,0.6-0.7c0.2-0.2,0.5-0.3,0.8-0.4
|
198 |
+
c0.3-0.1,0.6-0.1,1-0.1c0.4,0,0.7,0,1.1,0.1s0.6,0.2,0.9,0.4c0.2,0.2,0.4,0.4,0.6,0.7s0.2,0.6,0.2,1h-1.2c0-0.5-0.2-0.8-0.5-1
|
199 |
+
c-0.3-0.2-0.6-0.3-1.1-0.3c-0.1,0-0.3,0-0.5,0s-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.2-0.3,0.3c-0.1,0.1-0.1,0.3-0.1,0.4
|
200 |
+
c0,0.3,0.1,0.5,0.2,0.6s0.4,0.3,0.6,0.3c0,0,0.1,0,0.3,0.1c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.1,0.7,0.2s0.4,0.1,0.5,0.1
|
201 |
+
c0.2,0.1,0.4,0.2,0.6,0.3s0.3,0.3,0.4,0.4c0.1,0.2,0.2,0.3,0.3,0.5s0.1,0.4,0.1,0.6c0,0.4-0.1,0.7-0.2,1c-0.2,0.3-0.4,0.5-0.6,0.7
|
202 |
+
c-0.3,0.2-0.6,0.3-0.9,0.4c-0.3,0.1-0.7,0.1-1,0.1c-0.4,0-0.8,0-1.1-0.2c-0.4-0.1-0.7-0.3-0.9-0.5c-0.3-0.2-0.5-0.5-0.6-0.8
|
203 |
+
c-0.2-0.3-0.2-0.7-0.2-1.1H64.6z"/>
|
204 |
+
<path fill="#FFFFFF" d="M70.2,153.9h1.2v4.2c0,0.2,0,0.5,0,0.7c0,0.2,0.1,0.5,0.2,0.7s0.3,0.4,0.5,0.5c0.2,0.1,0.5,0.2,0.9,0.2
|
205 |
+
s0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.5-0.5c0.1-0.2,0.2-0.4,0.2-0.7c0-0.2,0-0.5,0-0.7v-4.2H76v4.6c0,0.5-0.1,0.9-0.2,1.2
|
206 |
+
s-0.3,0.6-0.6,0.9c-0.3,0.2-0.6,0.4-0.9,0.5s-0.8,0.2-1.2,0.2s-0.8-0.1-1.2-0.2c-0.4-0.1-0.7-0.3-0.9-0.5
|
207 |
+
c-0.3-0.2-0.5-0.5-0.6-0.9c-0.1-0.3-0.2-0.7-0.2-1.2V153.9z"/>
|
208 |
+
<path fill="#FFFFFF" d="M77.5,153.9h3.5c0.6,0,1.2,0.1,1.5,0.4c0.4,0.3,0.6,0.7,0.6,1.3c0,0.4-0.1,0.7-0.3,0.9
|
209 |
+
c-0.2,0.3-0.4,0.5-0.8,0.6v0c0.4,0.1,0.8,0.3,1,0.6s0.3,0.7,0.3,1.2c0,0.3,0,0.5-0.1,0.8s-0.3,0.5-0.5,0.6
|
210 |
+
c-0.2,0.2-0.5,0.3-0.8,0.4c-0.3,0.1-0.7,0.2-1.2,0.2h-3.3V153.9z M78.7,156.8h2c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.4,0.3-0.7
|
211 |
+
c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.1-0.4-0.2-0.8-0.2h-2V156.8z M78.7,160h2.2c0.4,0,0.7-0.1,0.9-0.3c0.2-0.2,0.3-0.5,0.3-0.8
|
212 |
+
c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.5-0.3-0.9-0.3h-2.2V160z"/>
|
213 |
+
<path fill="#FFFFFF" d="M84.5,153.9h1.8l2,5.6h0l1.9-5.6h1.7v7.1h-1.2v-5.5h0l-2,5.5h-1l-2-5.5h0v5.5h-1.2V153.9z"/>
|
214 |
+
<path fill="#FFFFFF" d="M93.4,153.9h1.2v7.1h-1.2V153.9z"/>
|
215 |
+
<path fill="#FFFFFF" d="M95.5,153.9h5.8v1.1H99v6.1h-1.2v-6.1h-2.3V153.9z"/>
|
216 |
+
</g>
|
217 |
+
<g enable-background="new ">
|
218 |
+
<path fill="#565656" d="M94.7,17.9v0.8h-4v2.3h3.7v0.8h-3.7v2.5h4V25h-5v-7.1H94.7z"/>
|
219 |
+
<path fill="#565656" d="M96.5,19.8v0.8h0c0.4-0.6,0.9-0.9,1.7-0.9c0.3,0,0.6,0.1,0.9,0.2c0.3,0.1,0.4,0.4,0.6,0.7
|
220 |
+
c0.2-0.3,0.4-0.5,0.7-0.6s0.6-0.2,0.9-0.2c0.3,0,0.5,0,0.7,0.1c0.2,0.1,0.4,0.1,0.5,0.3c0.1,0.1,0.3,0.3,0.3,0.5
|
221 |
+
c0.1,0.2,0.1,0.4,0.1,0.7V25h-0.8v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.1-0.4s-0.2-0.2-0.3-0.2c-0.1-0.1-0.3-0.1-0.5-0.1
|
222 |
+
c-0.4,0-0.8,0.1-1,0.4c-0.2,0.2-0.4,0.6-0.4,1V25h-0.9v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.3-0.2
|
223 |
+
s-0.3-0.1-0.5-0.1c-0.2,0-0.5,0-0.6,0.2c-0.2,0.1-0.3,0.2-0.4,0.4c-0.1,0.1-0.2,0.3-0.2,0.4c0,0.1-0.1,0.3-0.1,0.4V25h-0.8v-5.2
|
224 |
+
H96.5z"/>
|
225 |
+
<path fill="#565656" d="M108.9,25c-0.1,0.1-0.3,0.1-0.6,0.1c-0.2,0-0.4-0.1-0.5-0.2s-0.2-0.3-0.2-0.6c-0.2,0.3-0.5,0.5-0.8,0.6
|
226 |
+
c-0.3,0.1-0.6,0.2-1,0.2c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.1-0.5-0.2c-0.2-0.1-0.3-0.3-0.4-0.4s-0.1-0.4-0.1-0.7
|
227 |
+
c0-0.3,0-0.5,0.1-0.7c0.1-0.2,0.2-0.3,0.4-0.5c0.2-0.1,0.3-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.6-0.2c0.2,0,0.5-0.1,0.7-0.1
|
228 |
+
c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5s-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1
|
229 |
+
c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2s-0.4,0.4-0.4,0.8h-0.9c0-0.3,0.1-0.6,0.2-0.8s0.3-0.4,0.5-0.5s0.4-0.2,0.7-0.3
|
230 |
+
c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7v2.7
|
231 |
+
c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V25z M107.5,22.3c-0.1,0.1-0.2,0.1-0.4,0.2c-0.2,0-0.4,0.1-0.5,0.1
|
232 |
+
s-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.1,0,0.3,0.1,0.4s0.1,0.2,0.2,0.2
|
233 |
+
c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.2,0.5-0.3s0.2-0.2,0.3-0.4s0.1-0.3,0.1-0.4V22.3z"
|
234 |
+
/>
|
235 |
+
<path fill="#565656" d="M109.7,18.9v-1h0.9v1H109.7z M110.5,19.8V25h-0.9v-5.2H110.5z"/>
|
236 |
+
<path fill="#565656" d="M112.8,17.9V25h-0.8v-7.1H112.8z"/>
|
237 |
+
</g>
|
238 |
+
<g enable-background="new ">
|
239 |
+
<path fill="#565656" d="M90.7,51.9v6.3h3.8V59h-4.7v-7.1H90.7z"/>
|
240 |
+
<path fill="#565656" d="M99.8,59c-0.1,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.4-0.1-0.5-0.2c-0.1-0.1-0.2-0.3-0.2-0.6
|
241 |
+
c-0.2,0.3-0.5,0.5-0.8,0.6c-0.3,0.1-0.6,0.2-1,0.2c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.1-0.5-0.2s-0.3-0.3-0.4-0.4
|
242 |
+
s-0.1-0.4-0.1-0.7c0-0.3,0.1-0.5,0.2-0.7s0.2-0.3,0.4-0.5c0.2-0.1,0.3-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.6-0.2c0.2,0,0.5-0.1,0.7-0.1
|
243 |
+
c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5s-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1
|
244 |
+
c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.4-0.4,0.8h-0.9c0-0.3,0.1-0.6,0.2-0.8c0.1-0.2,0.3-0.4,0.5-0.5
|
245 |
+
c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0s0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7
|
246 |
+
v2.7c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V59z M98.4,56.3c-0.1,0.1-0.2,0.1-0.4,0.2
|
247 |
+
c-0.2,0-0.4,0.1-0.5,0.1c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0.1-0.1,0.3-0.1,0.5
|
248 |
+
c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0c0.3,0,0.5,0,0.7-0.1
|
249 |
+
c0.2-0.1,0.4-0.2,0.5-0.3c0.1-0.1,0.2-0.2,0.3-0.4c0.1-0.1,0.1-0.3,0.1-0.4V56.3z"/>
|
250 |
+
<path fill="#565656" d="M101.2,57.8c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.3,0.1,0.4,0.2s0.3,0,0.5,0c0.1,0,0.3,0,0.4,0
|
251 |
+
c0.1,0,0.3-0.1,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2s0.1-0.2,0.1-0.4c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.4-0.2-0.6-0.3
|
252 |
+
c-0.2-0.1-0.5-0.1-0.8-0.2c-0.3-0.1-0.6-0.1-0.8-0.2c-0.2-0.1-0.5-0.2-0.6-0.4s-0.2-0.4-0.2-0.8c0-0.3,0.1-0.5,0.2-0.7
|
253 |
+
c0.1-0.2,0.3-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3s0.5-0.1,0.7-0.1c0.3,0,0.6,0,0.8,0.1c0.2,0,0.5,0.1,0.7,0.3
|
254 |
+
c0.2,0.1,0.3,0.3,0.5,0.5s0.2,0.5,0.2,0.8h-0.9c0-0.2-0.1-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1
|
255 |
+
s-0.3,0-0.4,0c-0.1,0-0.3,0-0.4,0c-0.1,0-0.2,0.1-0.4,0.1c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0.1,0.3,0.2,0.4
|
256 |
+
s0.2,0.2,0.4,0.2c0.2,0.1,0.3,0.1,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.2,0.5,0.3s0.3,0.2,0.4,0.4
|
257 |
+
c0.1,0.2,0.1,0.4,0.1,0.6c0,0.3-0.1,0.6-0.2,0.8c-0.1,0.2-0.3,0.4-0.5,0.5c-0.2,0.1-0.4,0.2-0.7,0.3s-0.5,0.1-0.8,0.1
|
258 |
+
c-0.3,0-0.6,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.4-0.3-0.5-0.5c-0.1-0.2-0.2-0.5-0.2-0.8h0.8
|
259 |
+
C101.1,57.6,101.1,57.7,101.2,57.8z"/>
|
260 |
+
<path fill="#565656" d="M107.8,53.8v0.8h-1v3.2c0,0.1,0,0.2,0,0.2c0,0.1,0,0.1,0.1,0.1s0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3,0h0.4V59
|
261 |
+
h-0.6c-0.2,0-0.4,0-0.6,0s-0.3-0.1-0.4-0.2s-0.2-0.2-0.2-0.3c0-0.1-0.1-0.3-0.1-0.6v-3.3H105v-0.8h0.9v-1.5h0.8v1.5H107.8z"/>
|
262 |
+
<path fill="#565656" d="M112.6,51.9l3.8,5.8h0v-5.8h0.9V59h-1l-3.7-5.7h0V59h-0.9v-7.1H112.6z"/>
|
263 |
+
<path fill="#565656" d="M123.3,59c-0.1,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.4-0.1-0.5-0.2c-0.1-0.1-0.2-0.3-0.2-0.6
|
264 |
+
c-0.2,0.3-0.5,0.5-0.8,0.6c-0.3,0.1-0.6,0.2-1,0.2c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.1-0.5-0.2s-0.3-0.3-0.4-0.4
|
265 |
+
s-0.1-0.4-0.1-0.7c0-0.3,0.1-0.5,0.2-0.7s0.2-0.3,0.4-0.5c0.2-0.1,0.3-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.6-0.2c0.2,0,0.5-0.1,0.7-0.1
|
266 |
+
c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5s-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1
|
267 |
+
c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.4-0.4,0.8h-0.9c0-0.3,0.1-0.6,0.2-0.8c0.1-0.2,0.3-0.4,0.5-0.5
|
268 |
+
c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0s0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7
|
269 |
+
v2.7c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V59z M121.9,56.3c-0.1,0.1-0.2,0.1-0.4,0.2
|
270 |
+
c-0.2,0-0.4,0.1-0.5,0.1c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0.1-0.1,0.3-0.1,0.5
|
271 |
+
c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0c0.3,0,0.5,0,0.7-0.1
|
272 |
+
c0.2-0.1,0.4-0.2,0.5-0.3c0.1-0.1,0.2-0.2,0.3-0.4c0.1-0.1,0.1-0.3,0.1-0.4V56.3z"/>
|
273 |
+
<path fill="#565656" d="M124.9,53.8v0.8h0c0.4-0.6,0.9-0.9,1.7-0.9c0.3,0,0.6,0.1,0.9,0.2c0.3,0.1,0.4,0.4,0.5,0.7
|
274 |
+
c0.2-0.3,0.4-0.5,0.7-0.6s0.6-0.2,0.9-0.2c0.3,0,0.5,0,0.7,0.1s0.4,0.1,0.5,0.3c0.1,0.1,0.3,0.3,0.4,0.5c0.1,0.2,0.1,0.4,0.1,0.7
|
275 |
+
V59h-0.9v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.3-0.2c-0.1-0.1-0.3-0.1-0.5-0.1c-0.4,0-0.8,0.1-1,0.4
|
276 |
+
c-0.2,0.2-0.4,0.6-0.4,1V59h-0.8v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.3-0.2
|
277 |
+
c-0.1-0.1-0.3-0.1-0.5-0.1c-0.2,0-0.5,0-0.6,0.2c-0.2,0.1-0.3,0.2-0.4,0.4c-0.1,0.1-0.2,0.3-0.2,0.4c0,0.1-0.1,0.3-0.1,0.4V59
|
278 |
+
h-0.8v-5.2H124.9z"/>
|
279 |
+
<path fill="#565656" d="M136.3,58.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
280 |
+
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
281 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1h-3.9
|
282 |
+
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.5,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
283 |
+
s0.4-0.4,0.5-0.8h0.8C136.9,57.9,136.7,58.4,136.3,58.7z M136.1,55.3c-0.1-0.2-0.2-0.3-0.3-0.5s-0.3-0.2-0.5-0.3
|
284 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h3
|
285 |
+
C136.2,55.7,136.2,55.5,136.1,55.3z"/>
|
286 |
+
</g>
|
287 |
+
<g enable-background="new ">
|
288 |
+
<path fill="#565656" d="M92.8,85.9l2.8,7.1h-1.1l-0.8-2.2h-3L89.9,93h-1l2.8-7.1H92.8z M93.4,90l-1.2-3.3h0L91,90H93.4z"/>
|
289 |
+
<path fill="#565656" d="M97,85.9V93h-0.8v-7.1H97z"/>
|
290 |
+
<path fill="#565656" d="M100.5,87.8v0.8h-1v3.2c0,0.1,0,0.2,0,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3,0h0.4
|
291 |
+
V93h-0.6c-0.2,0-0.4,0-0.6,0c-0.2,0-0.3-0.1-0.4-0.2c-0.1-0.1-0.2-0.2-0.2-0.3c0-0.1-0.1-0.3-0.1-0.6v-3.3h-0.9v-0.8h0.9v-1.5h0.8
|
292 |
+
v1.5H100.5z"/>
|
293 |
+
<path fill="#565656" d="M105.1,92.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
294 |
+
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
295 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1s0.1,0.7,0.1,1h-3.9
|
296 |
+
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
297 |
+
s0.4-0.4,0.5-0.8h0.8C105.8,91.9,105.5,92.4,105.1,92.7z M104.9,89.3c-0.1-0.2-0.2-0.3-0.3-0.5c-0.1-0.1-0.3-0.2-0.5-0.3
|
298 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h3
|
299 |
+
C105.1,89.7,105,89.5,104.9,89.3z"/>
|
300 |
+
<path fill="#565656" d="M107.6,87.8v1.1h0c0.2-0.4,0.5-0.7,0.8-0.9c0.3-0.2,0.7-0.3,1.1-0.3v0.9c-0.3,0-0.6,0-0.9,0.1
|
301 |
+
s-0.4,0.2-0.6,0.4s-0.3,0.4-0.3,0.7c-0.1,0.3-0.1,0.6-0.1,0.9V93h-0.8v-5.2H107.6z"/>
|
302 |
+
<path fill="#565656" d="M111.2,87.8v0.8h0c0.4-0.6,0.9-0.9,1.7-0.9c0.3,0,0.6,0,0.9,0.1c0.2,0.1,0.4,0.2,0.5,0.4
|
303 |
+
c0.1,0.2,0.2,0.4,0.3,0.6c0.1,0.2,0.1,0.5,0.1,0.8V93h-0.9v-3.5c0-0.3-0.1-0.6-0.3-0.8s-0.4-0.3-0.8-0.3c-0.3,0-0.5,0-0.7,0.1
|
304 |
+
c-0.2,0.1-0.3,0.2-0.5,0.3s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6V93h-0.9v-5.2H111.2z"/>
|
305 |
+
<path fill="#565656" d="M120.5,93c-0.1,0.1-0.3,0.1-0.6,0.1c-0.2,0-0.4-0.1-0.5-0.2c-0.1-0.1-0.2-0.3-0.2-0.6
|
306 |
+
c-0.2,0.3-0.5,0.5-0.8,0.6c-0.3,0.1-0.6,0.2-1,0.2c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.1-0.5-0.2s-0.3-0.3-0.4-0.4
|
307 |
+
c-0.1-0.2-0.1-0.4-0.1-0.7c0-0.3,0-0.5,0.1-0.7c0.1-0.2,0.2-0.3,0.4-0.5s0.4-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.6-0.2
|
308 |
+
c0.2,0,0.5-0.1,0.7-0.1c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5
|
309 |
+
c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2s-0.4,0.4-0.4,0.8h-0.8
|
310 |
+
c0-0.3,0.1-0.6,0.2-0.8c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0
|
311 |
+
s0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7v2.7c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V93z
|
312 |
+
M119.1,90.3c-0.1,0.1-0.2,0.1-0.4,0.2c-0.2,0-0.4,0.1-0.5,0.1c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3
|
313 |
+
c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.1,0,0.3,0.1,0.4s0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0c0.3,0,0.5,0,0.7-0.1
|
314 |
+
c0.2-0.1,0.4-0.2,0.5-0.3s0.2-0.2,0.3-0.4c0.1-0.1,0.1-0.3,0.1-0.4V90.3z"/>
|
315 |
+
<path fill="#565656" d="M123.5,87.8v0.8h-1v3.2c0,0.1,0,0.2,0,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3,0h0.4
|
316 |
+
V93h-0.7c-0.2,0-0.4,0-0.6,0c-0.2,0-0.3-0.1-0.4-0.2s-0.2-0.2-0.2-0.3s-0.1-0.3-0.1-0.6v-3.3h-0.9v-0.8h0.9v-1.5h0.8v1.5H123.5z"
|
317 |
+
/>
|
318 |
+
<path fill="#565656" d="M124.5,86.9v-1h0.9v1H124.5z M125.3,87.8V93h-0.9v-5.2H125.3z"/>
|
319 |
+
<path fill="#565656" d="M128.1,93l-1.9-5.2h1l1.4,4.3h0l1.4-4.3h0.9L129,93H128.1z"/>
|
320 |
+
<path fill="#565656" d="M135.3,92.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
321 |
+
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
322 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1s0.1,0.7,0.1,1h-3.9
|
323 |
+
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.5,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
324 |
+
c0.2-0.2,0.4-0.4,0.5-0.8h0.8C136,91.9,135.7,92.4,135.3,92.7z M135.1,89.3c-0.1-0.2-0.2-0.3-0.3-0.5c-0.1-0.1-0.3-0.2-0.5-0.3
|
325 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h3
|
326 |
+
C135.2,89.7,135.2,89.5,135.1,89.3z"/>
|
327 |
+
</g>
|
328 |
+
</g>
|
329 |
+
</svg>
|
templates/5/content.json
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
{"version":"0.4","title":"Support Form","type":"section","content":[{"id":"504","settings":{"gap":"no","box_shadow_box_shadow":{"horizontal":30,"vertical":30,"blur":80,"spread":0,"color":"rgba(0,0,0,0.1)"},"background_background":"classic","background_color":"#ffffff","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","padding":{"unit":"px","top":"32","right":"35","bottom":"15","left":"35","isLinked":false},"padding_tablet":{"unit":"px","top":"35","right":"15","bottom":"35","left":"15","isLinked":false}},"elements":[{"id":"4d17","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"44be","settings":{"gap":"extended","structure":"20"},"elements":[{"id":"43c3","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"6372","settings":{"mf_input_label":"First Name","mf_input_name":"mf-first-name","mf_input_placeholder":"Anderson","mf_input_help_text":"Enter your first name here","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_min_length":1,"mf_input_label_color":"#101010","mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_required":"yes","mf_input_required_indicator_color":"#101010"},"elements":[],"isInner":false,"widgetType":"mf-text","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"2f79","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"7440","settings":{"mf_input_label":"Last Name","mf_input_name":"mf-last-name","mf_input_placeholder":"Mikoo","mf_input_help_text":"Enter your last name here","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_required":"yes","mf_input_required_indicator_color":"#101010"},"elements":[],"isInner":false,"widgetType":"mf-text","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"2d96","settings":{"gap":"extended"},"elements":[{"id":"54b1","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0,"margin":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"591f","settings":{"mf_input_label":"Email Address","mf_input_name":"mf-email","mf_input_placeholder":"","mf_input_help_text":"Example: user@website.com","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-email","elType":"widget"},{"id":"146c","settings":{"mf_input_label":"Select Department","mf_input_name":"mf-dept","mf_input_display_option":"block","mf_input_list":[{"mf_input_option_text":"Sales","mf_input_option_value":"value-1","mf_input_option_status":"","_id":"87f3be6"},{"mf_input_option_text":"Customer Support","mf_input_option_value":"value-2","mf_input_option_status":"","_id":"02d4f80"},{"mf_input_option_text":"Product Development","mf_input_option_value":"value-3","mf_input_option_status":"","_id":"87337a0"},{"mf_input_option_text":"Others","mf_input_option_value":"value-4","mf_input_option_status":"","_id":"3a5ef77"}],"mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"mf_input_required_indicator_color":"#101010","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_typgraphy_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"40","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_option_color":"#666666","mf_input_option_icon_color":"#747474","mf_input_option_space_between":{"unit":"px","size":26,"sizes":[]},"mf_input_required":"yes","mf_input_option_padding":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_typgraphy_font_weight":"400"},"elements":[],"isInner":false,"widgetType":"mf-radio","elType":"widget"},{"id":"4a35","settings":{"mf_input_label":"Subject","mf_input_name":"mf-subject","mf_input_placeholder":"","mf_input_help_text":"Write your knowledge base heading which you\u2019re into","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"39","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-text","elType":"widget"},{"id":"6eca","settings":{"mf_input_label":"Comments \/ Message","mf_input_name":"mf-comments","mf_input_placeholder":"","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_textarea_field_height":{"unit":"px","size":140,"sizes":[]},"_padding":{"unit":"px","top":"37","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_help_text":"How may we help you? Please be brief as much as possible"},"elements":[],"isInner":false,"widgetType":"mf-textarea","elType":"widget"},{"id":"683b","settings":{"mf_btn_text":"Submit","mf_btn_align":"left","mf_btn_text_padding":{"unit":"px","top":"15","right":"50","bottom":"15","left":"50","isLinked":false},"mf_btn_typography_typography":"custom","mf_btn_typography_font_family":"Helvetica","mf_btn_typography_font_size":{"unit":"px","size":16,"sizes":[]},"mf_btn_typography_font_weight":"500","mf_btn_typography_line_height":{"unit":"px","size":18,"sizes":[]},"mf_btn_bg_color_background":"classic","mf_btn_bg_color_color":"#4285f4","mf_btn_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"mf_btn_box_shadow_group_box_shadow_type":"yes","mf_btn_box_shadow_group_box_shadow":{"horizontal":0,"vertical":7,"blur":15,"spread":0,"color":"rgba(66,133,244,0.3)"},"_margin":{"unit":"px","top":"40","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-button","elType":"widget"},{"id":"b58","settings":{"_padding":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false},"_margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false},"mf_response_padding":{"unit":"px","top":"12","right":"30","bottom":"12","left":"30","isLinked":false},"mf_response_typography_typography":"custom","mf_response_typography_font_family":"Helvetica","mf_response_typography_font_size":{"unit":"px","size":16,"sizes":[]},"mf_response_typography_font_weight":"500","mf_response_typography_line_height":{"unit":"px","size":21,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"mf-response","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}]}
|
templates/5/preview-thumb.svg
ADDED
@@ -0,0 +1,301 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 164 182" enable-background="new 0 0 164 182" xml:space="preserve">
|
5 |
+
<g>
|
6 |
+
<path id="Rectangle_617" fill="#FFFFFF" d="M5,0h154c2.8,0,5,2.2,5,5v172c0,2.8-2.2,5-5,5H5c-2.8,0-5-2.2-5-5V5C0,2.2,2.2,0,5,0z"
|
7 |
+
/>
|
8 |
+
<path id="Rectangle_618" fill="#DDE1E3" d="M17.5,31h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
9 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C15,32.1,16.1,31,17.5,31z"/>
|
10 |
+
<path id="Rectangle_619" fill="#DDE1E3" d="M17.5,64h129c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-129
|
11 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C15,65.1,16.1,64,17.5,64z"/>
|
12 |
+
<path id="Rectangle_620" fill="#DDE1E3" d="M91.5,31h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
13 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C89,32.1,90.1,31,91.5,31z"/>
|
14 |
+
<path id="Rectangle_624" fill="#DDE1E3" d="M17.5,97h5c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-5c-1.4,0-2.5-1.1-2.5-2.5
|
15 |
+
l0,0C15,98.1,16.1,97,17.5,97z"/>
|
16 |
+
<path id="Rectangle_632" fill="#DDE1E3" d="M17.5,133h5c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-5
|
17 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C15,134.1,16.1,133,17.5,133z"/>
|
18 |
+
<path id="Rectangle_630" fill="#DDE1E3" d="M17.5,121h5c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-5
|
19 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C15,122.1,16.1,121,17.5,121z"/>
|
20 |
+
<path id="Rectangle_629" fill="#DDE1E3" d="M17.5,109h5c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-5
|
21 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C15,110.1,16.1,109,17.5,109z"/>
|
22 |
+
<path id="Rectangle_625" fill="#DDE1E3" d="M32.5,97h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
23 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C30,98.1,31.1,97,32.5,97z"/>
|
24 |
+
<path id="Rectangle_633" fill="#DDE1E3" d="M32.5,133h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
25 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C30,134.1,31.1,133,32.5,133z"/>
|
26 |
+
<path id="Rectangle_631" fill="#DDE1E3" d="M32.5,121h35c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-35
|
27 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C30,122.1,31.1,121,32.5,121z"/>
|
28 |
+
<path id="Rectangle_628" fill="#DDE1E3" d="M32.5,109h85c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-85
|
29 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C30,110.1,31.1,109,32.5,109z"/>
|
30 |
+
<g enable-background="new ">
|
31 |
+
<path fill="#565656" d="M20.5,17.9v0.8h-3.7v2.3H20v0.8h-3.3V25h-1v-7.1H20.5z"/>
|
32 |
+
<path fill="#565656" d="M21.4,18.9v-1h0.9v1H21.4z M22.3,19.8V25h-0.9v-5.2H22.3z"/>
|
33 |
+
<path fill="#565656" d="M24.4,19.8v1.1h0c0.2-0.4,0.5-0.7,0.8-0.9c0.3-0.2,0.7-0.3,1.1-0.3v0.9c-0.3,0-0.6,0-0.9,0.1
|
34 |
+
c-0.2,0.1-0.4,0.2-0.6,0.4s-0.3,0.4-0.3,0.7c-0.1,0.3-0.1,0.6-0.1,0.9V25h-0.9v-5.2H24.4z"/>
|
35 |
+
<path fill="#565656" d="M27.6,23.8c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.3,0.1,0.4,0.2s0.3,0,0.5,0c0.1,0,0.3,0,0.4,0
|
36 |
+
c0.1,0,0.3-0.1,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.4-0.2-0.6-0.3
|
37 |
+
c-0.2-0.1-0.5-0.1-0.8-0.2s-0.6-0.1-0.8-0.2c-0.2-0.1-0.5-0.2-0.6-0.4s-0.2-0.4-0.2-0.8c0-0.3,0.1-0.5,0.2-0.7
|
38 |
+
c0.1-0.2,0.3-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3s0.5-0.1,0.7-0.1c0.3,0,0.6,0,0.8,0.1c0.2,0,0.5,0.1,0.7,0.3s0.3,0.3,0.5,0.5
|
39 |
+
s0.2,0.5,0.2,0.8h-0.9c0-0.2-0.1-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1s-0.3,0-0.4,0c-0.1,0-0.3,0-0.4,0
|
40 |
+
c-0.1,0-0.2,0.1-0.4,0.1c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0.1,0.3,0.2,0.4c0.1,0.1,0.2,0.2,0.4,0.2
|
41 |
+
c0.2,0.1,0.3,0.1,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.2,0.5,0.3s0.3,0.2,0.4,0.4
|
42 |
+
c0.1,0.2,0.1,0.4,0.1,0.6c0,0.3-0.1,0.6-0.2,0.8c-0.1,0.2-0.3,0.4-0.5,0.5c-0.2,0.1-0.4,0.2-0.7,0.3c-0.3,0-0.5,0.1-0.8,0.1
|
43 |
+
c-0.3,0-0.6,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.4-0.3-0.5-0.5c-0.1-0.2-0.2-0.5-0.2-0.8h0.9
|
44 |
+
C27.5,23.6,27.5,23.7,27.6,23.8z"/>
|
45 |
+
<path fill="#565656" d="M34.1,19.8v0.8h-1v3.2c0,0.1,0,0.2,0,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3,0h0.4
|
46 |
+
V25h-0.6c-0.2,0-0.4,0-0.6,0c-0.2,0-0.3-0.1-0.4-0.2s-0.2-0.2-0.2-0.3c0-0.1-0.1-0.3-0.1-0.6v-3.3h-0.9v-0.8h0.9v-1.5h0.8v1.5
|
47 |
+
H34.1z"/>
|
48 |
+
<path fill="#565656" d="M39,17.9l3.8,5.8h0v-5.8h0.9V25h-1l-3.7-5.7h0V25H38v-7.1H39z"/>
|
49 |
+
<path fill="#565656" d="M49.7,25c-0.1,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.4-0.1-0.5-0.2s-0.2-0.3-0.2-0.6c-0.2,0.3-0.5,0.5-0.8,0.6
|
50 |
+
c-0.3,0.1-0.6,0.2-1,0.2c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.1-0.5-0.2s-0.3-0.3-0.4-0.4c-0.1-0.2-0.1-0.4-0.1-0.7
|
51 |
+
c0-0.3,0.1-0.5,0.1-0.7c0.1-0.2,0.2-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.6-0.2c0.2,0,0.5-0.1,0.7-0.1
|
52 |
+
c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5c-0.1-0.1-0.2-0.2-0.3-0.3
|
53 |
+
c-0.1-0.1-0.2-0.1-0.4-0.1c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.4-0.4,0.8H45c0-0.3,0.1-0.6,0.2-0.8
|
54 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0s0.4,0.1,0.6,0.2
|
55 |
+
c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7v2.7c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V25z M48.3,22.3
|
56 |
+
c-0.1,0.1-0.2,0.1-0.4,0.2c-0.2,0-0.4,0.1-0.5,0.1s-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3
|
57 |
+
c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0
|
58 |
+
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.2,0.5-0.3c0.1-0.1,0.2-0.2,0.3-0.4s0.1-0.3,0.1-0.4V22.3z"/>
|
59 |
+
<path fill="#565656" d="M51.2,19.8v0.8h0c0.4-0.6,0.9-0.9,1.7-0.9c0.3,0,0.6,0.1,0.9,0.2c0.3,0.1,0.4,0.4,0.5,0.7
|
60 |
+
c0.2-0.3,0.4-0.5,0.7-0.6s0.6-0.2,0.9-0.2c0.3,0,0.5,0,0.7,0.1s0.4,0.1,0.5,0.3c0.1,0.1,0.3,0.3,0.4,0.5c0.1,0.2,0.1,0.4,0.1,0.7
|
61 |
+
V25h-0.9v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.2c-0.1-0.1-0.3-0.1-0.5-0.1c-0.4,0-0.8,0.1-1,0.4
|
62 |
+
c-0.2,0.2-0.4,0.6-0.4,1V25h-0.9v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.3-0.2
|
63 |
+
c-0.1-0.1-0.3-0.1-0.5-0.1c-0.2,0-0.5,0-0.6,0.2c-0.2,0.1-0.3,0.2-0.4,0.4c-0.1,0.1-0.2,0.3-0.2,0.4c0,0.1-0.1,0.3-0.1,0.4V25
|
64 |
+
h-0.9v-5.2H51.2z"/>
|
65 |
+
<path fill="#565656" d="M62.6,24.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
66 |
+
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
67 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1h-3.9
|
68 |
+
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
69 |
+
s0.4-0.4,0.5-0.8h0.8C63.3,23.9,63,24.4,62.6,24.7z M62.4,21.3c-0.1-0.2-0.2-0.3-0.3-0.5c-0.1-0.1-0.3-0.2-0.5-0.3
|
70 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h3
|
71 |
+
C62.6,21.7,62.5,21.5,62.4,21.3z"/>
|
72 |
+
</g>
|
73 |
+
<g enable-background="new ">
|
74 |
+
<path fill="#565656" d="M20.7,50.9v0.8h-4v2.3h3.7v0.8h-3.7v2.5h4V58h-5v-7.1H20.7z"/>
|
75 |
+
<path fill="#565656" d="M22.5,52.8v0.8h0c0.4-0.6,0.9-0.9,1.7-0.9c0.3,0,0.6,0.1,0.9,0.2c0.3,0.1,0.4,0.4,0.5,0.7
|
76 |
+
c0.2-0.3,0.4-0.5,0.7-0.6s0.6-0.2,0.9-0.2c0.3,0,0.5,0,0.7,0.1s0.4,0.1,0.5,0.3c0.1,0.1,0.3,0.3,0.4,0.5c0.1,0.2,0.1,0.4,0.1,0.7
|
77 |
+
V58h-0.9v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.2c-0.1-0.1-0.3-0.1-0.5-0.1c-0.4,0-0.8,0.1-1,0.4
|
78 |
+
c-0.2,0.2-0.4,0.6-0.4,1V58h-0.9v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.3-0.2
|
79 |
+
c-0.1-0.1-0.3-0.1-0.5-0.1c-0.2,0-0.5,0-0.6,0.2c-0.2,0.1-0.3,0.2-0.4,0.4c-0.1,0.1-0.2,0.3-0.2,0.4c0,0.1-0.1,0.3-0.1,0.4V58
|
80 |
+
h-0.9v-5.2H22.5z"/>
|
81 |
+
<path fill="#565656" d="M34.9,58c-0.1,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.4-0.1-0.5-0.2s-0.2-0.3-0.2-0.6c-0.2,0.3-0.5,0.5-0.8,0.6
|
82 |
+
c-0.3,0.1-0.6,0.2-1,0.2c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.1-0.5-0.2s-0.3-0.3-0.4-0.4C30,57.2,30,56.9,30,56.7
|
83 |
+
c0-0.3,0.1-0.5,0.1-0.7c0.1-0.2,0.2-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.6-0.2c0.2,0,0.5-0.1,0.7-0.1
|
84 |
+
c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5c-0.1-0.1-0.2-0.2-0.3-0.3
|
85 |
+
c-0.1-0.1-0.2-0.1-0.4-0.1c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.4-0.4,0.8h-0.9c0-0.3,0.1-0.6,0.2-0.8
|
86 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0s0.4,0.1,0.6,0.2
|
87 |
+
c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7v2.7c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V58z M33.5,55.3
|
88 |
+
c-0.1,0.1-0.2,0.1-0.4,0.2c-0.2,0-0.4,0.1-0.5,0.1s-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3
|
89 |
+
c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0
|
90 |
+
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.2,0.5-0.3c0.1-0.1,0.2-0.2,0.3-0.4s0.1-0.3,0.1-0.4V55.3z"/>
|
91 |
+
<path fill="#565656" d="M35.7,51.9v-1h0.9v1H35.7z M36.5,52.8V58h-0.9v-5.2H36.5z"/>
|
92 |
+
<path fill="#565656" d="M38.8,50.9V58h-0.9v-7.1H38.8z"/>
|
93 |
+
<path fill="#565656" d="M46,50.9l2.8,7.1h-1.1L47,55.8h-3L43.1,58h-1l2.8-7.1H46z M46.7,55l-1.2-3.3h0L44.2,55H46.7z"/>
|
94 |
+
<path fill="#565656" d="M53.1,58v-0.7h0c-0.1,0.3-0.4,0.5-0.7,0.6s-0.6,0.2-1,0.2c-0.4,0-0.7-0.1-1-0.2c-0.3-0.1-0.5-0.3-0.7-0.6
|
95 |
+
c-0.2-0.2-0.3-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1c0-0.4,0-0.7,0.1-1c0.1-0.3,0.2-0.6,0.4-0.9s0.4-0.4,0.7-0.6
|
96 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.1,0,0.3,0,0.4,0s0.3,0.1,0.5,0.1s0.3,0.1,0.4,0.2s0.3,0.2,0.3,0.4h0v-2.7H54V58H53.1z M50.1,56.2
|
97 |
+
c0.1,0.2,0.2,0.4,0.3,0.6c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.2,0.7,0.2c0.3,0,0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.5-0.4
|
98 |
+
c0.1-0.2,0.2-0.4,0.3-0.6s0.1-0.5,0.1-0.7c0-0.3,0-0.5-0.1-0.7c-0.1-0.2-0.2-0.4-0.3-0.6c-0.1-0.2-0.3-0.3-0.5-0.4
|
99 |
+
s-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.3-0.5,0.5s-0.2,0.4-0.3,0.6C50,55,50,55.2,50,55.5
|
100 |
+
C50,55.7,50,55.9,50.1,56.2z"/>
|
101 |
+
<path fill="#565656" d="M59,58v-0.7h0c-0.1,0.3-0.4,0.5-0.7,0.6s-0.6,0.2-1,0.2c-0.4,0-0.7-0.1-1-0.2c-0.3-0.1-0.5-0.3-0.7-0.6
|
102 |
+
c-0.2-0.2-0.3-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1c0-0.4,0-0.7,0.1-1c0.1-0.3,0.2-0.6,0.4-0.9s0.4-0.4,0.7-0.6
|
103 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.1,0,0.3,0,0.4,0s0.3,0.1,0.5,0.1s0.3,0.1,0.4,0.2s0.3,0.2,0.3,0.4h0v-2.7h0.8V58H59z M56,56.2
|
104 |
+
c0.1,0.2,0.2,0.4,0.3,0.6c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.2,0.7,0.2c0.3,0,0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.5-0.4
|
105 |
+
c0.1-0.2,0.2-0.4,0.3-0.6s0.1-0.5,0.1-0.7c0-0.3,0-0.5-0.1-0.7c-0.1-0.2-0.2-0.4-0.3-0.6c-0.1-0.2-0.3-0.3-0.5-0.4
|
106 |
+
s-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.3-0.5,0.5S56,54.5,56,54.7c-0.1,0.2-0.1,0.5-0.1,0.7
|
107 |
+
C55.9,55.7,55.9,55.9,56,56.2z"/>
|
108 |
+
<path fill="#565656" d="M62,52.8v1.1h0c0.2-0.4,0.5-0.7,0.8-0.9c0.3-0.2,0.7-0.3,1.1-0.3v0.9c-0.3,0-0.6,0-0.9,0.1
|
109 |
+
c-0.2,0.1-0.4,0.2-0.6,0.4s-0.3,0.4-0.3,0.7c-0.1,0.3-0.1,0.6-0.1,0.9V58h-0.9v-5.2H62z"/>
|
110 |
+
<path fill="#565656" d="M68,57.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
111 |
+
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
112 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1H65
|
113 |
+
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
114 |
+
s0.4-0.4,0.5-0.8h0.8C68.7,56.9,68.4,57.4,68,57.7z M67.8,54.3c-0.1-0.2-0.2-0.3-0.3-0.5c-0.1-0.1-0.3-0.2-0.5-0.3
|
115 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5C65,54.5,65,54.7,65,54.9h3
|
116 |
+
C67.9,54.7,67.9,54.5,67.8,54.3z"/>
|
117 |
+
<path fill="#565656" d="M70.4,56.8c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.3,0.1,0.4,0.2s0.3,0,0.5,0c0.1,0,0.3,0,0.4,0
|
118 |
+
c0.1,0,0.3-0.1,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.4-0.2-0.6-0.3
|
119 |
+
c-0.2-0.1-0.5-0.1-0.8-0.2s-0.6-0.1-0.8-0.2c-0.2-0.1-0.5-0.2-0.6-0.4s-0.2-0.4-0.2-0.8c0-0.3,0.1-0.5,0.2-0.7
|
120 |
+
c0.1-0.2,0.3-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3s0.5-0.1,0.7-0.1c0.3,0,0.6,0,0.8,0.1c0.2,0,0.5,0.1,0.7,0.3s0.3,0.3,0.5,0.5
|
121 |
+
s0.2,0.5,0.2,0.8h-0.9c0-0.2-0.1-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1s-0.3,0-0.4,0c-0.1,0-0.3,0-0.4,0
|
122 |
+
c-0.1,0-0.2,0.1-0.4,0.1c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0.1,0.3,0.2,0.4c0.1,0.1,0.2,0.2,0.4,0.2
|
123 |
+
c0.2,0.1,0.3,0.1,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.2,0.5,0.3s0.3,0.2,0.4,0.4
|
124 |
+
c0.1,0.2,0.1,0.4,0.1,0.6c0,0.3-0.1,0.6-0.2,0.8c-0.1,0.2-0.3,0.4-0.5,0.5c-0.2,0.1-0.4,0.2-0.7,0.3c-0.3,0-0.5,0.1-0.8,0.1
|
125 |
+
c-0.3,0-0.6,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.4-0.3-0.5-0.5c-0.1-0.2-0.2-0.5-0.2-0.8h0.9
|
126 |
+
C70.3,56.6,70.3,56.7,70.4,56.8z"/>
|
127 |
+
<path fill="#565656" d="M75.4,56.8c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.3,0.1,0.4,0.2s0.3,0,0.5,0c0.1,0,0.3,0,0.4,0
|
128 |
+
c0.1,0,0.3-0.1,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.4-0.2-0.6-0.3
|
129 |
+
c-0.2-0.1-0.5-0.1-0.8-0.2s-0.6-0.1-0.8-0.2c-0.2-0.1-0.5-0.2-0.6-0.4s-0.2-0.4-0.2-0.8c0-0.3,0.1-0.5,0.2-0.7
|
130 |
+
c0.1-0.2,0.3-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3s0.5-0.1,0.7-0.1c0.3,0,0.6,0,0.8,0.1c0.2,0,0.5,0.1,0.7,0.3s0.3,0.3,0.5,0.5
|
131 |
+
s0.2,0.5,0.2,0.8h-0.9c0-0.2-0.1-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1s-0.3,0-0.4,0c-0.1,0-0.3,0-0.4,0
|
132 |
+
c-0.1,0-0.2,0.1-0.4,0.1c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0.1,0.3,0.2,0.4c0.1,0.1,0.2,0.2,0.4,0.2
|
133 |
+
c0.2,0.1,0.3,0.1,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.2,0.5,0.3s0.3,0.2,0.4,0.4
|
134 |
+
c0.1,0.2,0.1,0.4,0.1,0.6c0,0.3-0.1,0.6-0.2,0.8c-0.1,0.2-0.3,0.4-0.5,0.5c-0.2,0.1-0.4,0.2-0.7,0.3c-0.3,0-0.5,0.1-0.8,0.1
|
135 |
+
c-0.3,0-0.6,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.4-0.3-0.5-0.5c-0.1-0.2-0.2-0.5-0.2-0.8h0.9
|
136 |
+
C75.3,56.6,75.3,56.7,75.4,56.8z"/>
|
137 |
+
</g>
|
138 |
+
<g enable-background="new ">
|
139 |
+
<path fill="#565656" d="M19.4,84.8c-0.3-0.2-0.7-0.3-1.2-0.3c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.2c-0.2,0.1-0.3,0.2-0.4,0.4
|
140 |
+
c-0.1,0.2-0.1,0.4-0.1,0.6c0,0.2,0.1,0.4,0.2,0.5c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.2,0.7,0.2c0.3,0.1,0.6,0.1,0.8,0.2
|
141 |
+
c0.3,0.1,0.6,0.1,0.8,0.2c0.3,0.1,0.5,0.2,0.7,0.4c0.2,0.2,0.4,0.3,0.5,0.6s0.2,0.5,0.2,0.9c0,0.4-0.1,0.7-0.3,1
|
142 |
+
c-0.2,0.3-0.4,0.5-0.7,0.7c-0.3,0.2-0.6,0.3-0.9,0.4c-0.3,0.1-0.7,0.1-1,0.1c-0.4,0-0.8,0-1.1-0.2c-0.4-0.1-0.7-0.3-0.9-0.5
|
143 |
+
c-0.3-0.2-0.5-0.5-0.6-0.8c-0.2-0.3-0.2-0.7-0.2-1.1h0.9c0,0.3,0.1,0.6,0.2,0.8s0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.3
|
144 |
+
c0.3,0.1,0.5,0.1,0.8,0.1c0.2,0,0.4,0,0.6-0.1c0.2,0,0.4-0.1,0.6-0.2s0.3-0.2,0.4-0.4c0.1-0.2,0.2-0.4,0.2-0.6
|
145 |
+
c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.2-0.3-0.3-0.5-0.4c-0.2-0.1-0.5-0.2-0.7-0.2c-0.3-0.1-0.6-0.1-0.8-0.2s-0.6-0.1-0.8-0.2
|
146 |
+
s-0.5-0.2-0.7-0.3c-0.2-0.1-0.4-0.3-0.5-0.5c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.7,0.2-0.9c0.1-0.3,0.3-0.5,0.6-0.6
|
147 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.4c0.2,0.2,0.4,0.4,0.6,0.7
|
148 |
+
c0.1,0.3,0.2,0.6,0.2,1h-0.9C19.9,85.4,19.7,85.1,19.4,84.8z"/>
|
149 |
+
<path fill="#565656" d="M25.8,90.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
150 |
+
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
151 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1h-3.9
|
152 |
+
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
153 |
+
s0.4-0.4,0.5-0.8h0.8C26.4,89.9,26.2,90.4,25.8,90.7z M25.6,87.3c-0.1-0.2-0.2-0.3-0.3-0.5c-0.1-0.1-0.3-0.2-0.5-0.3
|
154 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h3
|
155 |
+
C25.7,87.7,25.7,87.5,25.6,87.3z"/>
|
156 |
+
<path fill="#565656" d="M28.4,83.9V91h-0.9v-7.1H28.4z"/>
|
157 |
+
<path fill="#565656" d="M33.4,90.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
158 |
+
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
159 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1h-3.9
|
160 |
+
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
161 |
+
s0.4-0.4,0.5-0.8h0.8C34,89.9,33.8,90.4,33.4,90.7z M33.2,87.3c-0.1-0.2-0.2-0.3-0.3-0.5c-0.1-0.1-0.3-0.2-0.5-0.3
|
162 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h3
|
163 |
+
C33.3,87.7,33.2,87.5,33.2,87.3z"/>
|
164 |
+
<path fill="#565656" d="M38.2,86.7c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.5s-0.2,0.4-0.3,0.6
|
165 |
+
c-0.1,0.2-0.1,0.5-0.1,0.8c0,0.2,0,0.5,0.1,0.7c0.1,0.2,0.1,0.4,0.3,0.6c0.1,0.2,0.3,0.3,0.5,0.4s0.4,0.2,0.7,0.2
|
166 |
+
c0.4,0,0.7-0.1,1-0.3s0.4-0.5,0.4-0.9h0.9c-0.1,0.6-0.3,1.1-0.7,1.5c-0.4,0.3-0.9,0.5-1.6,0.5c-0.4,0-0.7-0.1-1-0.2
|
167 |
+
s-0.6-0.3-0.8-0.5c-0.2-0.2-0.4-0.5-0.5-0.8c-0.1-0.3-0.2-0.7-0.2-1.1s0.1-0.7,0.1-1.1c0.1-0.3,0.3-0.6,0.5-0.9
|
168 |
+
c0.2-0.2,0.5-0.4,0.8-0.6s0.7-0.2,1.1-0.2c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.7,0.3c0.2,0.1,0.4,0.3,0.5,0.6
|
169 |
+
c0.1,0.2,0.2,0.5,0.2,0.8h-0.9C38.5,87.2,38.4,86.9,38.2,86.7z"/>
|
170 |
+
<path fill="#565656" d="M42.7,85.8v0.8h-1v3.2c0,0.1,0,0.2,0,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3,0h0.4
|
171 |
+
V91H42c-0.2,0-0.4,0-0.6,0c-0.2,0-0.3-0.1-0.4-0.2s-0.2-0.2-0.2-0.3c0-0.1-0.1-0.3-0.1-0.6v-3.3h-0.9v-0.8h0.9v-1.5h0.8v1.5H42.7z
|
172 |
+
"/>
|
173 |
+
<path fill="#565656" d="M49,83.9c1.1,0,1.9,0.3,2.5,0.8c0.6,0.6,0.9,1.4,0.9,2.6c0,0.6-0.1,1.1-0.2,1.6c-0.1,0.5-0.3,0.9-0.6,1.2
|
174 |
+
c-0.3,0.3-0.6,0.6-1.1,0.7C50.1,90.9,49.6,91,49,91h-2.5v-7.1H49z M49,90.2c0.1,0,0.2,0,0.4,0s0.3-0.1,0.5-0.1
|
175 |
+
c0.2-0.1,0.4-0.2,0.5-0.3s0.3-0.3,0.5-0.5s0.3-0.5,0.3-0.8c0.1-0.3,0.1-0.7,0.1-1.1c0-0.4,0-0.8-0.1-1.1s-0.2-0.6-0.4-0.9
|
176 |
+
c-0.2-0.2-0.4-0.4-0.7-0.5c-0.3-0.1-0.7-0.2-1.1-0.2h-1.6v5.5H49z"/>
|
177 |
+
<path fill="#565656" d="M57.1,90.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
178 |
+
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
179 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1H54
|
180 |
+
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
181 |
+
s0.4-0.4,0.5-0.8h0.8C57.7,89.9,57.5,90.4,57.1,90.7z M56.9,87.3c-0.1-0.2-0.2-0.3-0.3-0.5c-0.1-0.1-0.3-0.2-0.5-0.3
|
182 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h3
|
183 |
+
C57,87.7,57,87.5,56.9,87.3z"/>
|
184 |
+
<path fill="#565656" d="M59.7,85.8v0.7h0c0.1-0.3,0.4-0.5,0.7-0.6c0.3-0.1,0.6-0.2,1-0.2c0.4,0,0.7,0.1,1,0.2
|
185 |
+
c0.3,0.1,0.5,0.3,0.7,0.6c0.2,0.2,0.3,0.5,0.4,0.9c0.1,0.3,0.1,0.7,0.1,1c0,0.4,0,0.7-0.1,1c-0.1,0.3-0.2,0.6-0.4,0.9
|
186 |
+
s-0.4,0.4-0.7,0.6c-0.3,0.1-0.6,0.2-1,0.2c-0.1,0-0.3,0-0.4,0c-0.2,0-0.3-0.1-0.5-0.1c-0.2-0.1-0.3-0.1-0.4-0.2s-0.3-0.2-0.3-0.4
|
187 |
+
h0V93h-0.9v-7.1H59.7z M62.7,87.7c-0.1-0.2-0.2-0.4-0.3-0.6c-0.1-0.2-0.3-0.3-0.5-0.4c-0.2-0.1-0.4-0.2-0.7-0.2
|
188 |
+
c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.3-0.5,0.4c-0.1,0.2-0.2,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.7c0,0.3,0,0.5,0.1,0.7
|
189 |
+
c0.1,0.2,0.2,0.4,0.3,0.6c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.7-0.2s0.4-0.3,0.5-0.5
|
190 |
+
s0.2-0.4,0.3-0.6c0.1-0.2,0.1-0.5,0.1-0.7C62.8,88.1,62.8,87.9,62.7,87.7z"/>
|
191 |
+
<path fill="#565656" d="M69.3,91c-0.1,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.4-0.1-0.5-0.2S68,90.6,68,90.3c-0.2,0.3-0.5,0.5-0.8,0.6
|
192 |
+
c-0.3,0.1-0.6,0.2-1,0.2c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.1-0.5-0.2s-0.3-0.3-0.4-0.4c-0.1-0.2-0.1-0.4-0.1-0.7
|
193 |
+
c0-0.3,0.1-0.5,0.1-0.7c0.1-0.2,0.2-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.6-0.2c0.2,0,0.5-0.1,0.7-0.1
|
194 |
+
c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5c-0.1-0.1-0.2-0.2-0.3-0.3
|
195 |
+
c-0.1-0.1-0.2-0.1-0.4-0.1c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.4-0.4,0.8h-0.9c0-0.3,0.1-0.6,0.2-0.8
|
196 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0s0.4,0.1,0.6,0.2
|
197 |
+
c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7v2.7c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V91z M67.9,88.3
|
198 |
+
c-0.1,0.1-0.2,0.1-0.4,0.2c-0.2,0-0.4,0.1-0.5,0.1s-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3
|
199 |
+
c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0
|
200 |
+
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.2,0.5-0.3c0.1-0.1,0.2-0.2,0.3-0.4s0.1-0.3,0.1-0.4V88.3z"/>
|
201 |
+
<path fill="#565656" d="M70.9,85.8v1.1h0c0.2-0.4,0.5-0.7,0.8-0.9c0.3-0.2,0.7-0.3,1.1-0.3v0.9c-0.3,0-0.6,0-0.9,0.1
|
202 |
+
c-0.2,0.1-0.4,0.2-0.6,0.4s-0.3,0.4-0.3,0.7c-0.1,0.3-0.1,0.6-0.1,0.9V91h-0.9v-5.2H70.9z"/>
|
203 |
+
<path fill="#565656" d="M75.6,85.8v0.8h-1v3.2c0,0.1,0,0.2,0,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3,0h0.4
|
204 |
+
V91H75c-0.2,0-0.4,0-0.6,0c-0.2,0-0.3-0.1-0.4-0.2s-0.2-0.2-0.2-0.3c0-0.1-0.1-0.3-0.1-0.6v-3.3h-0.9v-0.8h0.9v-1.5h0.8v1.5H75.6z
|
205 |
+
"/>
|
206 |
+
<path fill="#565656" d="M77.4,85.8v0.8h0c0.4-0.6,0.9-0.9,1.7-0.9c0.3,0,0.6,0.1,0.9,0.2c0.3,0.1,0.4,0.4,0.5,0.7
|
207 |
+
c0.2-0.3,0.4-0.5,0.7-0.6s0.6-0.2,0.9-0.2c0.3,0,0.5,0,0.7,0.1s0.4,0.1,0.5,0.3c0.2,0.1,0.3,0.3,0.3,0.5c0.1,0.2,0.1,0.4,0.1,0.7
|
208 |
+
V91H83v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.2c-0.1-0.1-0.3-0.1-0.5-0.1c-0.4,0-0.8,0.1-1,0.4
|
209 |
+
c-0.2,0.2-0.4,0.6-0.4,1V91h-0.9v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.3-0.2
|
210 |
+
c-0.1-0.1-0.3-0.1-0.5-0.1c-0.2,0-0.5,0-0.6,0.2c-0.2,0.1-0.3,0.2-0.4,0.4c-0.1,0.1-0.2,0.3-0.2,0.4c0,0.1-0.1,0.3-0.1,0.4V91
|
211 |
+
h-0.9v-5.2H77.4z"/>
|
212 |
+
<path fill="#565656" d="M88.8,90.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
213 |
+
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
214 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1s0.1,0.7,0.1,1h-3.9
|
215 |
+
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.5,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
216 |
+
c0.2-0.2,0.4-0.4,0.5-0.8h0.8C89.4,89.9,89.1,90.4,88.8,90.7z M88.6,87.3c-0.1-0.2-0.2-0.3-0.3-0.5c-0.1-0.1-0.3-0.2-0.5-0.3
|
217 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h3
|
218 |
+
C88.7,87.7,88.6,87.5,88.6,87.3z"/>
|
219 |
+
<path fill="#565656" d="M91.3,85.8v0.8h0c0.4-0.6,0.9-0.9,1.7-0.9c0.3,0,0.6,0,0.8,0.1c0.2,0.1,0.4,0.2,0.6,0.4
|
220 |
+
c0.1,0.2,0.2,0.4,0.3,0.6c0.1,0.2,0.1,0.5,0.1,0.8V91h-0.8v-3.5c0-0.3-0.1-0.6-0.3-0.8c-0.2-0.2-0.4-0.3-0.8-0.3
|
221 |
+
c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6V91h-0.8v-5.2H91.3z"/>
|
222 |
+
<path fill="#565656" d="M98.2,85.8v0.8h-1v3.2c0,0.1,0,0.2,0,0.2c0,0.1,0,0.1,0.1,0.1s0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3,0h0.4V91
|
223 |
+
h-0.6c-0.2,0-0.4,0-0.6,0s-0.3-0.1-0.4-0.2s-0.2-0.2-0.2-0.3c0-0.1-0.1-0.3-0.1-0.6v-3.3h-0.9v-0.8h0.9v-1.5h0.8v1.5H98.2z"/>
|
224 |
+
</g>
|
225 |
+
<path id="Rectangle_627" fill="#31A651" d="M52,147h60c5.5,0,10,4.5,10,10l0,0c0,5.5-4.5,10-10,10H52c-5.5,0-10-4.5-10-10l0,0
|
226 |
+
C42,151.5,46.5,147,52,147z"/>
|
227 |
+
<g enable-background="new ">
|
228 |
+
<path fill="#FFFFFF" d="M64.6,158.6c0,0.3,0,0.5,0.1,0.7c0.1,0.2,0.2,0.4,0.4,0.5s0.4,0.2,0.6,0.3c0.2,0.1,0.5,0.1,0.7,0.1
|
229 |
+
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.3s0.1-0.3,0.1-0.4c0-0.3-0.1-0.5-0.2-0.6
|
230 |
+
c-0.1-0.1-0.3-0.2-0.4-0.3c-0.3-0.1-0.5-0.2-0.9-0.3c-0.3-0.1-0.8-0.2-1.2-0.3c-0.3-0.1-0.6-0.2-0.8-0.3c-0.2-0.1-0.4-0.3-0.5-0.4
|
231 |
+
c-0.1-0.2-0.2-0.3-0.3-0.5c0-0.2-0.1-0.4-0.1-0.5c0-0.4,0.1-0.7,0.2-0.9c0.1-0.3,0.3-0.5,0.6-0.7c0.2-0.2,0.5-0.3,0.8-0.4
|
232 |
+
c0.3-0.1,0.6-0.1,1-0.1c0.4,0,0.7,0,1.1,0.1s0.6,0.2,0.9,0.4c0.2,0.2,0.4,0.4,0.6,0.7s0.2,0.6,0.2,1h-1.2c0-0.5-0.2-0.8-0.5-1
|
233 |
+
c-0.3-0.2-0.6-0.3-1.1-0.3c-0.1,0-0.3,0-0.5,0s-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.2-0.3,0.3c-0.1,0.1-0.1,0.3-0.1,0.4
|
234 |
+
c0,0.3,0.1,0.5,0.2,0.6s0.4,0.3,0.6,0.3c0,0,0.1,0,0.3,0.1c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.1,0.7,0.2s0.4,0.1,0.5,0.1
|
235 |
+
c0.2,0.1,0.4,0.2,0.6,0.3s0.3,0.3,0.4,0.4c0.1,0.2,0.2,0.3,0.3,0.5s0.1,0.4,0.1,0.6c0,0.4-0.1,0.7-0.2,1c-0.2,0.3-0.4,0.5-0.6,0.7
|
236 |
+
c-0.3,0.2-0.6,0.3-0.9,0.4c-0.3,0.1-0.7,0.1-1,0.1c-0.4,0-0.8,0-1.1-0.2c-0.4-0.1-0.7-0.3-0.9-0.5c-0.3-0.2-0.5-0.5-0.6-0.8
|
237 |
+
c-0.2-0.3-0.2-0.7-0.2-1.1H64.6z"/>
|
238 |
+
<path fill="#FFFFFF" d="M70.2,153.9h1.2v4.2c0,0.2,0,0.5,0,0.7c0,0.2,0.1,0.5,0.2,0.7s0.3,0.4,0.5,0.5c0.2,0.1,0.5,0.2,0.9,0.2
|
239 |
+
s0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.5-0.5c0.1-0.2,0.2-0.4,0.2-0.7c0-0.2,0-0.5,0-0.7v-4.2H76v4.6c0,0.5-0.1,0.9-0.2,1.2
|
240 |
+
s-0.3,0.6-0.6,0.9c-0.3,0.2-0.6,0.4-0.9,0.5s-0.8,0.2-1.2,0.2s-0.8-0.1-1.2-0.2c-0.4-0.1-0.7-0.3-0.9-0.5
|
241 |
+
c-0.3-0.2-0.5-0.5-0.6-0.9c-0.1-0.3-0.2-0.7-0.2-1.2V153.9z"/>
|
242 |
+
<path fill="#FFFFFF" d="M77.5,153.9h3.5c0.6,0,1.2,0.1,1.5,0.4c0.4,0.3,0.6,0.7,0.6,1.3c0,0.4-0.1,0.7-0.3,0.9
|
243 |
+
c-0.2,0.3-0.4,0.5-0.8,0.6v0c0.4,0.1,0.8,0.3,1,0.6s0.3,0.7,0.3,1.2c0,0.3,0,0.5-0.1,0.8s-0.3,0.5-0.5,0.6
|
244 |
+
c-0.2,0.2-0.5,0.3-0.8,0.4c-0.3,0.1-0.7,0.2-1.2,0.2h-3.3V153.9z M78.7,156.8h2c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.4,0.3-0.7
|
245 |
+
c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.1-0.4-0.2-0.8-0.2h-2V156.8z M78.7,160h2.2c0.4,0,0.7-0.1,0.9-0.3c0.2-0.2,0.3-0.5,0.3-0.8
|
246 |
+
c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.5-0.3-0.9-0.3h-2.2V160z"/>
|
247 |
+
<path fill="#FFFFFF" d="M84.5,153.9h1.8l2,5.6h0l1.9-5.6h1.7v7.1h-1.2v-5.5h0l-2,5.5h-1l-2-5.5h0v5.5h-1.2V153.9z"/>
|
248 |
+
<path fill="#FFFFFF" d="M93.4,153.9h1.2v7.1h-1.2V153.9z"/>
|
249 |
+
<path fill="#FFFFFF" d="M95.5,153.9h5.8v1.1H99v6.1h-1.2v-6.1h-2.3V153.9z"/>
|
250 |
+
</g>
|
251 |
+
<g enable-background="new ">
|
252 |
+
<path fill="#565656" d="M90.7,17.9v6.3h3.8V25h-4.7v-7.1H90.7z"/>
|
253 |
+
<path fill="#565656" d="M99.8,25c-0.1,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.4-0.1-0.5-0.2c-0.1-0.1-0.2-0.3-0.2-0.6
|
254 |
+
c-0.2,0.3-0.5,0.5-0.8,0.6c-0.3,0.1-0.6,0.2-1,0.2c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.1-0.5-0.2s-0.3-0.3-0.4-0.4
|
255 |
+
s-0.1-0.4-0.1-0.7c0-0.3,0.1-0.5,0.2-0.7s0.2-0.3,0.4-0.5c0.2-0.1,0.3-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.6-0.2c0.2,0,0.5-0.1,0.7-0.1
|
256 |
+
c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5s-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1
|
257 |
+
c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.4-0.4,0.8h-0.9c0-0.3,0.1-0.6,0.2-0.8c0.1-0.2,0.3-0.4,0.5-0.5
|
258 |
+
c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0s0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7
|
259 |
+
v2.7c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V25z M98.4,22.3c-0.1,0.1-0.2,0.1-0.4,0.2
|
260 |
+
c-0.2,0-0.4,0.1-0.5,0.1c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0.1-0.1,0.3-0.1,0.5
|
261 |
+
c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0c0.3,0,0.5,0,0.7-0.1
|
262 |
+
c0.2-0.1,0.4-0.2,0.5-0.3c0.1-0.1,0.2-0.2,0.3-0.4c0.1-0.1,0.1-0.3,0.1-0.4V22.3z"/>
|
263 |
+
<path fill="#565656" d="M101.2,23.8c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.3,0.1,0.4,0.2s0.3,0,0.5,0c0.1,0,0.3,0,0.4,0
|
264 |
+
c0.1,0,0.3-0.1,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2s0.1-0.2,0.1-0.4c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.4-0.2-0.6-0.3
|
265 |
+
c-0.2-0.1-0.5-0.1-0.8-0.2c-0.3-0.1-0.6-0.1-0.8-0.2c-0.2-0.1-0.5-0.2-0.6-0.4s-0.2-0.4-0.2-0.8c0-0.3,0.1-0.5,0.2-0.7
|
266 |
+
c0.1-0.2,0.3-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3s0.5-0.1,0.7-0.1c0.3,0,0.6,0,0.8,0.1c0.2,0,0.5,0.1,0.7,0.3
|
267 |
+
c0.2,0.1,0.3,0.3,0.5,0.5s0.2,0.5,0.2,0.8h-0.9c0-0.2-0.1-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1
|
268 |
+
s-0.3,0-0.4,0c-0.1,0-0.3,0-0.4,0c-0.1,0-0.2,0.1-0.4,0.1c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0.1,0.3,0.2,0.4
|
269 |
+
s0.2,0.2,0.4,0.2c0.2,0.1,0.3,0.1,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.2,0.5,0.3s0.3,0.2,0.4,0.4
|
270 |
+
c0.1,0.2,0.1,0.4,0.1,0.6c0,0.3-0.1,0.6-0.2,0.8c-0.1,0.2-0.3,0.4-0.5,0.5c-0.2,0.1-0.4,0.2-0.7,0.3s-0.5,0.1-0.8,0.1
|
271 |
+
c-0.3,0-0.6,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.4-0.3-0.5-0.5c-0.1-0.2-0.2-0.5-0.2-0.8h0.8
|
272 |
+
C101.1,23.6,101.1,23.7,101.2,23.8z"/>
|
273 |
+
<path fill="#565656" d="M107.8,19.8v0.8h-1v3.2c0,0.1,0,0.2,0,0.2c0,0.1,0,0.1,0.1,0.1s0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3,0h0.4V25
|
274 |
+
h-0.6c-0.2,0-0.4,0-0.6,0s-0.3-0.1-0.4-0.2s-0.2-0.2-0.2-0.3c0-0.1-0.1-0.3-0.1-0.6v-3.3H105v-0.8h0.9v-1.5h0.8v1.5H107.8z"/>
|
275 |
+
<path fill="#565656" d="M112.6,17.9l3.8,5.8h0v-5.8h0.9V25h-1l-3.7-5.7h0V25h-0.9v-7.1H112.6z"/>
|
276 |
+
<path fill="#565656" d="M123.3,25c-0.1,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.4-0.1-0.5-0.2c-0.1-0.1-0.2-0.3-0.2-0.6
|
277 |
+
c-0.2,0.3-0.5,0.5-0.8,0.6c-0.3,0.1-0.6,0.2-1,0.2c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.1-0.5-0.2s-0.3-0.3-0.4-0.4
|
278 |
+
s-0.1-0.4-0.1-0.7c0-0.3,0.1-0.5,0.2-0.7s0.2-0.3,0.4-0.5c0.2-0.1,0.3-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.6-0.2c0.2,0,0.5-0.1,0.7-0.1
|
279 |
+
c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5s-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1
|
280 |
+
c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.4-0.4,0.8h-0.9c0-0.3,0.1-0.6,0.2-0.8c0.1-0.2,0.3-0.4,0.5-0.5
|
281 |
+
c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0s0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7
|
282 |
+
v2.7c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V25z M121.9,22.3c-0.1,0.1-0.2,0.1-0.4,0.2
|
283 |
+
c-0.2,0-0.4,0.1-0.5,0.1c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0.1-0.1,0.3-0.1,0.5
|
284 |
+
c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0c0.3,0,0.5,0,0.7-0.1
|
285 |
+
c0.2-0.1,0.4-0.2,0.5-0.3c0.1-0.1,0.2-0.2,0.3-0.4c0.1-0.1,0.1-0.3,0.1-0.4V22.3z"/>
|
286 |
+
<path fill="#565656" d="M124.9,19.8v0.8h0c0.4-0.6,0.9-0.9,1.7-0.9c0.3,0,0.6,0.1,0.9,0.2c0.3,0.1,0.4,0.4,0.5,0.7
|
287 |
+
c0.2-0.3,0.4-0.5,0.7-0.6s0.6-0.2,0.9-0.2c0.3,0,0.5,0,0.7,0.1s0.4,0.1,0.5,0.3c0.1,0.1,0.3,0.3,0.4,0.5c0.1,0.2,0.1,0.4,0.1,0.7
|
288 |
+
V25h-0.9v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.3-0.2c-0.1-0.1-0.3-0.1-0.5-0.1c-0.4,0-0.8,0.1-1,0.4
|
289 |
+
c-0.2,0.2-0.4,0.6-0.4,1V25h-0.8v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.3-0.2
|
290 |
+
c-0.1-0.1-0.3-0.1-0.5-0.1c-0.2,0-0.5,0-0.6,0.2c-0.2,0.1-0.3,0.2-0.4,0.4c-0.1,0.1-0.2,0.3-0.2,0.4c0,0.1-0.1,0.3-0.1,0.4V25
|
291 |
+
h-0.8v-5.2H124.9z"/>
|
292 |
+
<path fill="#565656" d="M136.3,24.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
293 |
+
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
294 |
+
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1h-3.9
|
295 |
+
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.5,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
296 |
+
s0.4-0.4,0.5-0.8h0.8C136.9,23.9,136.7,24.4,136.3,24.7z M136.1,21.3c-0.1-0.2-0.2-0.3-0.3-0.5s-0.3-0.2-0.5-0.3
|
297 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h3
|
298 |
+
C136.2,21.7,136.2,21.5,136.1,21.3z"/>
|
299 |
+
</g>
|
300 |
+
</g>
|
301 |
+
</svg>
|
templates/base.php
ADDED
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
namespace MetForm\Templates;
|
3 |
+
defined( 'ABSPATH' ) || exit;
|
4 |
+
|
5 |
+
Class Base{
|
6 |
+
use \MetForm\Traits\Singleton;
|
7 |
+
|
8 |
+
public function get_templates(){
|
9 |
+
return [
|
10 |
+
1 => [
|
11 |
+
'id' => 1,
|
12 |
+
'title' => 'Simple Contact Form 1',
|
13 |
+
'preview-thumb' => \MetForm\Plugin::instance()->plugin_url() . 'templates/1/preview-thumb.svg',
|
14 |
+
'preview-large' => \MetForm\Plugin::instance()->plugin_url() . 'templates/1/preview-large.svg',
|
15 |
+
'file' => \MetForm\Plugin::instance()->plugin_dir() . 'templates/1/content.json',
|
16 |
+
],
|
17 |
+
2 => [
|
18 |
+
'id' => 2,
|
19 |
+
'title' => 'Simple Contact Form 2',
|
20 |
+
'preview-thumb' => \MetForm\Plugin::instance()->plugin_url() . 'templates/2/preview-thumb.svg',
|
21 |
+
'preview-large' => \MetForm\Plugin::instance()->plugin_url() . 'templates/2/preview-large.svg',
|
22 |
+
'file' => \MetForm\Plugin::instance()->plugin_dir() . 'templates/2/content.json',
|
23 |
+
],
|
24 |
+
3 => [
|
25 |
+
'id' => 3,
|
26 |
+
'title' => 'Booking form',
|
27 |
+
'preview-thumb' => \MetForm\Plugin::instance()->plugin_url() . 'templates/3/preview-thumb.svg',
|
28 |
+
'preview-large' => \MetForm\Plugin::instance()->plugin_url() . 'templates/3/preview-large.svg',
|
29 |
+
'file' => \MetForm\Plugin::instance()->plugin_dir() . 'templates/3/content.json',
|
30 |
+
],
|
31 |
+
4 => [
|
32 |
+
'id' => 4,
|
33 |
+
'title' => 'Job application form',
|
34 |
+
'preview-thumb' => \MetForm\Plugin::instance()->plugin_url() . 'templates/4/preview-thumb.svg',
|
35 |
+
'preview-large' => \MetForm\Plugin::instance()->plugin_url() . 'templates/4/preview-large.svg',
|
36 |
+
'file' => \MetForm\Plugin::instance()->plugin_dir() . 'templates/4/content.json',
|
37 |
+
],
|
38 |
+
5 => [
|
39 |
+
'id' => 5,
|
40 |
+
'title' => 'Support form',
|
41 |
+
'preview-thumb' => \MetForm\Plugin::instance()->plugin_url() . 'templates/5/preview-thumb.svg',
|
42 |
+
'preview-large' => \MetForm\Plugin::instance()->plugin_url() . 'templates/5/preview-large.svg',
|
43 |
+
'file' => \MetForm\Plugin::instance()->plugin_dir() . 'templates/5/content.json',
|
44 |
+
],
|
45 |
+
];
|
46 |
+
}
|
47 |
+
|
48 |
+
public function get_template_contents($id){
|
49 |
+
if(!array_key_exists($id, $this->get_templates()) || !file_exists($this->get_templates()[$id]['file'])){
|
50 |
+
return null;
|
51 |
+
}
|
52 |
+
|
53 |
+
$content = file_get_contents($this->get_templates()[$id]['file']);
|
54 |
+
$content = json_decode($content);
|
55 |
+
|
56 |
+
return (!isset($content->content)) ? null : $content->content;
|
57 |
+
}
|
58 |
+
|
59 |
+
}
|
traits/common-controls.php
CHANGED
@@ -89,7 +89,7 @@ trait Common_Controls{
|
|
89 |
'type' => Controls_Manager::TEXT,
|
90 |
'default' => $this->get_name(),
|
91 |
'title' => esc_html__( 'Enter here name of the input', 'metform' ),
|
92 |
-
'description' => esc_html__('Name is must required. Enter name without space or any special character. use only hyphen (
|
93 |
]
|
94 |
);
|
95 |
}
|
@@ -137,21 +137,21 @@ trait Common_Controls{
|
|
137 |
|
138 |
if( in_array('MAX_MIN',$param) ){
|
139 |
$this->add_control(
|
140 |
-
'
|
141 |
[
|
142 |
-
'label' => esc_html__( '
|
143 |
'type' => Controls_Manager::NUMBER,
|
144 |
'step' => 1,
|
145 |
-
'default' =>
|
146 |
]
|
147 |
);
|
148 |
$this->add_control(
|
149 |
-
'
|
150 |
[
|
151 |
-
'label' => esc_html__( '
|
152 |
'type' => Controls_Manager::NUMBER,
|
153 |
'step' => 1,
|
154 |
-
'default' =>
|
155 |
]
|
156 |
);
|
157 |
}
|
@@ -226,7 +226,7 @@ trait Common_Controls{
|
|
226 |
$this->add_control(
|
227 |
'mf_input_label_width',
|
228 |
[
|
229 |
-
'label' => esc_html__( 'Width', '
|
230 |
'type' => Controls_Manager::SLIDER,
|
231 |
'size_units' => [ 'px' ],
|
232 |
'range' => [
|
89 |
'type' => Controls_Manager::TEXT,
|
90 |
'default' => $this->get_name(),
|
91 |
'title' => esc_html__( 'Enter here name of the input', 'metform' ),
|
92 |
+
'description' => esc_html__('Name is must required. Enter name without space or any special character. use only underscore/ hyphen (_/-) for multiple word.', 'metform'),
|
93 |
]
|
94 |
);
|
95 |
}
|
137 |
|
138 |
if( in_array('MAX_MIN',$param) ){
|
139 |
$this->add_control(
|
140 |
+
'mf_input_min_length',
|
141 |
[
|
142 |
+
'label' => esc_html__( 'Min Length', 'metform' ),
|
143 |
'type' => Controls_Manager::NUMBER,
|
144 |
'step' => 1,
|
145 |
+
'default' => 8,
|
146 |
]
|
147 |
);
|
148 |
$this->add_control(
|
149 |
+
'mf_input_max_length',
|
150 |
[
|
151 |
+
'label' => esc_html__( 'Max Length', 'metform' ),
|
152 |
'type' => Controls_Manager::NUMBER,
|
153 |
'step' => 1,
|
154 |
+
'default' => 30,
|
155 |
]
|
156 |
);
|
157 |
}
|
226 |
$this->add_control(
|
227 |
'mf_input_label_width',
|
228 |
[
|
229 |
+
'label' => esc_html__( 'Width', 'metform' ),
|
230 |
'type' => Controls_Manager::SLIDER,
|
231 |
'size_units' => [ 'px' ],
|
232 |
'range' => [
|
traits/conditional-controls.php
ADDED
@@ -0,0 +1,157 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
namespace MetForm\Traits;
|
3 |
+
|
4 |
+
use \Elementor\Controls_Manager;
|
5 |
+
use \Elementor\Repeater;
|
6 |
+
|
7 |
+
defined( 'ABSPATH' ) || exit;
|
8 |
+
|
9 |
+
/*
|
10 |
+
* This is a global conditional widget control trait.
|
11 |
+
* There are some different fucntions for different control section.
|
12 |
+
* For registering any conditional widget just use this trait and call control section function which you want to use.
|
13 |
+
*/
|
14 |
+
|
15 |
+
trait Conditional_Controls{
|
16 |
+
|
17 |
+
public function input_conditional_control(){
|
18 |
+
if(!class_exists('\MetForm\Base\Package')){
|
19 |
+
return;
|
20 |
+
}
|
21 |
+
|
22 |
+
$this->start_controls_section(
|
23 |
+
'condition_section',
|
24 |
+
[
|
25 |
+
'label' => esc_html__( 'Conditional logic', 'metform' ),
|
26 |
+
'tab' => Controls_Manager::TAB_CONTENT,
|
27 |
+
]
|
28 |
+
);
|
29 |
+
|
30 |
+
$this->add_control(
|
31 |
+
'mf_conditional_logic_form_enable',
|
32 |
+
[
|
33 |
+
'label' => esc_html__( 'Enable', 'metform' ),
|
34 |
+
'type' => Controls_Manager::SWITCHER,
|
35 |
+
'default' => '',
|
36 |
+
'description' => esc_html__( 'This feature only works on the frontend.', 'metform' ),
|
37 |
+
'label_on' => 'Yes',
|
38 |
+
'label_off' => 'No',
|
39 |
+
'return_value' => 'yes',
|
40 |
+
]
|
41 |
+
);
|
42 |
+
|
43 |
+
$this->add_control(
|
44 |
+
'mf_conditional_logic_form_and_or_operators',
|
45 |
+
[
|
46 |
+
'label' => esc_html__( 'Condition match criteria', 'metform' ),
|
47 |
+
'type' => Controls_Manager::SELECT,
|
48 |
+
'label_block' => true,
|
49 |
+
'options' => [
|
50 |
+
'or' => esc_html__( 'Any', 'metform' ),
|
51 |
+
'and' => esc_html__( 'All', 'metform' ),
|
52 |
+
],
|
53 |
+
'default' => 'or',
|
54 |
+
'condition' => [
|
55 |
+
'mf_conditional_logic_form_enable' => 'yes',
|
56 |
+
],
|
57 |
+
]
|
58 |
+
);
|
59 |
+
|
60 |
+
$repeater = new Repeater();
|
61 |
+
|
62 |
+
$repeater->add_control(
|
63 |
+
'mf_conditional_logic_form_if',
|
64 |
+
[
|
65 |
+
'label' => esc_html__( 'If', 'metform' ),
|
66 |
+
'label_block' => true,
|
67 |
+
'type' => Controls_Manager::TEXT,
|
68 |
+
'placeholder' => esc_html__( 'Input field name', 'metform' ),
|
69 |
+
]
|
70 |
+
);
|
71 |
+
|
72 |
+
$repeater->add_control(
|
73 |
+
'mf_conditional_logic_form_comparison_operators',
|
74 |
+
[
|
75 |
+
'label' => esc_html__( 'Match ( comparison )', 'metform' ),
|
76 |
+
'type' => Controls_Manager::SELECT,
|
77 |
+
'label_block' => true,
|
78 |
+
'options' => [
|
79 |
+
'not-empty' => esc_html__( 'not empty', 'metform' ),
|
80 |
+
'empty' => esc_html__( 'empty', 'metform' ),
|
81 |
+
'=' => esc_html__( 'equals', 'metform' ),
|
82 |
+
'!=' => esc_html__( 'not equals', 'metform' ),
|
83 |
+
'>' => esc_html__( 'greater than', 'metform' ),
|
84 |
+
'>=' => esc_html__( 'greater than equal', 'metform' ),
|
85 |
+
'<' => esc_html__( 'smaller than', 'metform' ),
|
86 |
+
'<=' => esc_html__( 'smaller than equal', 'metform' ),
|
87 |
+
'checked' => esc_html__( 'checked', 'metform' ),
|
88 |
+
'unchecked' => esc_html__( 'unchecked', 'metform' ),
|
89 |
+
],
|
90 |
+
'default' => [
|
91 |
+
'not-empty',
|
92 |
+
],
|
93 |
+
]
|
94 |
+
);
|
95 |
+
|
96 |
+
$repeater->add_control(
|
97 |
+
'mf_conditional_logic_form_value',
|
98 |
+
[
|
99 |
+
'label' => esc_html__( 'Match value', 'metform' ),
|
100 |
+
'type' => Controls_Manager::TEXT,
|
101 |
+
'label_block' => true,
|
102 |
+
'placeholder' => esc_html__( '50', 'metform' ),
|
103 |
+
'condition' => [
|
104 |
+
'mf_conditional_logic_form_comparison_operators' => ['=','!=','>','>=','<','<=','contains'],
|
105 |
+
],
|
106 |
+
]
|
107 |
+
);
|
108 |
+
|
109 |
+
$repeater->add_control(
|
110 |
+
'mf_conditional_logic_form_action',
|
111 |
+
[
|
112 |
+
'label' => esc_html__( 'Do', 'metform' ),
|
113 |
+
'label_block' => true,
|
114 |
+
'type' => Controls_Manager::SELECT,
|
115 |
+
'multiple' => true,
|
116 |
+
'options' => [
|
117 |
+
'show' => 'Show this field',
|
118 |
+
'hide' => 'Hide this field',
|
119 |
+
'set_value' => 'Set Value',
|
120 |
+
],
|
121 |
+
'default' => [
|
122 |
+
'show',
|
123 |
+
],
|
124 |
+
]
|
125 |
+
);
|
126 |
+
|
127 |
+
$repeater->add_control(
|
128 |
+
'mf_conditional_logic_form_set_value',
|
129 |
+
[
|
130 |
+
'label' => esc_html__( 'Value for set', 'metform' ),
|
131 |
+
'type' => Controls_Manager::TEXT,
|
132 |
+
'placeholder' => esc_html__( 'Enter value for set', 'metform' ),
|
133 |
+
'description' => esc_html__( 'E.g 100, name, anything', 'metform' ),
|
134 |
+
'condition' => [
|
135 |
+
'mf_conditional_logic_form_action' => 'set_value',
|
136 |
+
],
|
137 |
+
]
|
138 |
+
);
|
139 |
+
|
140 |
+
$this->add_control(
|
141 |
+
'mf_conditional_logic_form_list',
|
142 |
+
array(
|
143 |
+
'type' => Controls_Manager::REPEATER,
|
144 |
+
'fields' => array_values( $repeater->get_controls() ),
|
145 |
+
'frontend_available' => true,
|
146 |
+
'condition' => [
|
147 |
+
'mf_conditional_logic_form_enable' => 'yes',
|
148 |
+
],
|
149 |
+
'title_field' => '{{{ mf_conditional_logic_form_if }}} {{{ mf_conditional_logic_form_comparison_operators }}} {{{ mf_conditional_logic_form_value }}}',
|
150 |
+
)
|
151 |
+
);
|
152 |
+
|
153 |
+
$this->end_controls_section();
|
154 |
+
|
155 |
+
}
|
156 |
+
|
157 |
+
}
|
utils/util.php
CHANGED
@@ -227,11 +227,12 @@ class Util{
|
|
227 |
action="<?php echo esc_attr($rest_url."metform/v1/entries/insert/".$form_id); ?>"
|
228 |
method="POST"
|
229 |
class="metform-form-content"
|
230 |
-
|
231 |
enctype="multipart/form-data"
|
232 |
>
|
|
|
233 |
<?php
|
234 |
-
wp_nonce_field('form_nonce', 'form_nonce');
|
235 |
if(is_numeric($form)){
|
236 |
echo \MetForm\Utils\Util::render_elementor_content($form);
|
237 |
}else{
|
227 |
action="<?php echo esc_attr($rest_url."metform/v1/entries/insert/".$form_id); ?>"
|
228 |
method="POST"
|
229 |
class="metform-form-content"
|
230 |
+
data-site-key="<?php echo esc_attr($site_key); ?>"
|
231 |
enctype="multipart/form-data"
|
232 |
>
|
233 |
+
<input type="hidden" id="form_nonce-<?php echo esc_attr($form_unique_name); ?>" name="form_nonce" value="<?php echo esc_attr(wp_create_nonce( 'form_nonce' )); ?>" />
|
234 |
<?php
|
235 |
+
//wp_nonce_field('form_nonce', 'form_nonce');
|
236 |
if(is_numeric($form)){
|
237 |
echo \MetForm\Utils\Util::render_elementor_content($form);
|
238 |
}else{
|
widgets/button/button.php
CHANGED
@@ -21,6 +21,10 @@ Class MetForm_Input_Button extends Widget_Base{
|
|
21 |
public function get_categories() {
|
22 |
return [ 'metform' ];
|
23 |
}
|
|
|
|
|
|
|
|
|
24 |
|
25 |
protected function _register_controls() {
|
26 |
|
21 |
public function get_categories() {
|
22 |
return [ 'metform' ];
|
23 |
}
|
24 |
+
|
25 |
+
public function get_keywords() {
|
26 |
+
return ['metform', 'button', 'submit', 'submit button'];
|
27 |
+
}
|
28 |
|
29 |
protected function _register_controls() {
|
30 |
|
widgets/checkbox/checkbox.php
CHANGED
@@ -5,6 +5,7 @@ defined( 'ABSPATH' ) || exit;
|
|
5 |
Class MetForm_Input_Checkbox extends Widget_Base{
|
6 |
|
7 |
use \MetForm\Traits\Common_Controls;
|
|
|
8 |
|
9 |
public function get_name() {
|
10 |
return 'mf-checkbox';
|
@@ -21,6 +22,10 @@ Class MetForm_Input_Checkbox extends Widget_Base{
|
|
21 |
return [ 'metform' ];
|
22 |
}
|
23 |
|
|
|
|
|
|
|
|
|
24 |
protected function _register_controls() {
|
25 |
|
26 |
$this->start_controls_section(
|
@@ -86,7 +91,7 @@ Class MetForm_Input_Checkbox extends Widget_Base{
|
|
86 |
'type' => Controls_Manager::TEXT,
|
87 |
'default' => $this->get_name(),
|
88 |
'title' => esc_html__( 'Enter here name of the input', 'metform' ),
|
89 |
-
'description' => esc_html__('Name is must required. Enter name without space or any special character. use only hyphen (
|
90 |
]
|
91 |
);
|
92 |
|
@@ -165,17 +170,17 @@ Class MetForm_Input_Checkbox extends Widget_Base{
|
|
165 |
'default' => [
|
166 |
[
|
167 |
'mf_input_option_text' => 'Option 1',
|
168 |
-
'mf_input_option_value' => '
|
169 |
'mf_input_option_status' => '',
|
170 |
],
|
171 |
[
|
172 |
'mf_input_option_text' => 'Option 2',
|
173 |
-
'mf_input_option_value' => '
|
174 |
'mf_input_option_status' => '',
|
175 |
],
|
176 |
[
|
177 |
'mf_input_option_text' => 'Option 3',
|
178 |
-
'mf_input_option_value' => '
|
179 |
'mf_input_option_status' => '',
|
180 |
],
|
181 |
],
|
@@ -197,7 +202,7 @@ Class MetForm_Input_Checkbox extends Widget_Base{
|
|
197 |
$this->end_controls_section();
|
198 |
|
199 |
$this->start_controls_section(
|
200 |
-
'
|
201 |
[
|
202 |
'label' => esc_html__( 'Settings', 'metform' ),
|
203 |
'tab' => Controls_Manager::TAB_CONTENT,
|
@@ -208,6 +213,10 @@ Class MetForm_Input_Checkbox extends Widget_Base{
|
|
208 |
|
209 |
$this->end_controls_section();
|
210 |
|
|
|
|
|
|
|
|
|
211 |
$this->start_controls_section(
|
212 |
'label_section',
|
213 |
[
|
@@ -387,7 +396,7 @@ Class MetForm_Input_Checkbox extends Widget_Base{
|
|
387 |
'name' => 'mf_input_typgraphy',
|
388 |
'label' => esc_html__( 'Typography', 'metform' ),
|
389 |
'scheme' => Scheme_Typography::TYPOGRAPHY_1,
|
390 |
-
'selector' => '{{WRAPPER}} .mf-checkbox, {{WRAPPER}} .mf-checkbox-option input[type="checkbox"] + span:before',
|
391 |
]
|
392 |
);
|
393 |
|
@@ -448,11 +457,13 @@ Class MetForm_Input_Checkbox extends Widget_Base{
|
|
448 |
$settings = $this->get_settings_for_display();
|
449 |
extract($settings);
|
450 |
|
451 |
-
|
|
|
|
|
452 |
|
453 |
if($mf_input_label_status == 'yes'){
|
454 |
?>
|
455 |
-
<label class="mf-checkbox-label mf-input-label" for="
|
456 |
<span class="mf-input-required-indicator"><?php echo esc_html(($mf_input_required === 'yes') ? '*' : ''); ?></span>
|
457 |
</label>
|
458 |
<?php
|
@@ -464,7 +475,7 @@ Class MetForm_Input_Checkbox extends Widget_Base{
|
|
464 |
?>
|
465 |
<div class="mf-checkbox-option <?php echo esc_attr($option['mf_input_option_status']); ?>">
|
466 |
<label><?php echo esc_html(($mf_input_option_text_position == 'before') ? $option['mf_input_option_text']:''); ?>
|
467 |
-
<input type="checkbox" class="mf-checkbox-input" name="<?php echo esc_attr($mf_input_name); ?>[]"
|
468 |
value="<?php echo esc_attr($option['mf_input_option_value']); ?>"
|
469 |
<?php echo esc_attr($option['mf_input_option_status']); ?>
|
470 |
>
|
5 |
Class MetForm_Input_Checkbox extends Widget_Base{
|
6 |
|
7 |
use \MetForm\Traits\Common_Controls;
|
8 |
+
use \MetForm\Traits\Conditional_Controls;
|
9 |
|
10 |
public function get_name() {
|
11 |
return 'mf-checkbox';
|
22 |
return [ 'metform' ];
|
23 |
}
|
24 |
|
25 |
+
public function get_keywords() {
|
26 |
+
return ['metform', 'input', 'checkbox'];
|
27 |
+
}
|
28 |
+
|
29 |
protected function _register_controls() {
|
30 |
|
31 |
$this->start_controls_section(
|
91 |
'type' => Controls_Manager::TEXT,
|
92 |
'default' => $this->get_name(),
|
93 |
'title' => esc_html__( 'Enter here name of the input', 'metform' ),
|
94 |
+
'description' => esc_html__('Name is must required. Enter name without space or any special character. use only underscore/ hyphen (_/-) for multiple word.', 'metform'),
|
95 |
]
|
96 |
);
|
97 |
|
170 |
'default' => [
|
171 |
[
|
172 |
'mf_input_option_text' => 'Option 1',
|
173 |
+
'mf_input_option_value' => 'value-1',
|
174 |
'mf_input_option_status' => '',
|
175 |
],
|
176 |
[
|
177 |
'mf_input_option_text' => 'Option 2',
|
178 |
+
'mf_input_option_value' => 'value-2',
|
179 |
'mf_input_option_status' => '',
|
180 |
],
|
181 |
[
|
182 |
'mf_input_option_text' => 'Option 3',
|
183 |
+
'mf_input_option_value' => 'value-3',
|
184 |
'mf_input_option_status' => '',
|
185 |
],
|
186 |
],
|
202 |
$this->end_controls_section();
|
203 |
|
204 |
$this->start_controls_section(
|
205 |
+
'settings_section',
|
206 |
[
|
207 |
'label' => esc_html__( 'Settings', 'metform' ),
|
208 |
'tab' => Controls_Manager::TAB_CONTENT,
|
213 |
|
214 |
$this->end_controls_section();
|
215 |
|
216 |
+
if(class_exists('\MetForm\Base\Package')){
|
217 |
+
$this->input_conditional_control();
|
218 |
+
}
|
219 |
+
|
220 |
$this->start_controls_section(
|
221 |
'label_section',
|
222 |
[
|
396 |
'name' => 'mf_input_typgraphy',
|
397 |
'label' => esc_html__( 'Typography', 'metform' ),
|
398 |
'scheme' => Scheme_Typography::TYPOGRAPHY_1,
|
399 |
+
'selector' => '{{WRAPPER}} .mf-checkbox, {{WRAPPER}} .mf-checkbox-option input[type="checkbox"] + span:before, {{WRAPPER}} .mf-checkbox-option input[type="checkbox"] + span',
|
400 |
]
|
401 |
);
|
402 |
|
457 |
$settings = $this->get_settings_for_display();
|
458 |
extract($settings);
|
459 |
|
460 |
+
$class = (isset($settings['mf_conditional_logic_form_list']) ? 'mf-conditional-input' : '');
|
461 |
+
|
462 |
+
echo "<div class='mf-input-wrapper ".$class."' data-mf-form-conditional-logic-requirement='".(isset($mf_conditional_logic_form_and_or_operators) ? $mf_conditional_logic_form_and_or_operators : '')."'>";
|
463 |
|
464 |
if($mf_input_label_status == 'yes'){
|
465 |
?>
|
466 |
+
<label class="mf-checkbox-label mf-input-label" for="mf-input-checkbox-<?php echo esc_attr($this->get_id()); ?>"><?php echo esc_html($mf_input_label); ?>
|
467 |
<span class="mf-input-required-indicator"><?php echo esc_html(($mf_input_required === 'yes') ? '*' : ''); ?></span>
|
468 |
</label>
|
469 |
<?php
|
475 |
?>
|
476 |
<div class="mf-checkbox-option <?php echo esc_attr($option['mf_input_option_status']); ?>">
|
477 |
<label><?php echo esc_html(($mf_input_option_text_position == 'before') ? $option['mf_input_option_text']:''); ?>
|
478 |
+
<input type="checkbox" class="mf-input mf-checkbox-input" name="<?php echo esc_attr($mf_input_name); ?>[]"
|
479 |
value="<?php echo esc_attr($option['mf_input_option_value']); ?>"
|
480 |
<?php echo esc_attr($option['mf_input_option_status']); ?>
|
481 |
>
|
widgets/date/date.php
CHANGED
@@ -3,7 +3,8 @@ namespace Elementor;
|
|
3 |
defined( 'ABSPATH' ) || exit;
|
4 |
|
5 |
Class MetForm_Input_Date extends Widget_Base{
|
6 |
-
|
|
|
7 |
|
8 |
public function get_name() {
|
9 |
return 'mf-date';
|
@@ -20,6 +21,10 @@ Class MetForm_Input_Date extends Widget_Base{
|
|
20 |
public function get_categories() {
|
21 |
return [ 'metform' ];
|
22 |
}
|
|
|
|
|
|
|
|
|
23 |
|
24 |
protected function _register_controls() {
|
25 |
|
@@ -36,7 +41,7 @@ Class MetForm_Input_Date extends Widget_Base{
|
|
36 |
$this->end_controls_section();
|
37 |
|
38 |
$this->start_controls_section(
|
39 |
-
'
|
40 |
[
|
41 |
'label' => esc_html__( 'Settings', 'metform' ),
|
42 |
'tab' => Controls_Manager::TAB_CONTENT,
|
@@ -257,6 +262,9 @@ Class MetForm_Input_Date extends Widget_Base{
|
|
257 |
|
258 |
$this->end_controls_section();
|
259 |
|
|
|
|
|
|
|
260 |
|
261 |
$this->start_controls_section(
|
262 |
'label_section',
|
@@ -281,7 +289,18 @@ Class MetForm_Input_Date extends Widget_Base{
|
|
281 |
]
|
282 |
);
|
283 |
|
284 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
285 |
|
286 |
$this->end_controls_section();
|
287 |
|
@@ -311,8 +330,10 @@ Class MetForm_Input_Date extends Widget_Base{
|
|
311 |
(($mf_input_month_select == 'yes') ? 'm' :
|
312 |
(($mf_input_date_select == 'yes') ? 'd' : 'd-m-Y')))))));
|
313 |
|
314 |
-
|
315 |
-
|
|
|
|
|
316 |
if($mf_input_label_status == 'yes'){
|
317 |
?>
|
318 |
<label class="mf-input-label" for="mf-input-date-<?php echo esc_attr($this->get_id()); ?>"><?php echo esc_html($mf_input_label); ?>
|
@@ -321,13 +342,13 @@ Class MetForm_Input_Date extends Widget_Base{
|
|
321 |
<?php
|
322 |
}
|
323 |
?>
|
324 |
-
<input type="
|
325 |
-
|
326 |
-
|
327 |
-
<?php echo esc_attr(($mf_input_min_date == 'yes') ? 'mfmindatetoday=yes' : ''); ?>
|
328 |
-
<?php echo esc_attr(($mf_input_range_date == 'yes') ? 'mfrangedate=yes' : ''); ?>
|
329 |
-
<?php echo esc_attr(($mf_input_default_date == 'yes') ? 'mfdefaultdate=today' : ''); ?>
|
330 |
-
mf_date_format="<?php echo esc_attr($date_format); ?>"
|
331 |
<?php echo esc_attr(($mf_input_required === 'yes') ? 'required' : ''); ?>
|
332 |
<?php //echo esc_attr($mf_input_readonly_status); ?>
|
333 |
>
|
3 |
defined( 'ABSPATH' ) || exit;
|
4 |
|
5 |
Class MetForm_Input_Date extends Widget_Base{
|
6 |
+
use \MetForm\Traits\Common_Controls;
|
7 |
+
use \MetForm\Traits\Conditional_Controls;
|
8 |
|
9 |
public function get_name() {
|
10 |
return 'mf-date';
|
21 |
public function get_categories() {
|
22 |
return [ 'metform' ];
|
23 |
}
|
24 |
+
|
25 |
+
public function get_keywords() {
|
26 |
+
return ['metform', 'input', 'date', 'calendar'];
|
27 |
+
}
|
28 |
|
29 |
protected function _register_controls() {
|
30 |
|
41 |
$this->end_controls_section();
|
42 |
|
43 |
$this->start_controls_section(
|
44 |
+
'settings_section',
|
45 |
[
|
46 |
'label' => esc_html__( 'Settings', 'metform' ),
|
47 |
'tab' => Controls_Manager::TAB_CONTENT,
|
262 |
|
263 |
$this->end_controls_section();
|
264 |
|
265 |
+
if(class_exists('\MetForm\Base\Package')){
|
266 |
+
$this->input_conditional_control();
|
267 |
+
}
|
268 |
|
269 |
$this->start_controls_section(
|
270 |
'label_section',
|
289 |
]
|
290 |
);
|
291 |
|
292 |
+
$this->input_controls();
|
293 |
+
|
294 |
+
$this->add_group_control(
|
295 |
+
Group_Control_Typography::get_type(),
|
296 |
+
[
|
297 |
+
'name' => 'mf_date_calender_typography',
|
298 |
+
'label' => esc_html__( 'Calendar Typography', 'metform' ),
|
299 |
+
'scheme' => Scheme_Typography::TYPOGRAPHY_1,
|
300 |
+
'selector' => '{{WRAPPER}} .mf-input-wrapper .flatpickr-calendar',
|
301 |
+
'exclude' => [ 'font_size', 'text_decoration', 'line_height', 'letter_spacing' ],
|
302 |
+
]
|
303 |
+
);
|
304 |
|
305 |
$this->end_controls_section();
|
306 |
|
330 |
(($mf_input_month_select == 'yes') ? 'm' :
|
331 |
(($mf_input_date_select == 'yes') ? 'd' : 'd-m-Y')))))));
|
332 |
|
333 |
+
$class = (isset($settings['mf_conditional_logic_form_list']) ? 'mf-conditional-input' : '');
|
334 |
+
|
335 |
+
echo "<div class='mf-input-wrapper ".$class."' data-mf-form-conditional-logic-requirement='".(isset($mf_conditional_logic_form_and_or_operators) ? $mf_conditional_logic_form_and_or_operators : '')."'>";
|
336 |
+
|
337 |
if($mf_input_label_status == 'yes'){
|
338 |
?>
|
339 |
<label class="mf-input-label" for="mf-input-date-<?php echo esc_attr($this->get_id()); ?>"><?php echo esc_html($mf_input_label); ?>
|
342 |
<?php
|
343 |
}
|
344 |
?>
|
345 |
+
<input type="text" class="mf-input mf-date-input" id="mf-input-date-<?php echo esc_attr($this->get_id()); ?>"
|
346 |
+
name="<?php echo esc_attr($mf_input_name); ?>"
|
347 |
+
placeholder="<?php echo esc_html($mf_input_placeholder); ?>"
|
348 |
+
<?php echo esc_attr(($mf_input_min_date == 'yes') ? 'data-mfmindatetoday=yes' : ''); ?>
|
349 |
+
<?php echo esc_attr(($mf_input_range_date == 'yes') ? 'data-mfrangedate=yes' : ''); ?>
|
350 |
+
<?php echo esc_attr(($mf_input_default_date == 'yes') ? 'data-mfdefaultdate=today' : ''); ?>
|
351 |
+
data-mf_date_format="<?php echo esc_attr($date_format); ?>"
|
352 |
<?php echo esc_attr(($mf_input_required === 'yes') ? 'required' : ''); ?>
|
353 |
<?php //echo esc_attr($mf_input_readonly_status); ?>
|
354 |
>
|
widgets/email/email.php
CHANGED
@@ -4,7 +4,8 @@ defined( 'ABSPATH' ) || exit;
|
|
4 |
|
5 |
Class MetForm_Input_Email extends widget_base{
|
6 |
|
7 |
-
|
|
|
8 |
|
9 |
public function get_name() {
|
10 |
return 'mf-email';
|
@@ -21,6 +22,10 @@ Class MetForm_Input_Email extends widget_base{
|
|
21 |
public function get_categories() {
|
22 |
return [ 'metform' ];
|
23 |
}
|
|
|
|
|
|
|
|
|
24 |
|
25 |
protected function _register_controls() {
|
26 |
|
@@ -37,7 +42,7 @@ Class MetForm_Input_Email extends widget_base{
|
|
37 |
$this->end_controls_section();
|
38 |
|
39 |
$this->start_controls_section(
|
40 |
-
'
|
41 |
[
|
42 |
'label' => esc_html__( 'Settings', 'metform' ),
|
43 |
'tab' => Controls_Manager::TAB_CONTENT,
|
@@ -48,6 +53,10 @@ Class MetForm_Input_Email extends widget_base{
|
|
48 |
|
49 |
$this->end_controls_section();
|
50 |
|
|
|
|
|
|
|
|
|
51 |
$this->start_controls_section(
|
52 |
'label_section',
|
53 |
[
|
@@ -105,9 +114,11 @@ Class MetForm_Input_Email extends widget_base{
|
|
105 |
protected function render($instance = []){
|
106 |
|
107 |
$settings = $this->get_settings_for_display();
|
108 |
-
|
109 |
|
110 |
-
|
|
|
|
|
111 |
|
112 |
if($mf_input_label_status == 'yes'){
|
113 |
?>
|
4 |
|
5 |
Class MetForm_Input_Email extends widget_base{
|
6 |
|
7 |
+
use \MetForm\Traits\Common_Controls;
|
8 |
+
use \MetForm\Traits\Conditional_Controls;
|
9 |
|
10 |
public function get_name() {
|
11 |
return 'mf-email';
|
22 |
public function get_categories() {
|
23 |
return [ 'metform' ];
|
24 |
}
|
25 |
+
|
26 |
+
public function get_keywords() {
|
27 |
+
return ['metform', 'input', 'email', 'mail'];
|
28 |
+
}
|
29 |
|
30 |
protected function _register_controls() {
|
31 |
|
42 |
$this->end_controls_section();
|
43 |
|
44 |
$this->start_controls_section(
|
45 |
+
'settings_section',
|
46 |
[
|
47 |
'label' => esc_html__( 'Settings', 'metform' ),
|
48 |
'tab' => Controls_Manager::TAB_CONTENT,
|
53 |
|
54 |
$this->end_controls_section();
|
55 |
|
56 |
+
if(class_exists('\MetForm\Base\Package')){
|
57 |
+
$this->input_conditional_control();
|
58 |
+
}
|
59 |
+
|
60 |
$this->start_controls_section(
|
61 |
'label_section',
|
62 |
[
|
114 |
protected function render($instance = []){
|
115 |
|
116 |
$settings = $this->get_settings_for_display();
|
117 |
+
extract($settings);
|
118 |
|
119 |
+
$class = (isset($settings['mf_conditional_logic_form_list']) ? 'mf-conditional-input' : '');
|
120 |
+
|
121 |
+
echo "<div class='mf-input-wrapper ".$class."' data-mf-form-conditional-logic-requirement='".(isset($mf_conditional_logic_form_and_or_operators) ? $mf_conditional_logic_form_and_or_operators : '')."'>";
|
122 |
|
123 |
if($mf_input_label_status == 'yes'){
|
124 |
?>
|
widgets/file-upload/file-upload.php
CHANGED
@@ -4,7 +4,8 @@ defined( 'ABSPATH' ) || exit;
|
|
4 |
|
5 |
Class MetForm_Input_File_Upload extends Widget_base{
|
6 |
|
7 |
-
|
|
|
8 |
|
9 |
public function get_name() {
|
10 |
return 'mf-file-upload';
|
@@ -22,6 +23,11 @@ Class MetForm_Input_File_Upload extends Widget_base{
|
|
22 |
return [ 'metform' ];
|
23 |
}
|
24 |
|
|
|
|
|
|
|
|
|
|
|
25 |
protected function _register_controls() {
|
26 |
|
27 |
$this->start_controls_section(
|
@@ -37,7 +43,7 @@ Class MetForm_Input_File_Upload extends Widget_base{
|
|
37 |
$this->end_controls_section();
|
38 |
|
39 |
$this->start_controls_section(
|
40 |
-
'
|
41 |
[
|
42 |
'label' => esc_html__( 'Settings', 'metform' ),
|
43 |
'tab' => Controls_Manager::TAB_CONTENT,
|
@@ -112,7 +118,11 @@ Class MetForm_Input_File_Upload extends Widget_base{
|
|
112 |
]
|
113 |
);
|
114 |
|
115 |
-
|
|
|
|
|
|
|
|
|
116 |
|
117 |
$this->start_controls_section(
|
118 |
'label_section',
|
@@ -162,7 +172,9 @@ Class MetForm_Input_File_Upload extends Widget_base{
|
|
162 |
|
163 |
$accept = (is_array($mf_input_file_types)) ? implode(', ', $mf_input_file_types) : '.jpg, .jpeg, .gif, .ico';
|
164 |
|
165 |
-
|
|
|
|
|
166 |
|
167 |
if($mf_input_label_status == 'yes'){
|
168 |
?>
|
4 |
|
5 |
Class MetForm_Input_File_Upload extends Widget_base{
|
6 |
|
7 |
+
use \MetForm\Traits\Common_Controls;
|
8 |
+
use \MetForm\Traits\Conditional_Controls;
|
9 |
|
10 |
public function get_name() {
|
11 |
return 'mf-file-upload';
|
23 |
return [ 'metform' ];
|
24 |
}
|
25 |
|
26 |
+
|
27 |
+
public function get_keywords() {
|
28 |
+
return ['metform', 'input', 'file', 'upload'];
|
29 |
+
}
|
30 |
+
|
31 |
protected function _register_controls() {
|
32 |
|
33 |
$this->start_controls_section(
|
43 |
$this->end_controls_section();
|
44 |
|
45 |
$this->start_controls_section(
|
46 |
+
'settings_section',
|
47 |
[
|
48 |
'label' => esc_html__( 'Settings', 'metform' ),
|
49 |
'tab' => Controls_Manager::TAB_CONTENT,
|
118 |
]
|
119 |
);
|
120 |
|
121 |
+
$this->end_controls_section();
|
122 |
+
|
123 |
+
if(class_exists('\MetForm\Base\Package')){
|
124 |
+
$this->input_conditional_control();
|
125 |
+
}
|
126 |
|
127 |
$this->start_controls_section(
|
128 |
'label_section',
|
172 |
|
173 |
$accept = (is_array($mf_input_file_types)) ? implode(', ', $mf_input_file_types) : '.jpg, .jpeg, .gif, .ico';
|
174 |
|
175 |
+
$class = (isset($settings['mf_conditional_logic_form_list']) ? 'mf-conditional-input' : '');
|
176 |
+
|
177 |
+
echo "<div class='mf-input-wrapper ".$class."' data-mf-form-conditional-logic-requirement='".(isset($mf_conditional_logic_form_and_or_operators) ? $mf_conditional_logic_form_and_or_operators : '')."'>";
|
178 |
|
179 |
if($mf_input_label_status == 'yes'){
|
180 |
?>
|
widgets/form-dynamic.php
CHANGED
@@ -4,14 +4,14 @@ use \MetForm\Controls\Controls_Manager as MetForm_Controls_Manager;
|
|
4 |
|
5 |
defined( 'ABSPATH' ) || exit;
|
6 |
|
7 |
-
class
|
8 |
|
9 |
public function get_name() {
|
10 |
-
return 'metform
|
11 |
}
|
12 |
|
13 |
public function get_title() {
|
14 |
-
return esc_html__( 'MetForm
|
15 |
}
|
16 |
|
17 |
public function show_in_panel() {
|
@@ -22,22 +22,10 @@ class Widget_Met_Form_Dynamic extends Widget_Base {
|
|
22 |
return [ 'metform' ];
|
23 |
}
|
24 |
|
25 |
-
public function
|
26 |
-
|
27 |
-
$args = array(
|
28 |
-
'post_type' => 'metform-form',
|
29 |
-
'post_status' => 'publish',
|
30 |
-
);
|
31 |
-
|
32 |
-
$forms = get_posts( $args );
|
33 |
-
|
34 |
-
foreach($forms as $form){
|
35 |
-
$form_list[$form->ID] = $form->post_title;
|
36 |
-
}
|
37 |
-
|
38 |
-
return $form_list;
|
39 |
}
|
40 |
-
|
41 |
protected function _register_controls() {
|
42 |
|
43 |
$this->start_controls_section(
|
@@ -47,28 +35,27 @@ class Widget_Met_Form_Dynamic extends Widget_Base {
|
|
47 |
'tab' => Controls_Manager::TAB_CONTENT,
|
48 |
]
|
49 |
);
|
50 |
-
|
51 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
$this->add_control(
|
53 |
'mf_form_id',
|
54 |
[
|
55 |
'label' => esc_html__( 'Select Form : ', 'metform' ),
|
56 |
'type' => MetForm_Controls_Manager::FORMPICKER,
|
57 |
'default' => '',
|
58 |
-
'
|
59 |
]
|
60 |
);
|
61 |
|
62 |
-
$this->add_control(
|
63 |
-
'mf_form',
|
64 |
-
[
|
65 |
-
'label' => esc_html__( 'Select Form : ', 'metform' ),
|
66 |
-
'type' => Controls_Manager::TEXT,
|
67 |
-
'default' => '',
|
68 |
-
]
|
69 |
-
);
|
70 |
|
71 |
-
|
72 |
|
73 |
}
|
74 |
|
@@ -76,12 +63,7 @@ class Widget_Met_Form_Dynamic extends Widget_Base {
|
|
76 |
$settings = $this->get_settings_for_display();
|
77 |
// echo \MetForm\Utils\Util::render_form_content($settings['mf_form_id'], $this->get_id());
|
78 |
// echo Widget_Area_Utils::parse( $accorion_content['acc_content'], $this->get_id(), ($i + 1) );
|
79 |
-
echo \MetForm\Controls\Form_Picker_Utils::parse($settings['mf_form_id'], $this->
|
80 |
-
}
|
81 |
-
|
82 |
-
protected function render2() {
|
83 |
-
$this->add_inline_editing_attributes( 'mf_form', 'none' );
|
84 |
-
echo '<div ' . $this->get_render_attribute_string( 'mf_form' ) . '>' . $this->get_settings( 'mf_form' ) . '</div>';
|
85 |
}
|
86 |
|
87 |
protected function _content_dtemplate2() {
|
4 |
|
5 |
defined( 'ABSPATH' ) || exit;
|
6 |
|
7 |
+
class Widget_Met_Form extends Widget_Base {
|
8 |
|
9 |
public function get_name() {
|
10 |
+
return 'metform';
|
11 |
}
|
12 |
|
13 |
public function get_title() {
|
14 |
+
return esc_html__( 'MetForm', 'metform' );
|
15 |
}
|
16 |
|
17 |
public function show_in_panel() {
|
22 |
return [ 'metform' ];
|
23 |
}
|
24 |
|
25 |
+
public function get_keywords() {
|
26 |
+
return ['metform', 'form'];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
}
|
28 |
+
|
29 |
protected function _register_controls() {
|
30 |
|
31 |
$this->start_controls_section(
|
35 |
'tab' => Controls_Manager::TAB_CONTENT,
|
36 |
]
|
37 |
);
|
38 |
+
$this->add_control(
|
39 |
+
'important_note',
|
40 |
+
[
|
41 |
+
'label' => '',
|
42 |
+
'type' => \Elementor\Controls_Manager::RAW_HTML,
|
43 |
+
'raw' => 'See this video tutorial how to use metform. <a href="https://youtu.be/8R4-Q14cu-w" target="_blank">Click here</a>',
|
44 |
+
'content_classes' => 'your-class',
|
45 |
+
]
|
46 |
+
);
|
47 |
$this->add_control(
|
48 |
'mf_form_id',
|
49 |
[
|
50 |
'label' => esc_html__( 'Select Form : ', 'metform' ),
|
51 |
'type' => MetForm_Controls_Manager::FORMPICKER,
|
52 |
'default' => '',
|
53 |
+
'description' => esc_html__( 'Click on the "red" edit icon to edit form content.', 'metform' )
|
54 |
]
|
55 |
);
|
56 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
|
58 |
+
$this->end_controls_section();
|
59 |
|
60 |
}
|
61 |
|
63 |
$settings = $this->get_settings_for_display();
|
64 |
// echo \MetForm\Utils\Util::render_form_content($settings['mf_form_id'], $this->get_id());
|
65 |
// echo Widget_Area_Utils::parse( $accorion_content['acc_content'], $this->get_id(), ($i + 1) );
|
66 |
+
echo \MetForm\Controls\Form_Picker_Utils::parse($settings['mf_form_id'], $this->get_id());
|
|
|
|
|
|
|
|
|
|
|
67 |
}
|
68 |
|
69 |
protected function _content_dtemplate2() {
|
widgets/form.php
CHANGED
@@ -2,14 +2,14 @@
|
|
2 |
namespace Elementor;
|
3 |
defined( 'ABSPATH' ) || exit;
|
4 |
|
5 |
-
class
|
6 |
|
7 |
public function get_name() {
|
8 |
-
return 'metform';
|
9 |
}
|
10 |
|
11 |
public function get_title() {
|
12 |
-
return esc_html__( 'MetForm', 'metform' );
|
13 |
}
|
14 |
|
15 |
public function show_in_panel() {
|
@@ -20,6 +20,10 @@ class Widget_My_Form extends Widget_Base {
|
|
20 |
return [ 'metform' ];
|
21 |
}
|
22 |
|
|
|
|
|
|
|
|
|
23 |
public function get_all_forms(){
|
24 |
$form_list = [];
|
25 |
$args = array(
|
2 |
namespace Elementor;
|
3 |
defined( 'ABSPATH' ) || exit;
|
4 |
|
5 |
+
class Widget_Met_Form_Basic extends Widget_Base {
|
6 |
|
7 |
public function get_name() {
|
8 |
+
return 'metform-basic';
|
9 |
}
|
10 |
|
11 |
public function get_title() {
|
12 |
+
return esc_html__( 'MetForm Basic', 'metform' );
|
13 |
}
|
14 |
|
15 |
public function show_in_panel() {
|
20 |
return [ 'metform' ];
|
21 |
}
|
22 |
|
23 |
+
public function get_keywords() {
|
24 |
+
return ['metform', 'form'];
|
25 |
+
}
|
26 |
+
|
27 |
public function get_all_forms(){
|
28 |
$form_list = [];
|
29 |
$args = array(
|
widgets/listing/listing-fname.php
CHANGED
@@ -5,6 +5,7 @@ defined( 'ABSPATH' ) || exit;
|
|
5 |
Class MetForm_Input_Listing_Fname extends Widget_Base{
|
6 |
|
7 |
use \MetForm\Traits\Common_Controls;
|
|
|
8 |
|
9 |
public function get_name() {
|
10 |
return 'mf-listing-fname';
|
@@ -22,6 +23,10 @@ Class MetForm_Input_Listing_Fname extends Widget_Base{
|
|
22 |
return [ 'metform' ];
|
23 |
}
|
24 |
|
|
|
|
|
|
|
|
|
25 |
protected function _register_controls() {
|
26 |
|
27 |
$this->start_controls_section(
|
@@ -37,7 +42,7 @@ Class MetForm_Input_Listing_Fname extends Widget_Base{
|
|
37 |
$this->end_controls_section();
|
38 |
|
39 |
$this->start_controls_section(
|
40 |
-
'
|
41 |
[
|
42 |
'label' => esc_html__( 'Settings', 'metform' ),
|
43 |
'tab' => Controls_Manager::TAB_CONTENT,
|
@@ -46,7 +51,11 @@ Class MetForm_Input_Listing_Fname extends Widget_Base{
|
|
46 |
|
47 |
$this->input_setting_controls(['MAX_MIN']);
|
48 |
|
49 |
-
|
|
|
|
|
|
|
|
|
50 |
|
51 |
$this->start_controls_section(
|
52 |
'label_section',
|
@@ -106,7 +115,9 @@ Class MetForm_Input_Listing_Fname extends Widget_Base{
|
|
106 |
$settings = $this->get_settings_for_display();
|
107 |
extract($settings);
|
108 |
|
109 |
-
|
|
|
|
|
110 |
|
111 |
if($mf_input_label_status == 'yes'){
|
112 |
?>
|
5 |
Class MetForm_Input_Listing_Fname extends Widget_Base{
|
6 |
|
7 |
use \MetForm\Traits\Common_Controls;
|
8 |
+
use \MetForm\Traits\Conditional_Controls;
|
9 |
|
10 |
public function get_name() {
|
11 |
return 'mf-listing-fname';
|
23 |
return [ 'metform' ];
|
24 |
}
|
25 |
|
26 |
+
public function get_keywords() {
|
27 |
+
return ['metform', 'input', 'first name', 'name', 'mailchimp', 'zapier', 'slack'];
|
28 |
+
}
|
29 |
+
|
30 |
protected function _register_controls() {
|
31 |
|
32 |
$this->start_controls_section(
|
42 |
$this->end_controls_section();
|
43 |
|
44 |
$this->start_controls_section(
|
45 |
+
'settings_section',
|
46 |
[
|
47 |
'label' => esc_html__( 'Settings', 'metform' ),
|
48 |
'tab' => Controls_Manager::TAB_CONTENT,
|
51 |
|
52 |
$this->input_setting_controls(['MAX_MIN']);
|
53 |
|
54 |
+
$this->end_controls_section();
|
55 |
+
|
56 |
+
if(class_exists('\MetForm\Base\Package')){
|
57 |
+
$this->input_conditional_control();
|
58 |
+
}
|
59 |
|
60 |
$this->start_controls_section(
|
61 |
'label_section',
|
115 |
$settings = $this->get_settings_for_display();
|
116 |
extract($settings);
|
117 |
|
118 |
+
$class = (isset($settings['mf_conditional_logic_form_list']) ? 'mf-conditional-input' : '');
|
119 |
+
|
120 |
+
echo "<div class='mf-input-wrapper ".$class."' data-mf-form-conditional-logic-requirement='".(isset($mf_conditional_logic_form_and_or_operators) ? $mf_conditional_logic_form_and_or_operators : '')."'>";
|
121 |
|
122 |
if($mf_input_label_status == 'yes'){
|
123 |
?>
|
widgets/listing/listing-lname.php
CHANGED
@@ -5,6 +5,7 @@ defined( 'ABSPATH' ) || exit;
|
|
5 |
Class MetForm_Input_Listing_Lname extends Widget_Base{
|
6 |
|
7 |
use \MetForm\Traits\Common_Controls;
|
|
|
8 |
|
9 |
public function get_name() {
|
10 |
return 'mf-listing-lname';
|
@@ -21,6 +22,10 @@ Class MetForm_Input_Listing_Lname extends Widget_Base{
|
|
21 |
public function get_categories() {
|
22 |
return [ 'metform' ];
|
23 |
}
|
|
|
|
|
|
|
|
|
24 |
|
25 |
protected function _register_controls() {
|
26 |
|
@@ -37,7 +42,7 @@ Class MetForm_Input_Listing_Lname extends Widget_Base{
|
|
37 |
$this->end_controls_section();
|
38 |
|
39 |
$this->start_controls_section(
|
40 |
-
'
|
41 |
[
|
42 |
'label' => esc_html__( 'Settings', 'metform' ),
|
43 |
'tab' => Controls_Manager::TAB_CONTENT,
|
@@ -46,7 +51,11 @@ Class MetForm_Input_Listing_Lname extends Widget_Base{
|
|
46 |
|
47 |
$this->input_setting_controls(['MAX_MIN']);
|
48 |
|
49 |
-
|
|
|
|
|
|
|
|
|
50 |
|
51 |
$this->start_controls_section(
|
52 |
'label_section',
|
@@ -106,7 +115,9 @@ Class MetForm_Input_Listing_Lname extends Widget_Base{
|
|
106 |
$settings = $this->get_settings_for_display();
|
107 |
extract($settings);
|
108 |
|
109 |
-
|
|
|
|
|
110 |
|
111 |
if($mf_input_label_status == 'yes'){
|
112 |
?>
|
5 |
Class MetForm_Input_Listing_Lname extends Widget_Base{
|
6 |
|
7 |
use \MetForm\Traits\Common_Controls;
|
8 |
+
use \MetForm\Traits\Conditional_Controls;
|
9 |
|
10 |
public function get_name() {
|
11 |
return 'mf-listing-lname';
|
22 |
public function get_categories() {
|
23 |
return [ 'metform' ];
|
24 |
}
|
25 |
+
|
26 |
+
public function get_keywords() {
|
27 |
+
return ['metform', 'input', 'last name', 'name', 'mailchimp', 'zapier', 'slack'];
|
28 |
+
}
|
29 |
|
30 |
protected function _register_controls() {
|
31 |
|
42 |
$this->end_controls_section();
|
43 |
|
44 |
$this->start_controls_section(
|
45 |
+
'settings_section',
|
46 |
[
|
47 |
'label' => esc_html__( 'Settings', 'metform' ),
|
48 |
'tab' => Controls_Manager::TAB_CONTENT,
|
51 |
|
52 |
$this->input_setting_controls(['MAX_MIN']);
|
53 |
|
54 |
+
$this->end_controls_section();
|
55 |
+
|
56 |
+
if(class_exists('\MetForm\Base\Package')){
|
57 |
+
$this->input_conditional_control();
|
58 |
+
}
|
59 |
|
60 |
$this->start_controls_section(
|
61 |
'label_section',
|
115 |
$settings = $this->get_settings_for_display();
|
116 |
extract($settings);
|
117 |
|
118 |
+
$class = (isset($settings['mf_conditional_logic_form_list']) ? 'mf-conditional-input' : '');
|
119 |
+
|
120 |
+
echo "<div class='mf-input-wrapper ".$class."' data-mf-form-conditional-logic-requirement='".(isset($mf_conditional_logic_form_and_or_operators) ? $mf_conditional_logic_form_and_or_operators : '')."'>";
|
121 |
|
122 |
if($mf_input_label_status == 'yes'){
|
123 |
?>
|
widgets/listing/listing-optin.php
CHANGED
@@ -5,6 +5,7 @@ defined( 'ABSPATH' ) || exit;
|
|
5 |
Class MetForm_Input_Listing_Optin extends Widget_Base{
|
6 |
|
7 |
use \MetForm\Traits\Common_Controls;
|
|
|
8 |
|
9 |
public function get_name() {
|
10 |
return 'mf-listing-optin';
|
@@ -22,6 +23,10 @@ Class MetForm_Input_Listing_Optin extends Widget_Base{
|
|
22 |
return [ 'metform' ];
|
23 |
}
|
24 |
|
|
|
|
|
|
|
|
|
25 |
protected function _register_controls() {
|
26 |
|
27 |
$this->start_controls_section(
|
@@ -144,7 +149,7 @@ Class MetForm_Input_Listing_Optin extends Widget_Base{
|
|
144 |
$this->end_controls_section();
|
145 |
|
146 |
$this->start_controls_section(
|
147 |
-
'
|
148 |
[
|
149 |
'label' => esc_html__( 'Settings', 'metform' ),
|
150 |
'tab' => Controls_Manager::TAB_CONTENT,
|
@@ -155,6 +160,10 @@ Class MetForm_Input_Listing_Optin extends Widget_Base{
|
|
155 |
|
156 |
$this->end_controls_section();
|
157 |
|
|
|
|
|
|
|
|
|
158 |
$this->start_controls_section(
|
159 |
'label_section',
|
160 |
[
|
@@ -359,17 +368,19 @@ Class MetForm_Input_Listing_Optin extends Widget_Base{
|
|
359 |
$settings = $this->get_settings_for_display();
|
360 |
extract($settings);
|
361 |
|
362 |
-
|
|
|
|
|
363 |
|
364 |
if($mf_input_label_status == 'yes'){
|
365 |
?>
|
366 |
-
<label class="mf-listing-optin-label mf-input-label" for="
|
367 |
<span class="mf-input-required-indicator"><?php echo esc_html(($mf_input_required === 'yes') ? '*' : ''); ?></span>
|
368 |
</label>
|
369 |
<?php
|
370 |
}
|
371 |
?>
|
372 |
-
<div class="mf-checkbox" id="mf-input-
|
373 |
<div class="mf-checkbox-option">
|
374 |
<label><?php echo esc_html(($mf_listing_optin_option_text_position == 'before') ? $mf_listing_optin_option_text :''); ?>
|
375 |
<input type="checkbox" class="mf-checkbox-input" name="<?php echo esc_attr($mf_input_name); ?>"
|
5 |
Class MetForm_Input_Listing_Optin extends Widget_Base{
|
6 |
|
7 |
use \MetForm\Traits\Common_Controls;
|
8 |
+
use \MetForm\Traits\Conditional_Controls;
|
9 |
|
10 |
public function get_name() {
|
11 |
return 'mf-listing-optin';
|
23 |
return [ 'metform' ];
|
24 |
}
|
25 |
|
26 |
+
public function get_keywords() {
|
27 |
+
return ['metform', 'input', 'opt in', 'news letter', 'mailchimp', 'zapier', 'slack'];
|
28 |
+
}
|
29 |
+
|
30 |
protected function _register_controls() {
|
31 |
|
32 |
$this->start_controls_section(
|
149 |
$this->end_controls_section();
|
150 |
|
151 |
$this->start_controls_section(
|
152 |
+
'settings_section',
|
153 |
[
|
154 |
'label' => esc_html__( 'Settings', 'metform' ),
|
155 |
'tab' => Controls_Manager::TAB_CONTENT,
|
160 |
|
161 |
$this->end_controls_section();
|
162 |
|
163 |
+
if(class_exists('\MetForm\Base\Package')){
|
164 |
+
$this->input_conditional_control();
|
165 |
+
}
|
166 |
+
|
167 |
$this->start_controls_section(
|
168 |
'label_section',
|
169 |
[
|
368 |
$settings = $this->get_settings_for_display();
|
369 |
extract($settings);
|
370 |
|
371 |
+
$class = (isset($settings['mf_conditional_logic_form_list']) ? 'mf-conditional-input' : '');
|
372 |
+
|
373 |
+
echo "<div class='mf-input-wrapper ".$class."' data-mf-form-conditional-logic-requirement='".(isset($mf_conditional_logic_form_and_or_operators) ? $mf_conditional_logic_form_and_or_operators : '')."'>";
|
374 |
|
375 |
if($mf_input_label_status == 'yes'){
|
376 |
?>
|
377 |
+
<label class="mf-listing-optin-label mf-input-label" for="mf-input-optin-<?php echo esc_attr($this->get_id()); ?>"><?php echo esc_html($mf_input_label); ?>
|
378 |
<span class="mf-input-required-indicator"><?php echo esc_html(($mf_input_required === 'yes') ? '*' : ''); ?></span>
|
379 |
</label>
|
380 |
<?php
|
381 |
}
|
382 |
?>
|
383 |
+
<div class="mf-checkbox" id="mf-input-optin-<?php echo esc_attr($this->get_id()); ?>">
|
384 |
<div class="mf-checkbox-option">
|
385 |
<label><?php echo esc_html(($mf_listing_optin_option_text_position == 'before') ? $mf_listing_optin_option_text :''); ?>
|
386 |
<input type="checkbox" class="mf-checkbox-input" name="<?php echo esc_attr($mf_input_name); ?>"
|
widgets/manifest.php
CHANGED
@@ -24,6 +24,7 @@ Class Manifest{
|
|
24 |
'mf-text',
|
25 |
'mf-email',
|
26 |
'mf-number',
|
|
|
27 |
'mf-mobile',
|
28 |
'mf-date',
|
29 |
'mf-time',
|
@@ -38,23 +39,26 @@ Class Manifest{
|
|
38 |
'mf-password',
|
39 |
'mf-listing-fname',
|
40 |
'mf-listing-lname',
|
41 |
-
// 'mf-listing-phone',
|
42 |
'mf-listing-optin',
|
43 |
'mf-recaptcha',
|
44 |
'mf-rating',
|
45 |
'mf-file-upload',
|
|
|
|
|
|
|
|
|
46 |
];
|
47 |
}
|
48 |
|
49 |
public function includes() {
|
50 |
|
51 |
-
//
|
52 |
-
|
53 |
-
|
54 |
require_once plugin_dir_path(__FILE__) . 'text/text.php';
|
55 |
require_once plugin_dir_path(__FILE__) . 'email/email.php';
|
56 |
require_once plugin_dir_path(__FILE__) . 'number/number.php';
|
57 |
-
require_once plugin_dir_path(__FILE__) . '
|
58 |
require_once plugin_dir_path(__FILE__) . 'date/date.php';
|
59 |
require_once plugin_dir_path(__FILE__) . 'time/time.php';
|
60 |
require_once plugin_dir_path(__FILE__) . 'select/select.php';
|
@@ -70,11 +74,11 @@ Class Manifest{
|
|
70 |
require_once plugin_dir_path(__FILE__) . 'response/response.php';
|
71 |
require_once plugin_dir_path(__FILE__) . 'listing/listing-fname.php';
|
72 |
require_once plugin_dir_path(__FILE__) . 'listing/listing-lname.php';
|
73 |
-
// require_once plugin_dir_path(__FILE__) . 'listing/listing-phone.php';
|
74 |
require_once plugin_dir_path(__FILE__) . 'listing/listing-optin.php';
|
75 |
require_once plugin_dir_path(__FILE__) . 'recaptcha/recaptcha.php';
|
76 |
require_once plugin_dir_path(__FILE__) . 'rating/rating.php';
|
77 |
require_once plugin_dir_path(__FILE__) . 'file-upload/file-upload.php';
|
|
|
78 |
|
79 |
}
|
80 |
|
@@ -82,14 +86,14 @@ Class Manifest{
|
|
82 |
|
83 |
$this->includes();
|
84 |
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\MetForm_Input_Button() );
|
89 |
\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\MetForm_Input_Text() );
|
90 |
\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\MetForm_Input_Email() );
|
91 |
\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\MetForm_Input_Number() );
|
92 |
-
\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\
|
93 |
\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\MetForm_Input_Date() );
|
94 |
\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\MetForm_Input_Time() );
|
95 |
\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\MetForm_Input_Select() );
|
@@ -104,7 +108,6 @@ Class Manifest{
|
|
104 |
\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\MetForm_Input_Response() );
|
105 |
\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\MetForm_Input_Listing_Fname() );
|
106 |
\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\MetForm_Input_Listing_Lname() );
|
107 |
-
// \Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\MetForm_Input_Listing_Phone() );
|
108 |
\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\MetForm_Input_Listing_Optin );
|
109 |
\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\MetForm_Input_Recaptcha() );
|
110 |
\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\MetForm_Input_Rating() );
|
24 |
'mf-text',
|
25 |
'mf-email',
|
26 |
'mf-number',
|
27 |
+
'mf-telephone',
|
28 |
'mf-mobile',
|
29 |
'mf-date',
|
30 |
'mf-time',
|
39 |
'mf-password',
|
40 |
'mf-listing-fname',
|
41 |
'mf-listing-lname',
|
|
|
42 |
'mf-listing-optin',
|
43 |
'mf-recaptcha',
|
44 |
'mf-rating',
|
45 |
'mf-file-upload',
|
46 |
+
'mf-calculation',
|
47 |
+
'mf-image-select',
|
48 |
+
'mf-toggle-select',
|
49 |
+
'mf-simple-repeater',
|
50 |
];
|
51 |
}
|
52 |
|
53 |
public function includes() {
|
54 |
|
55 |
+
//require_once plugin_dir_path(__FILE__) . 'form.php';
|
56 |
+
require_once plugin_dir_path(__FILE__) . 'form-dynamic.php';
|
57 |
+
|
58 |
require_once plugin_dir_path(__FILE__) . 'text/text.php';
|
59 |
require_once plugin_dir_path(__FILE__) . 'email/email.php';
|
60 |
require_once plugin_dir_path(__FILE__) . 'number/number.php';
|
61 |
+
require_once plugin_dir_path(__FILE__) . 'telephone/telephone.php';
|
62 |
require_once plugin_dir_path(__FILE__) . 'date/date.php';
|
63 |
require_once plugin_dir_path(__FILE__) . 'time/time.php';
|
64 |
require_once plugin_dir_path(__FILE__) . 'select/select.php';
|
74 |
require_once plugin_dir_path(__FILE__) . 'response/response.php';
|
75 |
require_once plugin_dir_path(__FILE__) . 'listing/listing-fname.php';
|
76 |
require_once plugin_dir_path(__FILE__) . 'listing/listing-lname.php';
|
|
|
77 |
require_once plugin_dir_path(__FILE__) . 'listing/listing-optin.php';
|
78 |
require_once plugin_dir_path(__FILE__) . 'recaptcha/recaptcha.php';
|
79 |
require_once plugin_dir_path(__FILE__) . 'rating/rating.php';
|
80 |
require_once plugin_dir_path(__FILE__) . 'file-upload/file-upload.php';
|
81 |
+
|
82 |
|
83 |
}
|
84 |
|
86 |
|
87 |
$this->includes();
|
88 |
|
89 |
+
\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\Widget_Met_Form() );
|
90 |
+
//\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\Widget_Met_Form_Baisc() );
|
91 |
+
|
92 |
\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\MetForm_Input_Button() );
|
93 |
\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\MetForm_Input_Text() );
|
94 |
\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\MetForm_Input_Email() );
|
95 |
\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\MetForm_Input_Number() );
|
96 |
+
\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\MetForm_Input_Telephone() );
|
97 |
\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\MetForm_Input_Date() );
|
98 |
\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\MetForm_Input_Time() );
|
99 |
\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\MetForm_Input_Select() );
|
108 |
\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\MetForm_Input_Response() );
|
109 |
\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\MetForm_Input_Listing_Fname() );
|
110 |
\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\MetForm_Input_Listing_Lname() );
|
|
|
111 |
\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\MetForm_Input_Listing_Optin );
|
112 |
\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\MetForm_Input_Recaptcha() );
|
113 |
\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\MetForm_Input_Rating() );
|
widgets/mobile/mobile.php
DELETED
@@ -1,135 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
namespace Elementor;
|
3 |
-
defined( 'ABSPATH' ) || exit;
|
4 |
-
|
5 |
-
Class MetForm_Input_Mobile extends Widget_Base{
|
6 |
-
use \MetForm\Traits\Common_Controls;
|
7 |
-
|
8 |
-
public function __construct( $data = [], $args = null ) {
|
9 |
-
parent::__construct( $data, $args );
|
10 |
-
$this->add_script_depends('intlTelInput');
|
11 |
-
// $this->add_style_depends('intlTelInput');
|
12 |
-
}
|
13 |
-
|
14 |
-
public function get_name(){
|
15 |
-
return 'mf-mobile';
|
16 |
-
}
|
17 |
-
|
18 |
-
public function get_title(){
|
19 |
-
return esc_html__( 'Mobile', 'metform' );
|
20 |
-
}
|
21 |
-
|
22 |
-
public function show_in_panel() {
|
23 |
-
return 'metform-form' == get_post_type();
|
24 |
-
}
|
25 |
-
|
26 |
-
public function get_categories() {
|
27 |
-
return [ 'metform' ];
|
28 |
-
}
|
29 |
-
|
30 |
-
protected function _register_controls(){
|
31 |
-
|
32 |
-
$this->start_controls_section(
|
33 |
-
'content_section',
|
34 |
-
[
|
35 |
-
'label' => esc_html__( 'Content', 'metform' ),
|
36 |
-
'tab' => Controls_Manager::TAB_CONTENT,
|
37 |
-
]
|
38 |
-
);
|
39 |
-
|
40 |
-
$this->input_content_controls(['NO_PLACEHOLDER']);
|
41 |
-
|
42 |
-
$this->end_controls_section();
|
43 |
-
|
44 |
-
$this->start_controls_section(
|
45 |
-
'condition_section',
|
46 |
-
[
|
47 |
-
'label' => esc_html__( 'Settings', 'metform' ),
|
48 |
-
'tab' => Controls_Manager::TAB_CONTENT,
|
49 |
-
]
|
50 |
-
);
|
51 |
-
|
52 |
-
$this->input_setting_controls(['MAX_MIN']);
|
53 |
-
|
54 |
-
$this->end_controls_section();
|
55 |
-
|
56 |
-
$this->start_controls_section(
|
57 |
-
'label_section',
|
58 |
-
[
|
59 |
-
'label' => esc_html__( 'Label', 'metform' ),
|
60 |
-
'tab' => Controls_Manager::TAB_STYLE,
|
61 |
-
'condition' => [
|
62 |
-
'mf_input_label_status' => 'yes',
|
63 |
-
],
|
64 |
-
]
|
65 |
-
);
|
66 |
-
|
67 |
-
$this->input_label_controls();
|
68 |
-
|
69 |
-
$this->end_controls_section();
|
70 |
-
|
71 |
-
$this->start_controls_section(
|
72 |
-
'input_section',
|
73 |
-
[
|
74 |
-
'label' => esc_html__( 'Input', 'metform' ),
|
75 |
-
'tab' => Controls_Manager::TAB_STYLE,
|
76 |
-
]
|
77 |
-
);
|
78 |
-
|
79 |
-
$this->input_controls();
|
80 |
-
|
81 |
-
$this->end_controls_section();
|
82 |
-
|
83 |
-
$this->start_controls_section(
|
84 |
-
'placeholder_section',
|
85 |
-
[
|
86 |
-
'label' => esc_html__( 'Place Holder', 'metform' ),
|
87 |
-
'tab' => Controls_Manager::TAB_STYLE,
|
88 |
-
]
|
89 |
-
);
|
90 |
-
|
91 |
-
$this->input_place_holder_controls();
|
92 |
-
|
93 |
-
$this->end_controls_section();
|
94 |
-
|
95 |
-
$this->start_controls_section(
|
96 |
-
'help_text_section',
|
97 |
-
[
|
98 |
-
'label' => esc_html__( 'Help Text', 'metform' ),
|
99 |
-
'tab' => Controls_Manager::TAB_STYLE,
|
100 |
-
]
|
101 |
-
);
|
102 |
-
|
103 |
-
$this->input_help_text_controls();
|
104 |
-
|
105 |
-
$this->end_controls_section();
|
106 |
-
|
107 |
-
}
|
108 |
-
|
109 |
-
protected function render(){
|
110 |
-
$settings = $this->get_settings_for_display();
|
111 |
-
extract($settings);
|
112 |
-
$id = $this->get_id();
|
113 |
-
echo "<div class='mf-input-wrapper'>";
|
114 |
-
|
115 |
-
if($mf_input_label_status == 'yes'){
|
116 |
-
?>
|
117 |
-
<label class="mf-input-label" for="mf-input-mobile-<?php echo esc_attr($this->get_id()); ?>"><?php echo esc_html($mf_input_label); ?>
|
118 |
-
<span class="mf-input-required-indicator"><?php echo esc_html(($mf_input_required === 'yes') ? '*' : '');?></span>
|
119 |
-
</label>
|
120 |
-
<?php
|
121 |
-
}
|
122 |
-
?>
|
123 |
-
<input type="tel" class="mf-input" id="mf-input-mobile-<?php echo esc_attr($this->get_id()); ?>"
|
124 |
-
name="<?php echo esc_attr($mf_input_name); ?>"
|
125 |
-
<?php echo esc_attr(($mf_input_required === 'yes') ? 'required' : '')?>
|
126 |
-
<?php //echo esc_attr($mf_input_readonly_status); ?>
|
127 |
-
>
|
128 |
-
<?php
|
129 |
-
if($mf_input_help_text != ''){
|
130 |
-
echo "<span class='mf-input-help'>".esc_html($mf_input_help_text)."</span>";
|
131 |
-
}
|
132 |
-
echo "</div>";
|
133 |
-
}
|
134 |
-
|
135 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
widgets/multi-select/multi-select.php
CHANGED
@@ -4,7 +4,8 @@ defined( 'ABSPATH' ) || exit;
|
|
4 |
|
5 |
Class MetForm_Input_Multi_Select extends Widget_Base{
|
6 |
|
7 |
-
|
|
|
8 |
|
9 |
public function get_name() {
|
10 |
return 'mf-multi-select';
|
@@ -20,7 +21,11 @@ Class MetForm_Input_Multi_Select extends Widget_Base{
|
|
20 |
|
21 |
public function get_categories() {
|
22 |
return [ 'metform' ];
|
23 |
-
|
|
|
|
|
|
|
|
|
24 |
|
25 |
protected function _register_controls() {
|
26 |
|
@@ -78,17 +83,17 @@ Class MetForm_Input_Multi_Select extends Widget_Base{
|
|
78 |
'default' => [
|
79 |
[
|
80 |
'mf_input_option_text' => 'Item 1',
|
81 |
-
'mf_input_option_value' => '
|
82 |
'mf_input_option_status' => '',
|
83 |
],
|
84 |
[
|
85 |
'mf_input_option_text' => 'Item 2',
|
86 |
-
'mf_input_option_value' => '
|
87 |
'mf_input_option_status' => '',
|
88 |
],
|
89 |
[
|
90 |
'mf_input_option_text' => 'Item 3',
|
91 |
-
'mf_input_option_value' => '
|
92 |
'mf_input_option_status' => '',
|
93 |
],
|
94 |
],
|
@@ -99,7 +104,7 @@ Class MetForm_Input_Multi_Select extends Widget_Base{
|
|
99 |
$this->end_controls_section();
|
100 |
|
101 |
$this->start_controls_section(
|
102 |
-
'
|
103 |
[
|
104 |
'label' => esc_html__( 'Settings', 'metform' ),
|
105 |
'tab' => Controls_Manager::TAB_CONTENT,
|
@@ -110,6 +115,10 @@ Class MetForm_Input_Multi_Select extends Widget_Base{
|
|
110 |
|
111 |
$this->end_controls_section();
|
112 |
|
|
|
|
|
|
|
|
|
113 |
$this->start_controls_section(
|
114 |
'label_section',
|
115 |
[
|
@@ -156,7 +165,9 @@ Class MetForm_Input_Multi_Select extends Widget_Base{
|
|
156 |
$settings = $this->get_settings_for_display();
|
157 |
extract($settings);
|
158 |
|
159 |
-
|
|
|
|
|
160 |
|
161 |
if($mf_input_label_status == 'yes'){
|
162 |
?>
|
4 |
|
5 |
Class MetForm_Input_Multi_Select extends Widget_Base{
|
6 |
|
7 |
+
use \MetForm\Traits\Common_Controls;
|
8 |
+
use \MetForm\Traits\Conditional_Controls;
|
9 |
|
10 |
public function get_name() {
|
11 |
return 'mf-multi-select';
|
21 |
|
22 |
public function get_categories() {
|
23 |
return [ 'metform' ];
|
24 |
+
}
|
25 |
+
|
26 |
+
public function get_keywords() {
|
27 |
+
return ['metform', 'input', 'select', 'multi select', 'dropdown', 'multiple dropdown'];
|
28 |
+
}
|
29 |
|
30 |
protected function _register_controls() {
|
31 |
|
83 |
'default' => [
|
84 |
[
|
85 |
'mf_input_option_text' => 'Item 1',
|
86 |
+
'mf_input_option_value' => 'value-1',
|
87 |
'mf_input_option_status' => '',
|
88 |
],
|
89 |
[
|
90 |
'mf_input_option_text' => 'Item 2',
|
91 |
+
'mf_input_option_value' => 'value-2',
|
92 |
'mf_input_option_status' => '',
|
93 |
],
|
94 |
[
|
95 |
'mf_input_option_text' => 'Item 3',
|
96 |
+
'mf_input_option_value' => 'value-3',
|
97 |
'mf_input_option_status' => '',
|
98 |
],
|
99 |
],
|
104 |
$this->end_controls_section();
|
105 |
|
106 |
$this->start_controls_section(
|
107 |
+
'settings_section',
|
108 |
[
|
109 |
'label' => esc_html__( 'Settings', 'metform' ),
|
110 |
'tab' => Controls_Manager::TAB_CONTENT,
|
115 |
|
116 |
$this->end_controls_section();
|
117 |
|
118 |
+
if(class_exists('\MetForm\Base\Package')){
|
119 |
+
$this->input_conditional_control();
|
120 |
+
}
|
121 |
+
|
122 |
$this->start_controls_section(
|
123 |
'label_section',
|
124 |
[
|
165 |
$settings = $this->get_settings_for_display();
|
166 |
extract($settings);
|
167 |
|
168 |
+
$class = (isset($settings['mf_conditional_logic_form_list']) ? 'mf-conditional-input' : '');
|
169 |
+
|
170 |
+
echo "<div class='mf-input-wrapper ".$class."' data-mf-form-conditional-logic-requirement='".(isset($mf_conditional_logic_form_and_or_operators) ? $mf_conditional_logic_form_and_or_operators : '')."'>";
|
171 |
|
172 |
if($mf_input_label_status == 'yes'){
|
173 |
?>
|
widgets/number/number.php
CHANGED
@@ -3,7 +3,9 @@ namespace Elementor;
|
|
3 |
defined( 'ABSPATH' ) || exit;
|
4 |
|
5 |
Class MetForm_Input_Number extends Widget_Base{
|
|
|
6 |
use \MetForm\Traits\Common_Controls;
|
|
|
7 |
|
8 |
public function get_name(){
|
9 |
return 'mf-number';
|
@@ -20,6 +22,10 @@ Class MetForm_Input_Number extends Widget_Base{
|
|
20 |
public function get_categories() {
|
21 |
return [ 'metform' ];
|
22 |
}
|
|
|
|
|
|
|
|
|
23 |
|
24 |
protected function _register_controls(){
|
25 |
|
@@ -36,7 +42,7 @@ Class MetForm_Input_Number extends Widget_Base{
|
|
36 |
$this->end_controls_section();
|
37 |
|
38 |
$this->start_controls_section(
|
39 |
-
'
|
40 |
[
|
41 |
'label' => esc_html__( 'Settings', 'metform' ),
|
42 |
'tab' => Controls_Manager::TAB_CONTENT,
|
@@ -47,6 +53,10 @@ Class MetForm_Input_Number extends Widget_Base{
|
|
47 |
|
48 |
$this->end_controls_section();
|
49 |
|
|
|
|
|
|
|
|
|
50 |
$this->start_controls_section(
|
51 |
'label_section',
|
52 |
[
|
@@ -104,17 +114,19 @@ Class MetForm_Input_Number extends Widget_Base{
|
|
104 |
$settings = $this->get_settings_for_display();
|
105 |
extract($settings);
|
106 |
|
107 |
-
|
|
|
|
|
108 |
|
109 |
if($mf_input_label_status == 'yes'){
|
110 |
?>
|
111 |
-
<label class="mf-input-label" for="mf-input-
|
112 |
<span class="mf-input-required-indicator"><?php echo esc_html(($mf_input_required === 'yes') ? '*' : '');?></span>
|
113 |
</label>
|
114 |
<?php
|
115 |
}
|
116 |
?>
|
117 |
-
<input type="
|
118 |
name="<?php echo esc_attr($mf_input_name); ?>"
|
119 |
placeholder="<?php echo esc_html($mf_input_placeholder); ?>"
|
120 |
<?php echo esc_attr(($mf_input_required === 'yes') ? 'required' : '')?>
|
3 |
defined( 'ABSPATH' ) || exit;
|
4 |
|
5 |
Class MetForm_Input_Number extends Widget_Base{
|
6 |
+
|
7 |
use \MetForm\Traits\Common_Controls;
|
8 |
+
use \MetForm\Traits\Conditional_Controls;
|
9 |
|
10 |
public function get_name(){
|
11 |
return 'mf-number';
|
22 |
public function get_categories() {
|
23 |
return [ 'metform' ];
|
24 |
}
|
25 |
+
|
26 |
+
public function get_keywords() {
|
27 |
+
return ['metform', 'input', 'number', 'numeric'];
|
28 |
+
}
|
29 |
|
30 |
protected function _register_controls(){
|
31 |
|
42 |
$this->end_controls_section();
|
43 |
|
44 |
$this->start_controls_section(
|
45 |
+
'settings_section',
|
46 |
[
|
47 |
'label' => esc_html__( 'Settings', 'metform' ),
|
48 |
'tab' => Controls_Manager::TAB_CONTENT,
|
53 |
|
54 |
$this->end_controls_section();
|
55 |
|
56 |
+
if(class_exists('\MetForm\Base\Package')){
|
57 |
+
$this->input_conditional_control();
|
58 |
+
}
|
59 |
+
|
60 |
$this->start_controls_section(
|
61 |
'label_section',
|
62 |
[
|
114 |
$settings = $this->get_settings_for_display();
|
115 |
extract($settings);
|
116 |
|
117 |
+
$class = (isset($settings['mf_conditional_logic_form_list']) ? 'mf-conditional-input' : '');
|
118 |
+
|
119 |
+
echo "<div class='mf-input-wrapper ".$class."' data-mf-form-conditional-logic-requirement='".(isset($mf_conditional_logic_form_and_or_operators) ? $mf_conditional_logic_form_and_or_operators : '')."'>";
|
120 |
|
121 |
if($mf_input_label_status == 'yes'){
|
122 |
?>
|
123 |
+
<label class="mf-input-label" for="mf-input-number-<?php echo esc_attr($this->get_id()); ?>"><?php echo esc_html($mf_input_label); ?>
|
124 |
<span class="mf-input-required-indicator"><?php echo esc_html(($mf_input_required === 'yes') ? '*' : '');?></span>
|
125 |
</label>
|
126 |
<?php
|
127 |
}
|
128 |
?>
|
129 |
+
<input type="number" class="mf-input" id="mf-input-mobile-<?php echo esc_attr($this->get_id()); ?>"
|
130 |
name="<?php echo esc_attr($mf_input_name); ?>"
|
131 |
placeholder="<?php echo esc_html($mf_input_placeholder); ?>"
|
132 |
<?php echo esc_attr(($mf_input_required === 'yes') ? 'required' : '')?>
|
widgets/password/password.php
CHANGED
@@ -5,6 +5,7 @@ defined( 'ABSPATH' ) || exit;
|
|
5 |
Class MetForm_Input_Password extends Widget_Base{
|
6 |
|
7 |
use \MetForm\Traits\Common_Controls;
|
|
|
8 |
|
9 |
public function get_name() {
|
10 |
return 'mf-password';
|
@@ -22,6 +23,10 @@ Class MetForm_Input_Password extends Widget_Base{
|
|
22 |
return [ 'metform' ];
|
23 |
}
|
24 |
|
|
|
|
|
|
|
|
|
25 |
protected function _register_controls() {
|
26 |
|
27 |
$this->start_controls_section(
|
@@ -37,7 +42,7 @@ Class MetForm_Input_Password extends Widget_Base{
|
|
37 |
$this->end_controls_section();
|
38 |
|
39 |
$this->start_controls_section(
|
40 |
-
'
|
41 |
[
|
42 |
'label' => esc_html__( 'Settings', 'metform' ),
|
43 |
'tab' => Controls_Manager::TAB_CONTENT,
|
@@ -46,7 +51,11 @@ Class MetForm_Input_Password extends Widget_Base{
|
|
46 |
|
47 |
$this->input_setting_controls(['MAX_MIN']);
|
48 |
|
49 |
-
|
|
|
|
|
|
|
|
|
50 |
|
51 |
$this->start_controls_section(
|
52 |
'label_section',
|
@@ -106,7 +115,9 @@ Class MetForm_Input_Password extends Widget_Base{
|
|
106 |
$settings = $this->get_settings_for_display();
|
107 |
extract($settings);
|
108 |
|
109 |
-
|
|
|
|
|
110 |
|
111 |
if($mf_input_label_status == 'yes'){
|
112 |
?>
|
5 |
Class MetForm_Input_Password extends Widget_Base{
|
6 |
|
7 |
use \MetForm\Traits\Common_Controls;
|
8 |
+
use \MetForm\Traits\Conditional_Controls;
|
9 |
|
10 |
public function get_name() {
|
11 |
return 'mf-password';
|
23 |
return [ 'metform' ];
|
24 |
}
|
25 |
|
26 |
+
public function get_keywords() {
|
27 |
+
return ['metform', 'input', 'pass', 'password'];
|
28 |
+
}
|
29 |
+
|
30 |
protected function _register_controls() {
|
31 |
|
32 |
$this->start_controls_section(
|
42 |
$this->end_controls_section();
|
43 |
|
44 |
$this->start_controls_section(
|
45 |
+
'settings_section',
|
46 |
[
|
47 |
'label' => esc_html__( 'Settings', 'metform' ),
|
48 |
'tab' => Controls_Manager::TAB_CONTENT,
|
51 |
|
52 |
$this->input_setting_controls(['MAX_MIN']);
|
53 |
|
54 |
+
$this->end_controls_section();
|
55 |
+
|
56 |
+
if(class_exists('\MetForm\Base\Package')){
|
57 |
+
$this->input_conditional_control();
|
58 |
+
}
|
59 |
|
60 |
$this->start_controls_section(
|
61 |
'label_section',
|
115 |
$settings = $this->get_settings_for_display();
|
116 |
extract($settings);
|
117 |
|
118 |
+
$class = (isset($settings['mf_conditional_logic_form_list']) ? 'mf-conditional-input' : '');
|
119 |
+
|
120 |
+
echo "<div class='mf-input-wrapper ".$class."' data-mf-form-conditional-logic-requirement='".(isset($mf_conditional_logic_form_and_or_operators) ? $mf_conditional_logic_form_and_or_operators : '')."'>";
|
121 |
|
122 |
if($mf_input_label_status == 'yes'){
|
123 |
?>
|
widgets/radio/radio.php
CHANGED
@@ -5,6 +5,7 @@ defined( 'ABSPATH' ) || exit;
|
|
5 |
Class MetForm_Input_Radio extends Widget_Base{
|
6 |
|
7 |
use \MetForm\Traits\Common_Controls;
|
|
|
8 |
|
9 |
public function get_name() {
|
10 |
return 'mf-radio';
|
@@ -21,6 +22,11 @@ Class MetForm_Input_Radio extends Widget_Base{
|
|
21 |
return [ 'metform' ];
|
22 |
}
|
23 |
|
|
|
|
|
|
|
|
|
|
|
24 |
protected function _register_controls() {
|
25 |
|
26 |
$this->start_controls_section(
|
@@ -86,7 +92,7 @@ Class MetForm_Input_Radio extends Widget_Base{
|
|
86 |
'type' => Controls_Manager::TEXT,
|
87 |
'default' => $this->get_name(),
|
88 |
'title' => esc_html__( 'Enter here name of the input', 'metform' ),
|
89 |
-
'description' => esc_html__('Name is must required. Enter name without space or any special character. use only hyphen (
|
90 |
]
|
91 |
);
|
92 |
|
@@ -165,17 +171,17 @@ Class MetForm_Input_Radio extends Widget_Base{
|
|
165 |
'default' => [
|
166 |
[
|
167 |
'mf_input_option_text' => 'Option 1',
|
168 |
-
'mf_input_option_value' => '
|
169 |
'mf_input_option_status' => '',
|
170 |
],
|
171 |
[
|
172 |
'mf_input_option_text' => 'Option 2',
|
173 |
-
'mf_input_option_value' => '
|
174 |
'mf_input_option_status' => '',
|
175 |
],
|
176 |
[
|
177 |
'mf_input_option_text' => 'Option 3',
|
178 |
-
'mf_input_option_value' => '
|
179 |
'mf_input_option_status' => '',
|
180 |
],
|
181 |
],
|
@@ -197,7 +203,7 @@ Class MetForm_Input_Radio extends Widget_Base{
|
|
197 |
$this->end_controls_section();
|
198 |
|
199 |
$this->start_controls_section(
|
200 |
-
'
|
201 |
[
|
202 |
'label' => esc_html__( 'Settings', 'metform' ),
|
203 |
'tab' => Controls_Manager::TAB_CONTENT,
|
@@ -208,6 +214,10 @@ Class MetForm_Input_Radio extends Widget_Base{
|
|
208 |
|
209 |
$this->end_controls_section();
|
210 |
|
|
|
|
|
|
|
|
|
211 |
$this->start_controls_section(
|
212 |
'label_section',
|
213 |
[
|
@@ -396,7 +406,7 @@ Class MetForm_Input_Radio extends Widget_Base{
|
|
396 |
'name' => 'mf_input_typgraphy',
|
397 |
'label' => esc_html__( 'Typography', 'metform' ),
|
398 |
'scheme' => Scheme_Typography::TYPOGRAPHY_1,
|
399 |
-
'selector' => '{{WRAPPER}} .mf-radio, {{WRAPPER}} .mf-radio-option input[type="radio"] + span:before',
|
400 |
]
|
401 |
);
|
402 |
|
@@ -458,7 +468,9 @@ Class MetForm_Input_Radio extends Widget_Base{
|
|
458 |
$settings = $this->get_settings_for_display();
|
459 |
extract($settings);
|
460 |
|
461 |
-
|
|
|
|
|
462 |
|
463 |
if($mf_input_label_status == 'yes'){
|
464 |
?>
|
@@ -474,7 +486,7 @@ Class MetForm_Input_Radio extends Widget_Base{
|
|
474 |
?>
|
475 |
<div class="mf-radio-option <?php echo esc_attr($option['mf_input_option_status']); ?>">
|
476 |
<label><?php echo esc_html(($mf_input_option_text_position == 'before') ? $option['mf_input_option_text']:''); ?>
|
477 |
-
<input type="radio" class="mf-radio-input" name="<?php echo esc_attr($mf_input_name); ?>"
|
478 |
value="<?php echo esc_attr($option['mf_input_option_value']); ?>"
|
479 |
<?php echo esc_attr($option['mf_input_option_status']); ?>
|
480 |
>
|
5 |
Class MetForm_Input_Radio extends Widget_Base{
|
6 |
|
7 |
use \MetForm\Traits\Common_Controls;
|
8 |
+
use \MetForm\Traits\Conditional_Controls;
|
9 |
|
10 |
public function get_name() {
|
11 |
return 'mf-radio';
|
22 |
return [ 'metform' ];
|
23 |
}
|
24 |
|
25 |
+
|
26 |
+
public function get_keywords() {
|
27 |
+
return ['metform', 'input', 'radio', 'check'];
|
28 |
+
}
|
29 |
+
|
30 |
protected function _register_controls() {
|
31 |
|
32 |
$this->start_controls_section(
|
92 |
'type' => Controls_Manager::TEXT,
|
93 |
'default' => $this->get_name(),
|
94 |
'title' => esc_html__( 'Enter here name of the input', 'metform' ),
|
95 |
+
'description' => esc_html__('Name is must required. Enter name without space or any special character. use only underscore/ hyphen (_/-) for multiple word.', 'metform'),
|
96 |
]
|
97 |
);
|
98 |
|
171 |
'default' => [
|
172 |
[
|
173 |
'mf_input_option_text' => 'Option 1',
|
174 |
+
'mf_input_option_value' => 'value-1',
|
175 |
'mf_input_option_status' => '',
|
176 |
],
|
177 |
[
|
178 |
'mf_input_option_text' => 'Option 2',
|
179 |
+
'mf_input_option_value' => 'value-2',
|
180 |
'mf_input_option_status' => '',
|
181 |
],
|
182 |
[
|
183 |
'mf_input_option_text' => 'Option 3',
|
184 |
+
'mf_input_option_value' => 'value-3',
|
185 |
'mf_input_option_status' => '',
|
186 |
],
|
187 |
],
|
203 |
$this->end_controls_section();
|
204 |
|
205 |
$this->start_controls_section(
|
206 |
+
'settings_section',
|
207 |
[
|
208 |
'label' => esc_html__( 'Settings', 'metform' ),
|
209 |
'tab' => Controls_Manager::TAB_CONTENT,
|
214 |
|
215 |
$this->end_controls_section();
|
216 |
|
217 |
+
if(class_exists('\MetForm\Base\Package')){
|
218 |
+
$this->input_conditional_control();
|
219 |
+
}
|
220 |
+
|
221 |
$this->start_controls_section(
|
222 |
'label_section',
|
223 |
[
|
406 |
'name' => 'mf_input_typgraphy',
|
407 |
'label' => esc_html__( 'Typography', 'metform' ),
|
408 |
'scheme' => Scheme_Typography::TYPOGRAPHY_1,
|
409 |
+
'selector' => '{{WRAPPER}} .mf-radio, {{WRAPPER}} .mf-radio-option input[type="radio"] + span:before, {{WRAPPER}} .mf-radio-option input[type="radio"] + span',
|
410 |
]
|
411 |
);
|
412 |
|
468 |
$settings = $this->get_settings_for_display();
|
469 |
extract($settings);
|
470 |
|
471 |
+
$class = (isset($settings['mf_conditional_logic_form_list']) ? 'mf-conditional-input' : '');
|
472 |
+
|
473 |
+
echo "<div class='mf-input-wrapper ".$class."' data-mf-form-conditional-logic-requirement='".(isset($mf_conditional_logic_form_and_or_operators) ? $mf_conditional_logic_form_and_or_operators : '')."'>";
|
474 |
|
475 |
if($mf_input_label_status == 'yes'){
|
476 |
?>
|
486 |
?>
|
487 |
<div class="mf-radio-option <?php echo esc_attr($option['mf_input_option_status']); ?>">
|
488 |
<label><?php echo esc_html(($mf_input_option_text_position == 'before') ? $option['mf_input_option_text']:''); ?>
|
489 |
+
<input type="radio" class="mf-input mf-radio-input" name="<?php echo esc_attr($mf_input_name); ?>"
|
490 |
value="<?php echo esc_attr($option['mf_input_option_value']); ?>"
|
491 |
<?php echo esc_attr($option['mf_input_option_status']); ?>
|
492 |
>
|
widgets/range/range.php
CHANGED
@@ -5,6 +5,7 @@ defined( 'ABSPATH' ) || exit;
|
|
5 |
Class MetForm_Input_Range extends Widget_Base{
|
6 |
|
7 |
use \MetForm\Traits\Common_Controls;
|
|
|
8 |
|
9 |
public function get_name() {
|
10 |
return 'mf-range';
|
@@ -21,6 +22,10 @@ Class MetForm_Input_Range extends Widget_Base{
|
|
21 |
public function get_categories() {
|
22 |
return [ 'metform' ];
|
23 |
}
|
|
|
|
|
|
|
|
|
24 |
|
25 |
protected function _register_controls() {
|
26 |
|
@@ -37,7 +42,7 @@ Class MetForm_Input_Range extends Widget_Base{
|
|
37 |
$this->end_controls_section();
|
38 |
|
39 |
$this->start_controls_section(
|
40 |
-
'
|
41 |
[
|
42 |
'label' => esc_html__( 'Settings', 'metform' ),
|
43 |
'tab' => Controls_Manager::TAB_CONTENT,
|
@@ -45,6 +50,15 @@ Class MetForm_Input_Range extends Widget_Base{
|
|
45 |
);
|
46 |
|
47 |
$this->input_setting_controls(['MAX_MIN']);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
|
49 |
$this->add_control(
|
50 |
'mf_input_steps_control',
|
@@ -69,6 +83,10 @@ Class MetForm_Input_Range extends Widget_Base{
|
|
69 |
|
70 |
$this->end_controls_section();
|
71 |
|
|
|
|
|
|
|
|
|
72 |
$this->start_controls_section(
|
73 |
'label_section',
|
74 |
[
|
@@ -169,7 +187,9 @@ Class MetForm_Input_Range extends Widget_Base{
|
|
169 |
$settings = $this->get_settings_for_display();
|
170 |
extract($settings);
|
171 |
|
172 |
-
|
|
|
|
|
173 |
|
174 |
if($mf_input_label_status == 'yes'){
|
175 |
?>
|
@@ -182,11 +202,38 @@ Class MetForm_Input_Range extends Widget_Base{
|
|
182 |
|
183 |
<div class="range-slider">
|
184 |
|
185 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
186 |
name="<?php echo esc_attr($mf_input_name); ?>"
|
187 |
<?php echo esc_attr(($mf_input_required === 'yes') ? 'required' : '')?>
|
188 |
<?php //echo esc_attr($mf_input_readonly_status); ?>
|
189 |
-
value="<?php echo esc_attr($
|
190 |
min="<?php echo esc_attr($mf_input_min_length); ?>"
|
191 |
max="<?php echo esc_attr($mf_input_max_length); ?>"
|
192 |
step="<?php echo esc_attr($mf_input_steps_control);?>"
|
5 |
Class MetForm_Input_Range extends Widget_Base{
|
6 |
|
7 |
use \MetForm\Traits\Common_Controls;
|
8 |
+
use \MetForm\Traits\Conditional_Controls;
|
9 |
|
10 |
public function get_name() {
|
11 |
return 'mf-range';
|
22 |
public function get_categories() {
|
23 |
return [ 'metform' ];
|
24 |
}
|
25 |
+
|
26 |
+
public function get_keywords() {
|
27 |
+
return ['metform', 'input', 'slider', 'range'];
|
28 |
+
}
|
29 |
|
30 |
protected function _register_controls() {
|
31 |
|
42 |
$this->end_controls_section();
|
43 |
|
44 |
$this->start_controls_section(
|
45 |
+
'settings_section',
|
46 |
[
|
47 |
'label' => esc_html__( 'Settings', 'metform' ),
|
48 |
'tab' => Controls_Manager::TAB_CONTENT,
|
50 |
);
|
51 |
|
52 |
$this->input_setting_controls(['MAX_MIN']);
|
53 |
+
|
54 |
+
$this->add_control(
|
55 |
+
'mf_input_range_default_value',
|
56 |
+
[
|
57 |
+
'label' => esc_html__( 'Default Value', 'metform' ),
|
58 |
+
'type' => Controls_Manager::TEXT,
|
59 |
+
'description' => esc_html__('For range use comma ,')
|
60 |
+
]
|
61 |
+
);
|
62 |
|
63 |
$this->add_control(
|
64 |
'mf_input_steps_control',
|
83 |
|
84 |
$this->end_controls_section();
|
85 |
|
86 |
+
if(class_exists('\MetForm\Base\Package')){
|
87 |
+
$this->input_conditional_control();
|
88 |
+
}
|
89 |
+
|
90 |
$this->start_controls_section(
|
91 |
'label_section',
|
92 |
[
|
187 |
$settings = $this->get_settings_for_display();
|
188 |
extract($settings);
|
189 |
|
190 |
+
$class = (isset($settings['mf_conditional_logic_form_list']) ? 'mf-conditional-input' : '');
|
191 |
+
|
192 |
+
echo "<div class='mf-input-wrapper ".$class."' data-mf-form-conditional-logic-requirement='".(isset($mf_conditional_logic_form_and_or_operators) ? $mf_conditional_logic_form_and_or_operators : '')."'>";
|
193 |
|
194 |
if($mf_input_label_status == 'yes'){
|
195 |
?>
|
202 |
|
203 |
<div class="range-slider">
|
204 |
|
205 |
+
<?php
|
206 |
+
$default_value = '';
|
207 |
+
if(!empty($mf_input_range_default_value)){
|
208 |
+
if(is_numeric($mf_input_range_default_value)){
|
209 |
+
$default_value = $mf_input_range_default_value;
|
210 |
+
} elseif (is_string($mf_input_range_default_value)) {
|
211 |
+
|
212 |
+
$split_text = explode(',', $mf_input_range_default_value);
|
213 |
+
|
214 |
+
|
215 |
+
if(is_numeric(trim($split_text[0])) && is_numeric(trim($split_text[1]))){
|
216 |
+
$default_value = trim($split_text[0]) . ',' . trim($split_text[1]);
|
217 |
+
}
|
218 |
+
|
219 |
+
}
|
220 |
+
}
|
221 |
+
|
222 |
+
|
223 |
+
// if(($default_value == $mf_input_min_length) && ($default_value == $mf_input_max_length)){
|
224 |
+
// $default_value = $mf_input_min_length + 1;
|
225 |
+
// } elseif ($default_value >= $mf_input_max_length) {
|
226 |
+
// $default_value = $mf_input_max_length;
|
227 |
+
// } elseif ($default_value <= $mf_input_min_length) {
|
228 |
+
// $default_value = $mf_input_min_length - 1;
|
229 |
+
// }
|
230 |
+
?>
|
231 |
+
|
232 |
+
<input class="mf-input mf-rs-range" id="mf-input-range-<?php echo esc_attr($this->get_id()); ?>"
|
233 |
name="<?php echo esc_attr($mf_input_name); ?>"
|
234 |
<?php echo esc_attr(($mf_input_required === 'yes') ? 'required' : '')?>
|
235 |
<?php //echo esc_attr($mf_input_readonly_status); ?>
|
236 |
+
value="<?php echo esc_attr($default_value); ?>"
|
237 |
min="<?php echo esc_attr($mf_input_min_length); ?>"
|
238 |
max="<?php echo esc_attr($mf_input_max_length); ?>"
|
239 |
step="<?php echo esc_attr($mf_input_steps_control);?>"
|
widgets/rating/rating.php
CHANGED
@@ -4,7 +4,8 @@ defined( 'ABSPATH' ) || exit;
|
|
4 |
|
5 |
Class MetForm_Input_Rating extends Widget_Base{
|
6 |
|
7 |
-
|
|
|
8 |
|
9 |
public function get_name() {
|
10 |
return 'mf-rating';
|
@@ -20,7 +21,11 @@ Class MetForm_Input_Rating extends Widget_Base{
|
|
20 |
|
21 |
public function get_categories() {
|
22 |
return [ 'metform' ];
|
23 |
-
|
|
|
|
|
|
|
|
|
24 |
|
25 |
protected function _register_controls() {
|
26 |
|
@@ -37,7 +42,7 @@ Class MetForm_Input_Rating extends Widget_Base{
|
|
37 |
$this->end_controls_section();
|
38 |
|
39 |
$this->start_controls_section(
|
40 |
-
'
|
41 |
[
|
42 |
'label' => esc_html__( 'Settings', 'metform' ),
|
43 |
'tab' => Controls_Manager::TAB_CONTENT,
|
@@ -59,6 +64,10 @@ Class MetForm_Input_Rating extends Widget_Base{
|
|
59 |
);
|
60 |
|
61 |
$this->end_controls_section();
|
|
|
|
|
|
|
|
|
62 |
|
63 |
$this->start_controls_section(
|
64 |
'label_section',
|
@@ -291,17 +300,19 @@ Class MetForm_Input_Rating extends Widget_Base{
|
|
291 |
$settings = $this->get_settings_for_display();
|
292 |
extract($settings);
|
293 |
|
294 |
-
|
|
|
|
|
295 |
|
296 |
if($mf_input_label_status == 'yes'){
|
297 |
?>
|
298 |
-
<label class="mf-input-label" for="mf-input-
|
299 |
<span class="mf-input-required-indicator"><?php echo esc_html(($mf_input_required === 'yes') ? '*' : '');?></span>
|
300 |
</label>
|
301 |
<?php
|
302 |
}
|
303 |
?>
|
304 |
-
<ul
|
305 |
<?php for($i = 1; $i <= $mf_input_rating_number; $i++ ):?>
|
306 |
<li class="star-li star <?php if($i == 1){echo 'selected';}?>" data-value="<?php echo esc_attr($i);?>">
|
307 |
<i class="mf-star dashicons-before dashicons-star-filled"></i>
|
4 |
|
5 |
Class MetForm_Input_Rating extends Widget_Base{
|
6 |
|
7 |
+
use \MetForm\Traits\Common_Controls;
|
8 |
+
use \MetForm\Traits\Conditional_Controls;
|
9 |
|
10 |
public function get_name() {
|
11 |
return 'mf-rating';
|
21 |
|
22 |
public function get_categories() {
|
23 |
return [ 'metform' ];
|
24 |
+
}
|
25 |
+
|
26 |
+
public function get_keywords() {
|
27 |
+
return ['metform', 'input', 'rating', 'feedback', 'rate'];
|
28 |
+
}
|
29 |
|
30 |
protected function _register_controls() {
|
31 |
|
42 |
$this->end_controls_section();
|
43 |
|
44 |
$this->start_controls_section(
|
45 |
+
'settings_section',
|
46 |
[
|
47 |
'label' => esc_html__( 'Settings', 'metform' ),
|
48 |
'tab' => Controls_Manager::TAB_CONTENT,
|
64 |
);
|
65 |
|
66 |
$this->end_controls_section();
|
67 |
+
|
68 |
+
if(class_exists('\MetForm\Base\Package')){
|
69 |
+
$this->input_conditional_control();
|
70 |
+
}
|
71 |
|
72 |
$this->start_controls_section(
|
73 |
'label_section',
|
300 |
$settings = $this->get_settings_for_display();
|
301 |
extract($settings);
|
302 |
|
303 |
+
$class = (isset($settings['mf_conditional_logic_form_list']) ? 'mf-conditional-input' : '');
|
304 |
+
|
305 |
+
echo "<div class='mf-input-wrapper ".$class."' data-mf-form-conditional-logic-requirement='".(isset($mf_conditional_logic_form_and_or_operators) ? $mf_conditional_logic_form_and_or_operators : '')."'>";
|
306 |
|
307 |
if($mf_input_label_status == 'yes'){
|
308 |
?>
|
309 |
+
<label class="mf-input-label" for="mf-input-rating"><?php echo esc_html($mf_input_label); ?>
|
310 |
<span class="mf-input-required-indicator"><?php echo esc_html(($mf_input_required === 'yes') ? '*' : '');?></span>
|
311 |
</label>
|
312 |
<?php
|
313 |
}
|
314 |
?>
|
315 |
+
<ul class="mf-input mf-input-rating">
|
316 |
<?php for($i = 1; $i <= $mf_input_rating_number; $i++ ):?>
|
317 |
<li class="star-li star <?php if($i == 1){echo 'selected';}?>" data-value="<?php echo esc_attr($i);?>">
|
318 |
<i class="mf-star dashicons-before dashicons-star-filled"></i>
|
widgets/recaptcha/recaptcha.php
CHANGED
@@ -24,6 +24,10 @@ Class MetForm_Input_Recaptcha extends Widget_Base{
|
|
24 |
public function get_categories() {
|
25 |
return [ 'metform' ];
|
26 |
}
|
|
|
|
|
|
|
|
|
27 |
|
28 |
protected function _register_controls() {
|
29 |
$this->start_controls_section(
|
24 |
public function get_categories() {
|
25 |
return [ 'metform' ];
|
26 |
}
|
27 |
+
|
28 |
+
public function get_keywords() {
|
29 |
+
return ['metform', 'input', 'captcha', 'recaptcha', 'google'];
|
30 |
+
}
|
31 |
|
32 |
protected function _register_controls() {
|
33 |
$this->start_controls_section(
|
widgets/response/response.php
CHANGED
@@ -19,6 +19,10 @@ Class MetForm_Input_Response extends Widget_Base{
|
|
19 |
public function get_categories() {
|
20 |
return [ 'metform' ];
|
21 |
}
|
|
|
|
|
|
|
|
|
22 |
|
23 |
protected function _register_controls() {
|
24 |
|
@@ -38,7 +42,40 @@ Class MetForm_Input_Response extends Widget_Base{
|
|
38 |
]
|
39 |
);
|
40 |
|
41 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
}
|
43 |
|
44 |
protected function render($instance = []){
|
19 |
public function get_categories() {
|
20 |
return [ 'metform' ];
|
21 |
}
|
22 |
+
|
23 |
+
public function get_keywords() {
|
24 |
+
return ['metform', 'input', 'response', 'success', 'submission', 'message'];
|
25 |
+
}
|
26 |
|
27 |
protected function _register_controls() {
|
28 |
|
42 |
]
|
43 |
);
|
44 |
|
45 |
+
$this->end_controls_section();
|
46 |
+
|
47 |
+
$this->start_controls_section(
|
48 |
+
'style_section',
|
49 |
+
[
|
50 |
+
'label' => esc_html__( 'Style', 'metform' ),
|
51 |
+
'tab' => Controls_Manager::TAB_STYLE,
|
52 |
+
]
|
53 |
+
);
|
54 |
+
|
55 |
+
$this->add_control(
|
56 |
+
'mf_response_padding',
|
57 |
+
[
|
58 |
+
'label' => esc_html__( 'Padding', 'metform' ),
|
59 |
+
'type' => Controls_Manager::DIMENSIONS,
|
60 |
+
'size_units' => [ 'px', '%', 'em' ],
|
61 |
+
'selectors' => [
|
62 |
+
'{{WRAPPER}} .metform-msg' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
63 |
+
],
|
64 |
+
]
|
65 |
+
);
|
66 |
+
|
67 |
+
$this->add_group_control(
|
68 |
+
Group_Control_Typography::get_type(),
|
69 |
+
[
|
70 |
+
'name' => 'mf_response_typography',
|
71 |
+
'label' => esc_html__( 'Typography', 'metform' ),
|
72 |
+
'scheme' => Scheme_Typography::TYPOGRAPHY_1,
|
73 |
+
'selector' => '{{WRAPPER}} .metform-msg',
|
74 |
+
]
|
75 |
+
);
|
76 |
+
|
77 |
+
$this->end_controls_section();
|
78 |
+
|
79 |
}
|
80 |
|
81 |
protected function render($instance = []){
|
widgets/select/select.php
CHANGED
@@ -4,7 +4,8 @@ defined( 'ABSPATH' ) || exit;
|
|
4 |
|
5 |
Class MetForm_Input_Select extends Widget_Base{
|
6 |
|
7 |
-
|
|
|
8 |
|
9 |
public function get_name() {
|
10 |
return 'mf-select';
|
@@ -21,6 +22,10 @@ Class MetForm_Input_Select extends Widget_Base{
|
|
21 |
public function get_categories() {
|
22 |
return [ 'metform' ];
|
23 |
}
|
|
|
|
|
|
|
|
|
24 |
|
25 |
protected function _register_controls() {
|
26 |
|
@@ -78,17 +83,17 @@ Class MetForm_Input_Select extends Widget_Base{
|
|
78 |
'default' => [
|
79 |
[
|
80 |
'mf_input_option_text' => 'Item 1',
|
81 |
-
'mf_input_option_value' => '
|
82 |
'mf_input_option_status' => '',
|
83 |
],
|
84 |
[
|
85 |
'mf_input_option_text' => 'Item 2',
|
86 |
-
'mf_input_option_value' => '
|
87 |
'mf_input_option_status' => '',
|
88 |
],
|
89 |
[
|
90 |
'mf_input_option_text' => 'Item 3',
|
91 |
-
'mf_input_option_value' => '
|
92 |
'mf_input_option_status' => '',
|
93 |
],
|
94 |
],
|
@@ -99,7 +104,7 @@ Class MetForm_Input_Select extends Widget_Base{
|
|
99 |
$this->end_controls_section();
|
100 |
|
101 |
$this->start_controls_section(
|
102 |
-
'
|
103 |
[
|
104 |
'label' => esc_html__( 'Settings', 'metform' ),
|
105 |
'tab' => Controls_Manager::TAB_CONTENT,
|
@@ -110,6 +115,9 @@ Class MetForm_Input_Select extends Widget_Base{
|
|
110 |
|
111 |
$this->end_controls_section();
|
112 |
|
|
|
|
|
|
|
113 |
|
114 |
$this->start_controls_section(
|
115 |
'label_section',
|
@@ -157,7 +165,9 @@ Class MetForm_Input_Select extends Widget_Base{
|
|
157 |
$settings = $this->get_settings_for_display();
|
158 |
extract($settings);
|
159 |
|
160 |
-
|
|
|
|
|
161 |
|
162 |
if($mf_input_label_status == 'yes'){
|
163 |
?>
|
4 |
|
5 |
Class MetForm_Input_Select extends Widget_Base{
|
6 |
|
7 |
+
use \MetForm\Traits\Common_Controls;
|
8 |
+
use \MetForm\Traits\Conditional_Controls;
|
9 |
|
10 |
public function get_name() {
|
11 |
return 'mf-select';
|
22 |
public function get_categories() {
|
23 |
return [ 'metform' ];
|
24 |
}
|
25 |
+
|
26 |
+
public function get_keywords() {
|
27 |
+
return ['metform', 'input', 'select', 'dropdown'];
|
28 |
+
}
|
29 |
|
30 |
protected function _register_controls() {
|
31 |
|
83 |
'default' => [
|
84 |
[
|
85 |
'mf_input_option_text' => 'Item 1',
|
86 |
+
'mf_input_option_value' => 'value-1',
|
87 |
'mf_input_option_status' => '',
|
88 |
],
|
89 |
[
|
90 |
'mf_input_option_text' => 'Item 2',
|
91 |
+
'mf_input_option_value' => 'value-2',
|
92 |
'mf_input_option_status' => '',
|
93 |
],
|
94 |
[
|
95 |
'mf_input_option_text' => 'Item 3',
|
96 |
+
'mf_input_option_value' => 'value-3',
|
97 |
'mf_input_option_status' => '',
|
98 |
],
|
99 |
],
|
104 |
$this->end_controls_section();
|
105 |
|
106 |
$this->start_controls_section(
|
107 |
+
'settings_section',
|
108 |
[
|
109 |
'label' => esc_html__( 'Settings', 'metform' ),
|
110 |
'tab' => Controls_Manager::TAB_CONTENT,
|
115 |
|
116 |
$this->end_controls_section();
|
117 |
|
118 |
+
if(class_exists('\MetForm\Base\Package')){
|
119 |
+
$this->input_conditional_control();
|
120 |
+
}
|
121 |
|
122 |
$this->start_controls_section(
|
123 |
'label_section',
|
165 |
$settings = $this->get_settings_for_display();
|
166 |
extract($settings);
|
167 |
|
168 |
+
$class = (isset($settings['mf_conditional_logic_form_list']) ? 'mf-conditional-input' : '');
|
169 |
+
|
170 |
+
echo "<div class='mf-input-wrapper ".$class."' data-mf-form-conditional-logic-requirement='".(isset($mf_conditional_logic_form_and_or_operators) ? $mf_conditional_logic_form_and_or_operators : '')."'>";
|
171 |
|
172 |
if($mf_input_label_status == 'yes'){
|
173 |
?>
|
widgets/switch/switch.php
CHANGED
@@ -5,6 +5,7 @@ defined( 'ABSPATH' ) || exit;
|
|
5 |
Class MetForm_Input_Switch extends Widget_Base{
|
6 |
|
7 |
use \MetForm\Traits\Common_Controls;
|
|
|
8 |
|
9 |
public function get_name() {
|
10 |
return 'mf-switch';
|
@@ -21,6 +22,10 @@ Class MetForm_Input_Switch extends Widget_Base{
|
|
21 |
public function get_categories() {
|
22 |
return [ 'metform' ];
|
23 |
}
|
|
|
|
|
|
|
|
|
24 |
|
25 |
protected function _register_controls() {
|
26 |
|
@@ -37,7 +42,7 @@ Class MetForm_Input_Switch extends Widget_Base{
|
|
37 |
$this->end_controls_section();
|
38 |
|
39 |
$this->start_controls_section(
|
40 |
-
'
|
41 |
[
|
42 |
'label' => esc_html__( 'Settings', 'metform' ),
|
43 |
'tab' => Controls_Manager::TAB_CONTENT,
|
@@ -48,6 +53,10 @@ Class MetForm_Input_Switch extends Widget_Base{
|
|
48 |
|
49 |
$this->end_controls_section();
|
50 |
|
|
|
|
|
|
|
|
|
51 |
$this->start_controls_section(
|
52 |
'label_section',
|
53 |
[
|
@@ -143,7 +152,9 @@ Class MetForm_Input_Switch extends Widget_Base{
|
|
143 |
$settings = $this->get_settings_for_display();
|
144 |
extract($settings);
|
145 |
|
146 |
-
|
|
|
|
|
147 |
|
148 |
if($mf_input_label_status == 'yes'){
|
149 |
?>
|
@@ -154,7 +165,7 @@ Class MetForm_Input_Switch extends Widget_Base{
|
|
154 |
}
|
155 |
?>
|
156 |
<span class="mf-input-switch-control mf-input-switch mf-input">
|
157 |
-
<input type="checkbox" name="<?php echo esc_attr($mf_input_name); ?>" value="1" class="mf-input-control" id="mf-input-switch-<?php echo esc_attr($this->get_id()); ?>">
|
158 |
<label class="mf-input-control-label" for="mf-input-switch-<?php echo esc_attr($this->get_id()); ?>"></label>
|
159 |
</span>
|
160 |
<?php
|
5 |
Class MetForm_Input_Switch extends Widget_Base{
|
6 |
|
7 |
use \MetForm\Traits\Common_Controls;
|
8 |
+
use \MetForm\Traits\Conditional_Controls;
|
9 |
|
10 |
public function get_name() {
|
11 |
return 'mf-switch';
|
22 |
public function get_categories() {
|
23 |
return [ 'metform' ];
|
24 |
}
|
25 |
+
|
26 |
+
public function get_keywords() {
|
27 |
+
return ['metform', 'input', 'switch', 'on', 'off'];
|
28 |
+
}
|
29 |
|
30 |
protected function _register_controls() {
|
31 |
|
42 |
$this->end_controls_section();
|
43 |
|
44 |
$this->start_controls_section(
|
45 |
+
'settings_section',
|
46 |
[
|
47 |
'label' => esc_html__( 'Settings', 'metform' ),
|
48 |
'tab' => Controls_Manager::TAB_CONTENT,
|
53 |
|
54 |
$this->end_controls_section();
|
55 |
|
56 |
+
if(class_exists('\MetForm\Base\Package')){
|
57 |
+
$this->input_conditional_control();
|
58 |
+
}
|
59 |
+
|
60 |
$this->start_controls_section(
|
61 |
'label_section',
|
62 |
[
|
152 |
$settings = $this->get_settings_for_display();
|
153 |
extract($settings);
|
154 |
|
155 |
+
$class = (isset($settings['mf_conditional_logic_form_list']) ? 'mf-conditional-input' : '');
|
156 |
+
|
157 |
+
echo "<div class='mf-input-wrapper ".$class."' data-mf-form-conditional-logic-requirement='".(isset($mf_conditional_logic_form_and_or_operators) ? $mf_conditional_logic_form_and_or_operators : '')."'>";
|
158 |
|
159 |
if($mf_input_label_status == 'yes'){
|
160 |
?>
|
165 |
}
|
166 |
?>
|
167 |
<span class="mf-input-switch-control mf-input-switch mf-input">
|
168 |
+
<input type="checkbox" name="<?php echo esc_attr($mf_input_name); ?>" value="1" class="mf-input mf-input-control" id="mf-input-switch-<?php echo esc_attr($this->get_id()); ?>">
|
169 |
<label class="mf-input-control-label" for="mf-input-switch-<?php echo esc_attr($this->get_id()); ?>"></label>
|
170 |
</span>
|
171 |
<?php
|
widgets/{listing/listing-phone.php → telephone/telephone.php}
RENAMED
@@ -2,16 +2,17 @@
|
|
2 |
namespace Elementor;
|
3 |
defined( 'ABSPATH' ) || exit;
|
4 |
|
5 |
-
Class
|
6 |
|
7 |
use \MetForm\Traits\Common_Controls;
|
|
|
8 |
|
9 |
public function get_name() {
|
10 |
-
return 'mf-
|
11 |
}
|
12 |
|
13 |
public function get_title() {
|
14 |
-
return esc_html__( '
|
15 |
}
|
16 |
|
17 |
public function show_in_panel() {
|
@@ -21,6 +22,10 @@ Class MetForm_Input_Listing_Phone extends Widget_Base{
|
|
21 |
public function get_categories() {
|
22 |
return [ 'metform' ];
|
23 |
}
|
|
|
|
|
|
|
|
|
24 |
|
25 |
protected function _register_controls() {
|
26 |
|
@@ -32,12 +37,12 @@ Class MetForm_Input_Listing_Phone extends Widget_Base{
|
|
32 |
]
|
33 |
);
|
34 |
|
35 |
-
$this->input_content_controls(
|
36 |
|
37 |
$this->end_controls_section();
|
38 |
|
39 |
$this->start_controls_section(
|
40 |
-
'
|
41 |
[
|
42 |
'label' => esc_html__( 'Settings', 'metform' ),
|
43 |
'tab' => Controls_Manager::TAB_CONTENT,
|
@@ -46,7 +51,11 @@ Class MetForm_Input_Listing_Phone extends Widget_Base{
|
|
46 |
|
47 |
$this->input_setting_controls(['MAX_MIN']);
|
48 |
|
49 |
-
|
|
|
|
|
|
|
|
|
50 |
|
51 |
$this->start_controls_section(
|
52 |
'label_section',
|
@@ -105,18 +114,20 @@ Class MetForm_Input_Listing_Phone extends Widget_Base{
|
|
105 |
protected function render($instance = []){
|
106 |
$settings = $this->get_settings_for_display();
|
107 |
extract($settings);
|
108 |
-
|
109 |
-
|
110 |
-
|
|
|
|
|
111 |
if($mf_input_label_status == 'yes'){
|
112 |
?>
|
113 |
-
<label class="mf-input-label" for="mf-input-
|
114 |
<span class="mf-input-required-indicator"><?php echo esc_html(($mf_input_required === 'yes') ? '*' : '');?></span>
|
115 |
</label>
|
116 |
<?php
|
117 |
}
|
118 |
?>
|
119 |
-
<input type="
|
120 |
name="<?php echo esc_attr($mf_input_name); ?>"
|
121 |
placeholder="<?php echo esc_html($mf_input_placeholder); ?>"
|
122 |
<?php echo esc_attr(($mf_input_required === 'yes') ? 'required' : '')?>
|
2 |
namespace Elementor;
|
3 |
defined( 'ABSPATH' ) || exit;
|
4 |
|
5 |
+
Class MetForm_Input_Telephone extends Widget_Base{
|
6 |
|
7 |
use \MetForm\Traits\Common_Controls;
|
8 |
+
use \MetForm\Traits\Conditional_Controls;
|
9 |
|
10 |
public function get_name() {
|
11 |
+
return 'mf-telephone';
|
12 |
}
|
13 |
|
14 |
public function get_title() {
|
15 |
+
return esc_html__( 'Telephone', 'metform' );
|
16 |
}
|
17 |
|
18 |
public function show_in_panel() {
|
22 |
public function get_categories() {
|
23 |
return [ 'metform' ];
|
24 |
}
|
25 |
+
|
26 |
+
public function get_keywords() {
|
27 |
+
return ['metform', 'input', 'telephone', 'phone', 'tel'];
|
28 |
+
}
|
29 |
|
30 |
protected function _register_controls() {
|
31 |
|
37 |
]
|
38 |
);
|
39 |
|
40 |
+
$this->input_content_controls();
|
41 |
|
42 |
$this->end_controls_section();
|
43 |
|
44 |
$this->start_controls_section(
|
45 |
+
'settings_section',
|
46 |
[
|
47 |
'label' => esc_html__( 'Settings', 'metform' ),
|
48 |
'tab' => Controls_Manager::TAB_CONTENT,
|
51 |
|
52 |
$this->input_setting_controls(['MAX_MIN']);
|
53 |
|
54 |
+
$this->end_controls_section();
|
55 |
+
|
56 |
+
if(class_exists('\MetForm\Base\Package')){
|
57 |
+
$this->input_conditional_control();
|
58 |
+
}
|
59 |
|
60 |
$this->start_controls_section(
|
61 |
'label_section',
|
114 |
protected function render($instance = []){
|
115 |
$settings = $this->get_settings_for_display();
|
116 |
extract($settings);
|
117 |
+
|
118 |
+
$class = (isset($settings['mf_conditional_logic_form_list']) ? 'mf-conditional-input' : '');
|
119 |
+
|
120 |
+
echo "<div class='mf-input-wrapper ".$class."' data-mf-form-conditional-logic-requirement='".(isset($mf_conditional_logic_form_and_or_operators) ? $mf_conditional_logic_form_and_or_operators : '')."'>";
|
121 |
+
|
122 |
if($mf_input_label_status == 'yes'){
|
123 |
?>
|
124 |
+
<label class="mf-input-label" for="mf-input-telephone-<?php echo esc_attr($this->get_id()); ?>"><?php echo esc_html($mf_input_label); ?>
|
125 |
<span class="mf-input-required-indicator"><?php echo esc_html(($mf_input_required === 'yes') ? '*' : '');?></span>
|
126 |
</label>
|
127 |
<?php
|
128 |
}
|
129 |
?>
|
130 |
+
<input type="tel" class="mf-input" id="mf-input-telephone-<?php echo esc_attr($this->get_id()); ?>"
|
131 |
name="<?php echo esc_attr($mf_input_name); ?>"
|
132 |
placeholder="<?php echo esc_html($mf_input_placeholder); ?>"
|
133 |
<?php echo esc_attr(($mf_input_required === 'yes') ? 'required' : '')?>
|
widgets/text/text.php
CHANGED
@@ -5,6 +5,7 @@ defined( 'ABSPATH' ) || exit;
|
|
5 |
Class MetForm_Input_Text extends Widget_Base{
|
6 |
|
7 |
use \MetForm\Traits\Common_Controls;
|
|
|
8 |
|
9 |
public function get_name() {
|
10 |
return 'mf-text';
|
@@ -21,6 +22,10 @@ Class MetForm_Input_Text extends Widget_Base{
|
|
21 |
public function get_categories() {
|
22 |
return [ 'metform' ];
|
23 |
}
|
|
|
|
|
|
|
|
|
24 |
|
25 |
protected function _register_controls() {
|
26 |
|
@@ -37,7 +42,7 @@ Class MetForm_Input_Text extends Widget_Base{
|
|
37 |
$this->end_controls_section();
|
38 |
|
39 |
$this->start_controls_section(
|
40 |
-
'
|
41 |
[
|
42 |
'label' => esc_html__( 'Settings', 'metform' ),
|
43 |
'tab' => Controls_Manager::TAB_CONTENT,
|
@@ -46,7 +51,11 @@ Class MetForm_Input_Text extends Widget_Base{
|
|
46 |
|
47 |
$this->input_setting_controls(['MAX_MIN']);
|
48 |
|
49 |
-
|
|
|
|
|
|
|
|
|
50 |
|
51 |
$this->start_controls_section(
|
52 |
'label_section',
|
@@ -105,8 +114,10 @@ Class MetForm_Input_Text extends Widget_Base{
|
|
105 |
protected function render($instance = []){
|
106 |
$settings = $this->get_settings_for_display();
|
107 |
extract($settings);
|
108 |
-
|
109 |
-
|
|
|
|
|
110 |
|
111 |
if($mf_input_label_status == 'yes'){
|
112 |
?>
|
5 |
Class MetForm_Input_Text extends Widget_Base{
|
6 |
|
7 |
use \MetForm\Traits\Common_Controls;
|
8 |
+
use \MetForm\Traits\Conditional_Controls;
|
9 |
|
10 |
public function get_name() {
|
11 |
return 'mf-text';
|
22 |
public function get_categories() {
|
23 |
return [ 'metform' ];
|
24 |
}
|
25 |
+
|
26 |
+
public function get_keywords() {
|
27 |
+
return ['metform', 'input', 'text', 'short text'];
|
28 |
+
}
|
29 |
|
30 |
protected function _register_controls() {
|
31 |
|
42 |
$this->end_controls_section();
|
43 |
|
44 |
$this->start_controls_section(
|
45 |
+
'settings_section',
|
46 |
[
|
47 |
'label' => esc_html__( 'Settings', 'metform' ),
|
48 |
'tab' => Controls_Manager::TAB_CONTENT,
|
51 |
|
52 |
$this->input_setting_controls(['MAX_MIN']);
|
53 |
|
54 |
+
$this->end_controls_section();
|
55 |
+
|
56 |
+
if(class_exists('\MetForm\Base\Package')){
|
57 |
+
$this->input_conditional_control();
|
58 |
+
}
|
59 |
|
60 |
$this->start_controls_section(
|
61 |
'label_section',
|
114 |
protected function render($instance = []){
|
115 |
$settings = $this->get_settings_for_display();
|
116 |
extract($settings);
|
117 |
+
|
118 |
+
$class = (isset($settings['mf_conditional_logic_form_list']) ? 'mf-conditional-input' : '');
|
119 |
+
|
120 |
+
echo "<div class='mf-input-wrapper ".$class."' data-mf-form-conditional-logic-requirement='".(isset($mf_conditional_logic_form_and_or_operators) ? $mf_conditional_logic_form_and_or_operators : '')."'>";
|
121 |
|
122 |
if($mf_input_label_status == 'yes'){
|
123 |
?>
|
widgets/textarea/textarea.php
CHANGED
@@ -4,7 +4,10 @@ namespace Elementor;
|
|
4 |
defined('ABSPATH') || exit;
|
5 |
|
6 |
Class MetForm_Input_Textarea extends Widget_Base{
|
7 |
-
|
|
|
|
|
|
|
8 |
public function get_name() {
|
9 |
return 'mf-textarea';
|
10 |
}
|
@@ -20,6 +23,10 @@ Class MetForm_Input_Textarea extends Widget_Base{
|
|
20 |
public function get_categories() {
|
21 |
return [ 'metform' ];
|
22 |
}
|
|
|
|
|
|
|
|
|
23 |
|
24 |
protected function _register_controls() {
|
25 |
|
@@ -36,7 +43,7 @@ Class MetForm_Input_Textarea extends Widget_Base{
|
|
36 |
$this->end_controls_section();
|
37 |
|
38 |
$this->start_controls_section(
|
39 |
-
'
|
40 |
[
|
41 |
'label' => esc_html__( 'Settings', 'metform' ),
|
42 |
'tab' => Controls_Manager::TAB_CONTENT,
|
@@ -47,6 +54,10 @@ Class MetForm_Input_Textarea extends Widget_Base{
|
|
47 |
|
48 |
$this->end_controls_section();
|
49 |
|
|
|
|
|
|
|
|
|
50 |
$this->start_controls_section(
|
51 |
'label_section',
|
52 |
[
|
@@ -128,7 +139,9 @@ Class MetForm_Input_Textarea extends Widget_Base{
|
|
128 |
$settings = $this->get_settings_for_display();
|
129 |
extract($settings);
|
130 |
|
131 |
-
|
|
|
|
|
132 |
|
133 |
if($mf_input_label_status == 'yes'){
|
134 |
?>
|
4 |
defined('ABSPATH') || exit;
|
5 |
|
6 |
Class MetForm_Input_Textarea extends Widget_Base{
|
7 |
+
|
8 |
+
use \MetForm\Traits\Common_Controls;
|
9 |
+
use \MetForm\Traits\Conditional_Controls;
|
10 |
+
|
11 |
public function get_name() {
|
12 |
return 'mf-textarea';
|
13 |
}
|
23 |
public function get_categories() {
|
24 |
return [ 'metform' ];
|
25 |
}
|
26 |
+
|
27 |
+
public function get_keywords() {
|
28 |
+
return ['metform', 'input', 'textarea', 'long text', 'paragraph'];
|
29 |
+
}
|
30 |
|
31 |
protected function _register_controls() {
|
32 |
|
43 |
$this->end_controls_section();
|
44 |
|
45 |
$this->start_controls_section(
|
46 |
+
'settings_section',
|
47 |
[
|
48 |
'label' => esc_html__( 'Settings', 'metform' ),
|
49 |
'tab' => Controls_Manager::TAB_CONTENT,
|
54 |
|
55 |
$this->end_controls_section();
|
56 |
|
57 |
+
if(class_exists('\MetForm\Base\Package')){
|
58 |
+
$this->input_conditional_control();
|
59 |
+
}
|
60 |
+
|
61 |
$this->start_controls_section(
|
62 |
'label_section',
|
63 |
[
|
139 |
$settings = $this->get_settings_for_display();
|
140 |
extract($settings);
|
141 |
|
142 |
+
$class = (isset($settings['mf_conditional_logic_form_list']) ? 'mf-conditional-input' : '');
|
143 |
+
|
144 |
+
echo "<div class='mf-input-wrapper ".$class."' data-mf-form-conditional-logic-requirement='".(isset($mf_conditional_logic_form_and_or_operators) ? $mf_conditional_logic_form_and_or_operators : '')."'>";
|
145 |
|
146 |
if($mf_input_label_status == 'yes'){
|
147 |
?>
|
widgets/time/time.php
CHANGED
@@ -3,7 +3,8 @@ namespace Elementor;
|
|
3 |
defined( 'ABSPATH' ) || exit;
|
4 |
|
5 |
Class MetForm_Input_Time extends Widget_Base{
|
6 |
-
|
|
|
7 |
|
8 |
public function get_name() {
|
9 |
return 'mf-time';
|
@@ -20,6 +21,10 @@ Class MetForm_Input_Time extends Widget_Base{
|
|
20 |
public function get_categories() {
|
21 |
return [ 'metform' ];
|
22 |
}
|
|
|
|
|
|
|
|
|
23 |
|
24 |
protected function _register_controls() {
|
25 |
|
@@ -36,7 +41,7 @@ Class MetForm_Input_Time extends Widget_Base{
|
|
36 |
$this->end_controls_section();
|
37 |
|
38 |
$this->start_controls_section(
|
39 |
-
'
|
40 |
[
|
41 |
'label' => esc_html__( 'Settings', 'metform' ),
|
42 |
'tab' => Controls_Manager::TAB_CONTENT,
|
@@ -59,6 +64,10 @@ Class MetForm_Input_Time extends Widget_Base{
|
|
59 |
|
60 |
$this->end_controls_section();
|
61 |
|
|
|
|
|
|
|
|
|
62 |
$this->start_controls_section(
|
63 |
'label_section',
|
64 |
[
|
@@ -104,7 +113,9 @@ Class MetForm_Input_Time extends Widget_Base{
|
|
104 |
$settings = $this->get_settings_for_display();
|
105 |
extract($settings);
|
106 |
|
107 |
-
|
|
|
|
|
108 |
|
109 |
if($mf_input_label_status == 'yes'){
|
110 |
?>
|
@@ -114,10 +125,11 @@ Class MetForm_Input_Time extends Widget_Base{
|
|
114 |
<?php
|
115 |
}
|
116 |
?>
|
117 |
-
<input type="time" class="mf-input
|
118 |
-
name="<?php echo esc_attr($mf_input_name); ?>"
|
|
|
119 |
<?php echo esc_attr(($mf_input_required === 'yes') ? 'required' : '')?>
|
120 |
-
<?php echo esc_attr(($mf_input_time_24h === 'yes') ? 'mftime24h=yes' : '')?>
|
121 |
<?php //echo esc_attr($mf_input_readonly_status); ?>
|
122 |
>
|
123 |
<?php
|
3 |
defined( 'ABSPATH' ) || exit;
|
4 |
|
5 |
Class MetForm_Input_Time extends Widget_Base{
|
6 |
+
use \MetForm\Traits\Common_Controls;
|
7 |
+
use \MetForm\Traits\Conditional_Controls;
|
8 |
|
9 |
public function get_name() {
|
10 |
return 'mf-time';
|
21 |
public function get_categories() {
|
22 |
return [ 'metform' ];
|
23 |
}
|
24 |
+
|
25 |
+
public function get_keywords() {
|
26 |
+
return ['metform', 'input', 'time', 'clock'];
|
27 |
+
}
|
28 |
|
29 |
protected function _register_controls() {
|
30 |
|
41 |
$this->end_controls_section();
|
42 |
|
43 |
$this->start_controls_section(
|
44 |
+
'settings_section',
|
45 |
[
|
46 |
'label' => esc_html__( 'Settings', 'metform' ),
|
47 |
'tab' => Controls_Manager::TAB_CONTENT,
|
64 |
|
65 |
$this->end_controls_section();
|
66 |
|
67 |
+
if(class_exists('\MetForm\Base\Package')){
|
68 |
+
$this->input_conditional_control();
|
69 |
+
}
|
70 |
+
|
71 |
$this->start_controls_section(
|
72 |
'label_section',
|
73 |
[
|
113 |
$settings = $this->get_settings_for_display();
|
114 |
extract($settings);
|
115 |
|
116 |
+
$class = (isset($settings['mf_conditional_logic_form_list']) ? 'mf-conditional-input' : '');
|
117 |
+
|
118 |
+
echo "<div class='mf-input-wrapper ".$class."' data-mf-form-conditional-logic-requirement='".(isset($mf_conditional_logic_form_and_or_operators) ? $mf_conditional_logic_form_and_or_operators : '')."'>";
|
119 |
|
120 |
if($mf_input_label_status == 'yes'){
|
121 |
?>
|
125 |
<?php
|
126 |
}
|
127 |
?>
|
128 |
+
<input type="time" class="mf-input mf-input-time" id="mf-input-time-<?php echo esc_attr($this->get_id()); ?>"
|
129 |
+
name="<?php echo esc_attr($mf_input_name); ?>"
|
130 |
+
placeholder="<?php echo esc_html($mf_input_placeholder); ?>"
|
131 |
<?php echo esc_attr(($mf_input_required === 'yes') ? 'required' : '')?>
|
132 |
+
<?php echo esc_attr(($mf_input_time_24h === 'yes') ? 'data-mftime24h=yes' : '')?>
|
133 |
<?php //echo esc_attr($mf_input_readonly_status); ?>
|
134 |
>
|
135 |
<?php
|
widgets/url/url.php
CHANGED
@@ -5,6 +5,7 @@ defined( 'ABSPATH' ) || exit;
|
|
5 |
Class MetForm_Input_Url extends Widget_Base{
|
6 |
|
7 |
use \MetForm\Traits\Common_Controls;
|
|
|
8 |
|
9 |
public function get_name() {
|
10 |
return 'mf-url';
|
@@ -22,6 +23,11 @@ Class MetForm_Input_Url extends Widget_Base{
|
|
22 |
return [ 'metform' ];
|
23 |
}
|
24 |
|
|
|
|
|
|
|
|
|
|
|
25 |
protected function _register_controls() {
|
26 |
|
27 |
$this->start_controls_section(
|
@@ -37,7 +43,7 @@ Class MetForm_Input_Url extends Widget_Base{
|
|
37 |
$this->end_controls_section();
|
38 |
|
39 |
$this->start_controls_section(
|
40 |
-
'
|
41 |
[
|
42 |
'label' => esc_html__( 'Settings', 'metform' ),
|
43 |
'tab' => Controls_Manager::TAB_CONTENT,
|
@@ -48,6 +54,10 @@ Class MetForm_Input_Url extends Widget_Base{
|
|
48 |
|
49 |
$this->end_controls_section();
|
50 |
|
|
|
|
|
|
|
|
|
51 |
$this->start_controls_section(
|
52 |
'label_section',
|
53 |
[
|
@@ -94,7 +104,9 @@ Class MetForm_Input_Url extends Widget_Base{
|
|
94 |
$settings = $this->get_settings_for_display();
|
95 |
extract($settings);
|
96 |
|
97 |
-
|
|
|
|
|
98 |
|
99 |
if($mf_input_label_status == 'yes'){
|
100 |
?>
|
5 |
Class MetForm_Input_Url extends Widget_Base{
|
6 |
|
7 |
use \MetForm\Traits\Common_Controls;
|
8 |
+
use \MetForm\Traits\Conditional_Controls;
|
9 |
|
10 |
public function get_name() {
|
11 |
return 'mf-url';
|
23 |
return [ 'metform' ];
|
24 |
}
|
25 |
|
26 |
+
|
27 |
+
public function get_keywords() {
|
28 |
+
return ['metform', 'input', 'url', 'link'];
|
29 |
+
}
|
30 |
+
|
31 |
protected function _register_controls() {
|
32 |
|
33 |
$this->start_controls_section(
|
43 |
$this->end_controls_section();
|
44 |
|
45 |
$this->start_controls_section(
|
46 |
+
'settings_section',
|
47 |
[
|
48 |
'label' => esc_html__( 'Settings', 'metform' ),
|
49 |
'tab' => Controls_Manager::TAB_CONTENT,
|
54 |
|
55 |
$this->end_controls_section();
|
56 |
|
57 |
+
if(class_exists('\MetForm\Base\Package')){
|
58 |
+
$this->input_conditional_control();
|
59 |
+
}
|
60 |
+
|
61 |
$this->start_controls_section(
|
62 |
'label_section',
|
63 |
[
|
104 |
$settings = $this->get_settings_for_display();
|
105 |
extract($settings);
|
106 |
|
107 |
+
$class = (isset($settings['mf_conditional_logic_form_list']) ? 'mf-conditional-input' : '');
|
108 |
+
|
109 |
+
echo "<div class='mf-input-wrapper ".$class."' data-mf-form-conditional-logic-requirement='".(isset($mf_conditional_logic_form_and_or_operators) ? $mf_conditional_logic_form_and_or_operators : '')."'>";
|
110 |
|
111 |
if($mf_input_label_status == 'yes'){
|
112 |
?>
|