Advanced Contact form 7 DB - Version 1.8.0

Version Description

  • Excel issues fixed while importing and exporting data.
  • Compatible with latest version wordpress 5.5
Download this release

Release Info

Developer vsourz1td
Plugin Icon 128x128 Advanced Contact form 7 DB
Version 1.8.0
Comparing to
See all releases

Code changes from version 1.7.2 to 1.8.0

README.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: vsourz1td
3
  Tags: contact form 7 db, advanced cf7 db, contact form 7 database, contact form db, contact form 7, save form data, save contact form, save cf7, database, cf7db, save-contact-form, Save-Forms-Data, import-cf7, export-contact-data, view-cf7-entry
4
  Requires at least: 4.0
5
- Tested up to: 5.2.2
6
- Stable tag: 1.7.2
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -83,6 +83,23 @@ Download Advanced CF7 DB – User Access Manager plugin from <a target="_blank"
83
  * Provide access to single user for creating single/multiple forms
84
 
85
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
 
87
  == Plugin Customization ==
88
  Restrict IP address storage – Various countries restrict websites to store end users IP address. We have a provision to Restrict IP address storage. Now, IP address can be neglected while storing form’s data into database.
@@ -175,6 +192,11 @@ return $contact_form_ids;
175
 
176
  == Changelog ==
177
 
 
 
 
 
 
178
  = 1.7.2 =
179
  * Fixed the delete data case as throws database error.
180
 
2
  Contributors: vsourz1td
3
  Tags: contact form 7 db, advanced cf7 db, contact form 7 database, contact form db, contact form 7, save form data, save contact form, save cf7, database, cf7db, save-contact-form, Save-Forms-Data, import-cf7, export-contact-data, view-cf7-entry
4
  Requires at least: 4.0
5
+ Tested up to: 5.5
6
+ Stable tag: 1.8.0
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
83
  * Provide access to single user for creating single/multiple forms
84
 
85
 
86
+ **mountstride CRM**
87
+ Do you want to effectively manage your end to end customer engagement and want to automate your business workflow?
88
+
89
+ Looking for CRM that Collaborates, Saves Time & Makes Work Easier for You.
90
+
91
+ Try mountstride!
92
+
93
+ mountstride is a simple, efficient & easy to use solution for managing, prioritising and organising your leads.
94
+
95
+ We empower Salespeople by focusing on providing Simple tools to effectively capture, nurture and convert their leads. With less time spent on trying to stay organised your Sales Teams can focus on winning more deals.
96
+
97
+ Free for up to 5 users, no fixed contracts, no credit card required.
98
+
99
+ Start collaborating as a team, as you always wanted to. - <a target="_blank" href="https://www.mountstride.com/contact/">Contact Us</a>.
100
+
101
+ Download Integration of Contact form 7 to mountstride CRM plugin from <a target="_blank" href="https://wordpress.org/plugins/cf7-mountstride-crm-integration/">here</a>
102
+
103
 
104
  == Plugin Customization ==
105
  Restrict IP address storage – Various countries restrict websites to store end users IP address. We have a provision to Restrict IP address storage. Now, IP address can be neglected while storing form’s data into database.
192
 
193
  == Changelog ==
194
 
195
+ = 1.8.0 =
196
+ * Excel issues fixed while importing and exporting data.
197
+ * Compatible with latest version wordpress 5.5
198
+
199
+
200
  = 1.7.2 =
201
  * Fixed the delete data case as throws database error.
202
 
admin/class-advanced-cf7-db-admin.php CHANGED
@@ -76,7 +76,8 @@ class Advanced_Cf7_Db_Admin {
76
  wp_register_style( 'vsz-cf7-db-admin-css', plugin_dir_url( __FILE__ ) . 'css/advanced-cf7-db-admin.css', array(), $this->version, 'all' );
77
  wp_enqueue_style( 'font_awesome_css', plugin_dir_url( __FILE__ ) . 'css/font-awesome.css', array(), $this->version, 'all' );
78
  wp_register_style( 'jquery-datetimepicker-css', plugin_dir_url( __FILE__ ) . 'css/jquery.datetimepicker.css', array(), $this->version, 'all');
79
-
 
80
  }
81
 
82
  /**
@@ -160,6 +161,7 @@ class Advanced_Cf7_Db_Admin {
160
  add_submenu_page( 'contact-form-listing', __('Import CSV', 'advanced-cf7-db'), __('Import CSV', ' advanced-cf7-db'), $cap, 'import_cf7_csv',array($this,'vsz_import_cf7_csv') );
161
  add_submenu_page( 'contact-form-listing', __('Developer Support', 'advanced-cf7-db'), __('Developer Support', ' advanced-cf7-db'), $cap, 'shortcode',array($this,'vsz_shortcode') );
162
  add_submenu_page( 'contact-form-listing', __('Add-ons', 'advanced-cf7-db'), __('Add-ons', ' advanced-cf7-db'), $cap, 'extentions',array($this,'vsz_extension') );
 
163
  }
164
 
165
  /**
@@ -199,6 +201,16 @@ class Advanced_Cf7_Db_Admin {
199
 
200
  }
201
 
 
 
 
 
 
 
 
 
 
 
202
  /**
203
  * Callback function for Import CSV screen
204
  */
@@ -1260,8 +1272,9 @@ function vsz_cf7_export_to_excel($fid, $ids_export){
1260
  $col = 0;
1261
  $row = 1;
1262
  foreach($arrHeader as $colName){
1263
- $cell = $xls->getCellNo($row, $col);
1264
- $xls->setActiveSheetIndex(0)->setCellValue($cell,$colName);
 
1265
  $col++;
1266
  }
1267
 
@@ -1273,8 +1286,9 @@ function vsz_cf7_export_to_excel($fid, $ids_export){
1273
  //Get column order wise value here
1274
  foreach ($fields as $k2 => $v2){
1275
  $colVal = (isset($v[$k2]) ? html_entity_decode($v[$k2]) : '');
1276
- $cell = $xls->getCellNo($row, $col);
1277
- $xls->setActiveSheetIndex(0)->setCellValue($cell,$colVal);
 
1278
  $col++;
1279
  }
1280
  //Consider new row for each entry here
76
  wp_register_style( 'vsz-cf7-db-admin-css', plugin_dir_url( __FILE__ ) . 'css/advanced-cf7-db-admin.css', array(), $this->version, 'all' );
77
  wp_enqueue_style( 'font_awesome_css', plugin_dir_url( __FILE__ ) . 'css/font-awesome.css', array(), $this->version, 'all' );
78
  wp_register_style( 'jquery-datetimepicker-css', plugin_dir_url( __FILE__ ) . 'css/jquery.datetimepicker.css', array(), $this->version, 'all');
79
+ wp_register_style( 'vsz-cf7-db-mounstride-CRM-css', plugin_dir_url( __FILE__ ) . 'css/mounstride-CRM.css', array(), $this->version, 'all' );
80
+ wp_register_style( 'mounstride-CRM-css', plugin_dir_url( __FILE__ ) . 'css/mounstride-CRM.css', array(), $this->version, 'all' );
81
  }
82
 
83
  /**
161
  add_submenu_page( 'contact-form-listing', __('Import CSV', 'advanced-cf7-db'), __('Import CSV', ' advanced-cf7-db'), $cap, 'import_cf7_csv',array($this,'vsz_import_cf7_csv') );
162
  add_submenu_page( 'contact-form-listing', __('Developer Support', 'advanced-cf7-db'), __('Developer Support', ' advanced-cf7-db'), $cap, 'shortcode',array($this,'vsz_shortcode') );
163
  add_submenu_page( 'contact-form-listing', __('Add-ons', 'advanced-cf7-db'), __('Add-ons', ' advanced-cf7-db'), $cap, 'extentions',array($this,'vsz_extension') );
164
+ add_submenu_page( 'contact-form-listing', __('mounstride CRM', 'advanced-cf7-db'), __('mounstride CRM', ' advanced-cf7-db'), $cap, 'mounstride-CRM',array($this,'vsz_mounstride_CRM') );
165
  }
166
 
167
  /**
201
 
202
  }
203
 
204
+ /*
205
+ mounstride CRM landing page
206
+ */
207
+
208
+ function vsz_mounstride_CRM(){
209
+ wp_enqueue_style('vsz-cf7-db-mounstride-CRM-css');
210
+
211
+ require_once plugin_dir_path( __FILE__ ) . 'partials/mounstride-CRM.php';
212
+ }
213
+
214
  /**
215
  * Callback function for Import CSV screen
216
  */
1272
  $col = 0;
1273
  $row = 1;
1274
  foreach($arrHeader as $colName){
1275
+ // $cell = $xls->getCellNo($row, $col);
1276
+ // $xls->setActiveSheetIndex(0)->setCellValue($cell,$colName);
1277
+ $xls->getActiveSheet()->setCellValueByColumnAndRow($col, $row, $colName);
1278
  $col++;
1279
  }
1280
 
1286
  //Get column order wise value here
1287
  foreach ($fields as $k2 => $v2){
1288
  $colVal = (isset($v[$k2]) ? html_entity_decode($v[$k2]) : '');
1289
+ // $cell = $xls->getCellNo($row, $col);
1290
+ // $xls->setActiveSheetIndex(0)->setCellValue($cell,$colVal);
1291
+ $xls->getActiveSheet()->setCellValueByColumnAndRow($col, $row, $colVal);
1292
  $col++;
1293
  }
1294
  //Consider new row for each entry here
admin/css/fonts/poppins-regular-webfont.eot ADDED
Binary file
admin/css/fonts/poppins-regular-webfont.woff ADDED
Binary file
admin/css/fonts/poppins-regular-webfont.woff2 ADDED
Binary file
admin/css/fonts/poppins-semibold-webfont.eot ADDED
Binary file
admin/css/fonts/poppins-semibold-webfont.woff ADDED
Binary file
admin/css/fonts/poppins-semibold-webfont.woff2 ADDED
Binary file
admin/css/mounstride-CRM.css ADDED
@@ -0,0 +1,219 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Fonts */
2
+ @font-face {
3
+ font-family: 'poppins';
4
+ src: url('fonts/poppins-regular-webfont.eot');
5
+ src: url('fonts/poppins-regular-webfont.eot?#iefix') format('embedded-opentype'),
6
+ url('fonts/poppins-regular-webfont.woff2') format('woff2'),
7
+ url('fonts/poppins-regular-webfont.woff') format('woff'),
8
+ url('fonts/poppins-regular-webfont.ttf') format('truetype'),
9
+ url('fonts/poppins-regular-webfont.svg#poppinsregular') format('svg');
10
+ font-weight: 400;
11
+ font-style: normal;
12
+
13
+ }
14
+
15
+ @font-face {
16
+ font-family: 'poppins';
17
+ src: url('fonts/poppins-semibold-webfont.eot');
18
+ src: url('fonts/poppins-semibold-webfont.eot?#iefix') format('embedded-opentype'),
19
+ url('fonts/poppins-semibold-webfont.woff2') format('woff2'),
20
+ url('fonts/poppins-semibold-webfont.woff') format('woff'),
21
+ url('fonts/poppins-semibold-webfont.ttf') format('truetype'),
22
+ url('fonts/poppins-semibold-webfont.svg#poppinssemibold') format('svg');
23
+ font-weight: 600;
24
+ font-style: normal;
25
+
26
+ }
27
+
28
+
29
+ *,*:focus,*:before,*:after{
30
+ box-sizing:border-box
31
+ }
32
+
33
+ .mountstride-crm-wrapper .tbl{
34
+ display:table;
35
+ height:100%;
36
+ width:100%;
37
+ table-layout:fixed;
38
+ }
39
+ .mountstride-crm-wrapper .tbl-cell{
40
+ display:table-cell;
41
+ height:100%;
42
+ vertical-align:middle;
43
+ }
44
+ .mountstride-crm-wrapper{
45
+ background-color:#fff;
46
+ margin-left:-20px;
47
+ font-family: 'poppins',Sans-serif;
48
+ font-weight:400;
49
+ font-size:14px;
50
+ line-height:25px;
51
+ color:#6a6a6a;
52
+ -webkit-font-smoothing: antialiased;
53
+ -moz-osx-font-smoothing: grayscale;
54
+ }
55
+ .mountstride-crm-wrapper h1,.mountstride-crm-wrapper h2,.mountstride-crm-wrapper h3,.mountstride-crm-wrapper h4,.mountstride-crm-wrapper h5,.mountstride-crm-wrapper h6{
56
+ margin:0px 0px 10px 0px;
57
+ line-height:normal;
58
+ font-weight:600;
59
+ }
60
+ .mountstride-crm-wrapper .container{
61
+ max-width: 1000px;
62
+ margin: 0px auto;
63
+ clear: both;
64
+ padding: 0px 15px 0 25px;
65
+ }
66
+ .mountstride-crm-wrapper .top-section{
67
+ padding:50px 0px;
68
+ background-color:#e7f5ff;
69
+ text-align:center;
70
+ margin:40px 0px;
71
+ }
72
+ .mountstride-crm-wrapper .header-typ1{
73
+ font-size: 35px;
74
+ font-weight: 600;
75
+ line-height: 1.4;
76
+ letter-spacing: 0.4px;
77
+ color: #000;
78
+ }
79
+ .mountstride-crm-wrapper .header-typ2{
80
+ font-size: 26px;
81
+ font-weight: 600;
82
+ line-height: 1.4;
83
+ letter-spacing: 0.4px;
84
+ color: #000;
85
+ margin-bottom:15px;
86
+ }
87
+ .mountstride-crm-wrapper .header-typ3{
88
+ color: #000;
89
+ font-size: 24px;
90
+ font-weight: 600;
91
+ line-height: 1.3em;
92
+ letter-spacing: .2px;
93
+ }
94
+ .mountstride-crm-wrapper .base-text{
95
+ max-width: 655px;
96
+ margin: 0 auto;
97
+ font-size: 18px;
98
+ color: #333;
99
+ font-family: 'poppins';
100
+ font-weight: 400;
101
+ }
102
+ .mountstride-crm-wrapper .top-section .base-text{
103
+ max-width: 655px;
104
+ margin: 0 auto;
105
+ }
106
+ .mountstride-crm-wrapper .bottom-section{
107
+ padding-top:20px;
108
+ padding-bottom:60px;
109
+ }
110
+ .mountstride-crm-wrapper .features-box-wrapper .features-box{
111
+ margin-bottom:60px;
112
+ }
113
+ .mountstride-crm-wrapper .features-box .image .img-responsive{
114
+ display:block;
115
+ max-width:100%;
116
+ height:auto;
117
+ margin:0 auto;
118
+ }
119
+ .mountstride-crm-wrapper .features-box .info-section{
120
+ padding:10px;
121
+ }
122
+ .mountstride-crm-wrapper .features-box .info-image-section{
123
+ padding:10px;
124
+ }
125
+ .mountstride-crm-wrapper .btn-outer{
126
+ text-align:center;
127
+ }
128
+ .mountstride-crm-wrapper .btn-typ1{
129
+ font-size: 15px;
130
+ font-weight: 500;
131
+ padding: 11px 15px;
132
+ text-transform: capitalize;
133
+ text-align: center;
134
+ border: 1px solid #ff536b;
135
+ background-color: #ff536b;
136
+ color: #fff;
137
+ border-radius: 25px;
138
+ transition: all .5s;
139
+ -webkit-transition: all .5s;
140
+ -ms-transition: all .5s;
141
+ -o-transition: all .5s;
142
+ display: inline-block;
143
+ min-width: 210px;
144
+ text-decoration:none;
145
+ }
146
+ .mountstride-crm-wrapper .btn-typ1:hover {
147
+ background-color: #fff;
148
+ color: #ff536b;
149
+ border-color: #ff536b;
150
+ text-decoration:none;
151
+ }
152
+
153
+ /* Responsive CSS */
154
+
155
+ @media (min-width: 568px) {
156
+ .mountstride-crm-wrapper .visible-xs{
157
+ display:none !important;
158
+ }
159
+ }
160
+ @media (max-width: 1199px) {
161
+ .mountstride-crm-wrapper .container{
162
+ max-width:700px;
163
+ }
164
+ }
165
+ @media (max-width: 991px) {
166
+ .mountstride-crm-wrapper .header-typ1{
167
+ font-size:26px;
168
+ }
169
+ .mountstride-crm-wrapper .header-typ2{
170
+ font-size:20px;
171
+ }
172
+ .mountstride-crm-wrapper .header-typ3{
173
+ font-size:22px;
174
+ }
175
+ .mountstride-crm-wrapper .top-section .base-text{
176
+ max-width:530px;
177
+ }
178
+ }
179
+ @media (max-width: 767px) {
180
+ .mountstride-crm-wrapper h1, .mountstride-crm-wrapper h2, .mountstride-crm-wrapper h3, .mountstride-crm-wrapper h4, .mountstride-crm-wrapper h5, .mountstride-crm-wrapper h6{
181
+ margin-bottom:10px;
182
+ }
183
+ .mountstride-crm-wrapper .header-typ1{
184
+ font-size:20px;
185
+ }
186
+ .mountstride-crm-wrapper .header-typ2{
187
+ font-size:16px;
188
+ margin-bottom:10px;
189
+ }
190
+ .mountstride-crm-wrapper .header-typ3{
191
+ font-size:20px;
192
+ }
193
+ .mountstride-crm-wrapper .top-section .base-text{
194
+ font-size:15px;
195
+ max-width:430px;
196
+ }
197
+ }
198
+ @media (max-width: 567px) {
199
+ .mountstride-crm-wrapper .tbl{
200
+ display:block;
201
+ }
202
+ .mountstride-crm-wrapper .tbl-cell{
203
+ display:block;
204
+ width:100%;
205
+ }
206
+ .mountstride-crm-wrapper .features-box .image{
207
+ margin-bottom:15px;
208
+ }
209
+ .mountstride-crm-wrapper .hidden-xs{
210
+ display:none !important;
211
+ }
212
+ }
213
+
214
+
215
+
216
+
217
+
218
+
219
+
admin/images/Automation-Through-Rule-Engine.svg ADDED
@@ -0,0 +1 @@
 
1
+ <?xml version="1.0" encoding="UTF-8"?> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="400px" height="371px" viewBox="0 0 400 371"><!-- Generator: Sketch 64 (93537) - https://sketch.com --><title>Automation Through Rule Engine</title><desc>Created with Sketch.</desc><defs><polygon id="path-1" points="0.192114695 0.367980884 20.9366786 0.367980884 20.9366786 16.0812425 0.192114695 16.0812425"></polygon><path d="M352.86595,272.092712 C352.86595,280.790442 345.823656,287.840382 337.135484,287.840382 L108.482676,287.840382 C99.7945042,287.840382 92.7541219,280.790442 92.7541219,272.092712 L92.7541219,100.188292 C92.7541219,91.4915173 99.7945042,84.4415771 108.482676,84.4415771 L337.137395,84.4415771 C345.824612,84.4415771 352.86595,91.4915173 352.86595,100.188292 L352.86595,272.092712 L352.86595,272.092712 Z" id="path-3"></path><filter x="-2.9%" y="-3.7%" width="105.8%" height="107.4%" id="filter-4"><feOffset dx="0" dy="0" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset><feGaussianBlur stdDeviation="2.5" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix></filter></defs><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="Automation-Through-Rule-Engine" transform="translate(0.000000, -1.000000)"><g id="crmfeatures6"><path d="M97.3151732,99.6281959 C88.9223417,99.6281959 82.0922342,106.464994 82.0922342,114.868339 L82.0922342,286.773716 C82.0922342,295.177061 88.9223417,302.013859 97.3151732,302.013859 L325.969892,302.013859 C334.36368,302.013859 341.193787,295.177061 341.193787,286.773716 L341.193787,114.867384 C341.193787,106.464038 334.36368,99.6281959 325.969892,99.6281959 L97.3151732,99.6281959 L97.3151732,99.6281959 Z M325.969892,303.027001 L97.3151732,303.027001 C88.3641577,303.027001 81.0800478,295.736201 81.0800478,286.773716 L81.0800478,114.867384 C81.0800478,105.904898 88.3632019,98.6150538 97.3151732,98.6150538 L325.969892,98.6150538 C334.92282,98.6150538 342.205018,105.904898 342.205018,114.867384 L342.205018,286.77276 C342.205018,295.735245 334.92282,303.027001 325.969892,303.027001 L325.969892,303.027001 Z" id="Shape" fill="#D5BCDC" fill-rule="nonzero"></path><path d="M376.549582,121.284588 C376.549582,121.284588 380.720669,123.169415 382.585424,123.824134 C384.448268,124.477897 391.271685,123.741935 392.030585,124.328793 C392.78853,124.914695 392.820072,127.131183 391.72282,127.51828 C390.625568,127.907288 382.474552,129.919235 379.632019,129.632497 C376.790442,129.345759 371.787814,131.26595 370.594982,131.015532 C369.400239,130.767025 369.297013,124.055436 369.548387,122.508961 C369.801673,120.960573 376.549582,121.285544 376.549582,121.285544" id="Path" fill="#211E20" fill-rule="nonzero"></path><path d="M375.589964,118.594982 L376.548626,121.284588 C376.548626,121.284588 371.521147,123.078614 369.549343,122.508005 L368.889845,119.766786 L375.589964,118.595938 L375.589964,118.594982 Z" id="Path" fill="#FE8D23" fill-rule="nonzero"></path><path d="M365.303704,123.676941 C365.303704,123.676941 369.23871,126.079809 371.015532,126.966786 C372.794265,127.852808 379.651135,127.989486 380.339307,128.6681 C381.028435,129.346714 380.815293,131.551732 379.682676,131.796416 C378.551016,132.043011 370.234648,133.00454 367.443728,132.357467 C364.653763,131.71135 359.475269,132.981601 358.317802,132.583035 C357.160335,132.184468 357.796894,125.506332 358.217443,124.001912 C358.637993,122.498447 365.303704,123.676941 365.303704,123.676941" id="Path" fill="#211E20" fill-rule="nonzero"></path><path d="M364.714934,120.882198 L365.303704,123.676941 C365.303704,123.676941 360.112784,124.820072 358.216487,124.001912 L357.865711,121.195699 L364.714934,120.882198 L364.714934,120.882198 Z" id="Path" fill="#FE8D23" fill-rule="nonzero"></path><path d="M325.278853,70.5567503 C325.278853,70.5567503 343.219116,70.7144564 345.419355,71.0260454 C347.803106,71.3643967 357.137395,71.6664277 358.265233,73.3772999 C369.641099,90.6637993 377.068578,118.966786 377.068578,118.966786 L368.076464,120.737873 C368.076464,120.737873 359.379689,103.8681 355.739068,95.1034648 C352.469295,87.2353644 349.669773,85.2129032 342.802389,85.3868578 C335.935006,85.5598566 313.97276,84.0449223 301.308483,82.4735962 L325.279809,70.5567503 L325.278853,70.5567503 Z" id="Path" fill="#EC2A45" fill-rule="nonzero"></path><path d="M323.381601,28.9223417 C323.381601,28.9223417 328.705376,40.3918757 328.273357,44.6528076 C327.84325,48.9127838 323.264994,60.7225806 322.940024,63.0948626 C322.617921,65.4681004 324.933811,70.158184 324.933811,70.158184 L300.963441,81.2673835 C300.963441,81.2673835 299.998088,74.2442055 300.963441,66.1562724 C301.928793,58.0673835 302.641816,49.3753883 303.707527,44.8038232 C307.343369,29.2052569 316.962485,22.7402628 316.962485,22.7402628 L323.381601,28.9223417 Z" id="Path" fill="#5235AD" fill-rule="nonzero"></path><path d="M324.933811,70.1591398 C324.933811,70.1591398 342.874074,70.3178017 345.074313,70.6274791 C347.45902,70.9667861 357.00454,71.1283154 357.920191,72.9806452 C364.43871,86.1600956 365.902031,121.339068 365.902031,121.339068 L357.51589,122.354122 C357.51589,122.354122 353.946953,104.397611 352.10227,95.9961768 C351.123536,91.5373955 347.412186,86.1323775 342.326404,86.4296296 C335.469534,86.8329749 308.562007,93.4872162 300.963441,81.2673835 L324.934767,70.1591398 L324.933811,70.1591398 Z" id="Path" fill="#FF536B" fill-rule="nonzero"></path><path d="M309.442294,39.7562724 C309.493907,37.535006 310.782318,27.9502987 316.183513,28.6050179 C321.583751,29.2616487 320.959618,35.7476703 320.459737,40.6403823 C319.935962,45.7596177 317.282676,58.3101553 318.127599,58.9562724 C318.971565,59.6014337 325.378256,61.5292712 326.756511,61.80454 C328.132855,62.0817204 336.439665,64.1204301 337.122103,64.3106332 C337.790203,64.4970131 336.453047,67.7304659 336.453047,67.7304659 C336.453047,67.7304659 313.448029,67.055675 309.6,65.2310633 C305.751971,63.4054958 309.442294,39.7562724 309.442294,39.7562724" id="Path" fill="#FDC2CC" fill-rule="nonzero"></path><path d="M337.122103,64.311589 C337.122103,64.311589 338.831063,64.7416965 339.655914,64.8076464 C340.478853,64.8735962 344.380406,63.3232975 345.593309,63.5469534 C346.807168,63.7715651 354.613142,67.5431302 354.962007,67.8078853 C355.312784,68.0716846 354.755556,68.5916368 354.755556,68.5916368 L336.452091,67.9292712 L337.122103,64.311589 L337.122103,64.311589 Z" id="Path" fill="#FDC2CC" fill-rule="nonzero"></path><polygon id="Path" fill="#807066" fill-rule="nonzero" points="359.926404 71.4771804 329.490084 70.2442055 329.603823 67.4532855 360.040143 68.6862605"></polygon><polygon id="Path" fill="#807066" fill-rule="nonzero" points="370.23178 42.776583 359.936918 71.4762246 357.310394 70.5328554 367.604301 41.8322581"></polygon><path d="M337.34098,10.8597372 C337.34098,10.8597372 337.915412,15.5698925 336.640382,15.7667861 C335.588053,15.930227 335.958901,20.4759857 335.958901,21.1956989 C335.958901,21.9144564 333.983274,21.6621266 333.445161,21.9144564 C332.906093,22.1658303 329.843728,26.6590203 328.303943,26.227957 C326.766069,25.7968937 321.002628,20.8592593 319.925448,18.2566308 C318.847312,15.6540024 320.695818,6.52807646 323.318519,3.39976105 C325.939307,0.272401434 336.299164,2.61887694 337.340024,10.8597372" id="Path" fill="#FDC2CC" fill-rule="nonzero"></path><path d="M325.338112,22.8941458 C325.338112,22.8941458 325.182318,23.3051374 324.954839,23.9455197 C324.751073,24.5151287 324.552895,25.0867212 324.360335,25.6602151 C323.775388,27.4121864 323.133094,29.5407407 323.085305,30.5787336 C322.994504,32.5189964 316.962485,22.7412186 316.962485,22.7412186 C316.962485,22.7412186 319.132139,16.8516129 320.485544,9.96415771 C321.837037,3.0776583 325.338112,22.8941458 325.338112,22.8941458" id="Path" fill="#FFD0CA" fill-rule="nonzero"></path><g id="Group" transform="translate(318.558662, 0.751254)"><g id="Clipped"><mask id="mask-2" fill="white"><use xlink:href="#path-1"></use></mask><g id="a"></g><path d="M18.8702509,11.1158901 C18.8702509,11.1158901 22.6523297,7.75340502 19.9856631,3.11589008 C17.3189964,-1.52162485 8.01911589,1.13835125 7.130227,1.03130227 C6.24038232,0.923297491 1.60095579,-0.550537634 0.701553166,8.4004779 C-0.197849462,17.353405 0.368936679,16.0095579 0.368936679,16.0095579 C0.368936679,16.0095579 2.64755078,12.1663082 4.27431302,12.7866189 C5.90107527,13.4069295 8.74551971,13.7041816 8.74551971,13.7041816 C8.74551971,13.7041816 8.79904421,9.52449223 11.1426523,9.84755078 C13.4862605,10.1715651 17.0188769,9.4614098 18.8702509,11.1158901" id="Path" fill="#93332D" fill-rule="nonzero" mask="url(#mask-2)"></path></g></g><path d="M309.031302,40.172043 L321.362007,40.6193548 C321.362007,40.6193548 323.277419,27.7744325 316.189247,28.0210275 C309.101075,28.2685783 309.031302,40.1729988 309.031302,40.1729988" id="Path" fill="#5235AD" fill-rule="nonzero"></path><path d="M325.837993,11.4752688 C325.844683,10.9017921 326.073118,8.51517324 323.740024,9.05519713 C321.405974,9.59426523 322.810992,14.8109916 323.111111,14.990681 C323.412186,15.167503 325.783513,16.3029869 325.837993,11.4752688 M316.962485,22.7412186 C316.962485,22.7412186 327.54313,41.883871 327.268817,39.1703704 C327.053763,37.0485066 322.470729,26.8023895 322.470729,26.8023895 L316.962485,22.7412186 L316.962485,22.7412186 Z" id="Shape" fill="#FFD0CA" fill-rule="nonzero"></path><path d="M324.954839,23.9464755 C324.751079,24.5157668 324.552901,25.0870408 324.360335,25.6602151 C322.227001,23.0031063 320.747431,19.9961768 320.311589,19.060454 C321.182318,20.6470729 324.954839,23.9464755 324.954839,23.9464755" id="Path" fill="#A77860" fill-rule="nonzero"></path><polygon id="Path" fill="#D683A3" fill-rule="nonzero" points="324.933811 70.1591398 301.364875 84.4100358 300.963441 81.2673835"></polygon><polygon id="Path" fill="#D5BCDC" fill-rule="nonzero" points="31.2850657 126.70681 123.500119 126.70681 123.500119 125.58853 31.2850657 125.58853"></polygon><g id="Path"><use fill="black" fill-opacity="1" filter="url(#filter-4)" xlink:href="#path-3"></use><use fill="#FFFFFF" fill-rule="evenodd" xlink:href="#path-3"></use></g><path d="M353.126882,100.188292 L353.126882,104.641338 L93.014098,104.641338 L93.014098,100.188292 C93.014098,91.4915173 100.055436,84.4415771 108.743608,84.4415771 L337.398327,84.4415771 C346.084588,84.4415771 353.126882,91.4915173 353.126882,100.188292" id="Path" fill="#5235AD" fill-rule="nonzero"></path><path d="M122.302509,163.165591 C120.690297,163.164831 119.144419,162.523653 118.00495,161.383109 C116.865482,160.242565 116.226523,158.696083 116.226523,157.083871 L116.226523,137.825568 C116.226523,136.213355 116.865482,134.666873 118.00495,133.526329 C119.144419,132.385785 120.690297,131.744607 122.302509,131.743847 L195.707527,131.743847 C199.064412,131.745958 201.784141,134.468683 201.782557,137.825568 L201.782557,157.083871 C201.784141,160.440756 199.064412,163.163481 195.707527,163.165591 L122.302509,163.165591 L122.302509,163.165591 Z M122.302509,173.977539 C119.231541,173.977539 116.733094,176.477897 116.733094,179.552688 L116.733094,198.810992 C116.733094,201.884827 119.231541,204.386141 122.302509,204.386141 L195.707527,204.386141 C198.777539,204.386141 201.275986,201.884827 201.275986,198.810992 L201.275986,179.551732 C201.275986,176.477897 198.777539,173.977539 195.706571,173.977539 L122.301553,173.977539 L122.302509,173.977539 Z M195.707527,205.399283 L122.302509,205.399283 C118.673357,205.399283 115.720908,202.443967 115.720908,198.810992 L115.720908,179.551732 C115.720908,175.919713 118.673357,172.964397 122.302509,172.964397 L195.707527,172.964397 C199.335723,172.964397 202.288172,175.919713 202.288172,179.552688 L202.288172,198.810992 C202.288172,202.443967 199.335723,205.399283 195.706571,205.399283 L195.707527,205.399283 Z M289.130705,220.265711 L222.600717,220.265711 C222.180933,220.265457 221.778444,220.098456 221.481791,219.801445 C221.185139,219.504434 221.018877,219.101743 221.018877,218.681959 L221.018877,216.779928 C221.018877,215.905376 221.727121,215.197133 222.600717,215.197133 L289.130705,215.197133 C290.004301,215.197133 290.712545,215.904421 290.712545,216.780884 L290.712545,218.682915 C290.712545,219.557467 290.004301,220.265711 289.130705,220.265711 M289.130705,238.678136 L222.600717,238.678136 C221.727121,238.678136 221.018877,237.970848 221.018877,237.096296 L221.018877,235.195221 C221.018877,234.319713 221.727121,233.610514 222.600717,233.610514 L289.130705,233.610514 C290.004301,233.610514 290.712545,234.319713 290.712545,235.195221 L290.712545,237.096296 C290.712545,237.970848 290.004301,238.678136 289.130705,238.678136 M229.667861,132.250418 C225.177539,132.250418 221.526404,135.907288 221.526404,140.401434 L221.526404,196.23417 C221.526404,200.728315 225.177539,204.386141 229.667861,204.386141 L320.960573,204.386141 C325.44994,204.386141 329.102987,200.728315 329.102987,196.23417 L329.102987,140.401434 C329.102987,135.907288 325.44994,132.250418 320.959618,132.250418 L229.667861,132.250418 Z M320.960573,205.398327 L229.667861,205.398327 C224.619355,205.398327 220.513262,201.287455 220.513262,196.23417 L220.513262,140.401434 C220.513262,135.348148 224.619355,131.237276 229.667861,131.237276 L320.960573,131.237276 C326.007168,131.237276 330.115173,135.348148 330.115173,140.401434 L330.115173,196.23417 C330.115173,201.287455 326.008124,205.398327 320.960573,205.398327 Z" id="Shape" fill="#EAF6FF" fill-rule="nonzero"></path><path d="M317.050418,221.863799 L311.267861,216.817204 C310.793306,216.403618 310.74388,215.683636 311.157467,215.20908 C311.571054,214.734524 312.291036,214.685099 312.765591,215.098686 L316.853524,218.667622 L322.685783,212.155795 C323.105968,211.687309 323.826377,211.648154 324.294863,212.068339 C324.763348,212.488524 324.802503,213.208934 324.382318,213.677419 L317.051374,221.863799 L317.050418,221.863799 Z M317.050418,241.418399 L311.267861,236.371804 C310.960536,236.104431 310.819198,235.693412 310.897087,235.293574 C310.974976,234.893736 311.26026,234.565824 311.645474,234.433359 C312.030688,234.300894 312.45731,234.384001 312.764636,234.651374 L316.853524,238.222222 L322.685783,231.709438 C322.954095,231.392568 323.373442,231.24659 323.780522,231.328352 C324.187602,231.410114 324.518061,231.70669 324.643215,232.102588 C324.768368,232.498487 324.66843,232.931122 324.382318,233.232019 L317.051374,241.418399 L317.050418,241.418399 Z" id="Shape" fill="#FE526A" fill-rule="nonzero"></path><path d="M289.130705,258.232736 L222.600717,258.232736 C222.181021,258.232736 221.778529,258.065947 221.481849,257.769088 C221.185169,257.472229 221.018877,257.069636 221.018877,256.64994 L221.018877,254.748865 C221.018877,253.874313 221.727121,253.166069 222.600717,253.166069 L289.130705,253.166069 C290.004301,253.166069 290.712545,253.873357 290.712545,254.748865 L290.712545,256.650896 C290.712545,257.523536 290.004301,258.232736 289.130705,258.232736" id="Path" fill="#FF536B" fill-rule="nonzero"></path><path d="M317.050418,260.972043 L311.267861,255.925448 C310.824843,255.504533 310.792008,254.809342 311.193381,254.348544 C311.594754,253.887747 312.287876,253.824893 312.765591,254.205974 L316.853524,257.775866 L322.685783,251.263082 C323.106232,250.794597 323.826855,250.755656 324.29534,251.176105 C324.763826,251.596554 324.802767,252.317178 324.382318,252.785663 L317.051374,260.972043 L317.050418,260.972043 Z" id="Path" fill="#FE526A" fill-rule="nonzero"></path><path d="M125.780645,147.367264 C125.805824,145.264304 126.797881,143.290061 128.470251,142.014815 C129.683784,141.084435 131.175433,140.590137 132.704421,140.611708 C135.548869,140.64906 138.072965,142.44383 139.042294,145.11828 L139.045161,145.121147 C139.268817,145.739546 139.406452,146.398088 139.442772,147.084349 L139.441816,147.084349 C139.483613,147.882779 139.385604,148.682373 139.15221,149.447073 C138.912159,150.242524 138.528983,150.987499 138.021505,151.6454 C137.83769,151.881643 137.63845,152.105469 137.42509,152.315412 C135.758444,153.975166 133.352617,154.656142 131.063321,154.116129 C130.847068,154.067432 130.633348,154.0081 130.422939,153.938351 C127.615975,152.984166 125.742098,150.331726 125.780645,147.367264 M141.732855,147.57276 C141.734767,147.419833 141.729032,147.268817 141.723297,147.116846 C141.721386,147.064277 141.723297,147.012664 141.721386,146.961051 C141.673739,146.065013 141.494022,145.180923 141.188053,144.337395 C139.930227,140.87264 136.633692,138.378973 132.73405,138.328315 C130.714399,138.298533 128.742702,138.94444 127.132139,140.163441 C124.874756,141.862477 123.533153,144.512496 123.500119,147.337634 C123.448751,151.291864 125.948462,154.829809 129.692712,156.10227 C130.597542,156.408076 131.544839,156.569668 132.499881,156.581123 C133.582375,156.596424 134.658911,156.418404 135.678853,156.055436 C137.319547,155.467369 138.758077,154.422793 139.82509,153.044683 C141.04129,151.47787 141.711312,149.556086 141.732855,147.57276" id="Shape" fill="#5DB0FE" fill-rule="nonzero"></path><path d="M375.507766,201.733811 L284.21601,201.733811 C279.438949,201.733811 275.567981,197.857109 275.567981,193.076225 L275.567981,137.242533 C275.567981,132.460693 279.438949,128.584946 284.21601,128.584946 L375.507766,128.584946 C380.284827,128.584946 384.15675,132.460693 384.15675,137.243489 L384.15675,193.075269 C384.15675,197.856153 380.284827,201.732855 375.507766,201.732855" id="Path" fill="#FF536B" fill-rule="nonzero"></path><path d="M289.77491,168.31828 C288.908902,168.31828 288.078492,167.973632 287.46649,167.360913 C286.854489,166.748195 286.511067,165.917382 286.511827,165.051374 L286.511827,140.592593 C286.511067,139.726673 286.854519,138.895958 287.466548,138.283391 C288.078577,137.670824 288.90899,137.326643 289.77491,137.326643 L319.732378,137.326643 C320.598386,137.326643 321.428896,137.670794 322.041077,138.283333 C322.653258,138.895873 322.996923,139.726585 322.996416,140.592593 L322.996416,165.051374 C322.996923,165.91747 322.653289,166.74828 322.041135,167.360971 C321.428982,167.973662 320.598473,168.31828 319.732378,168.31828 L289.77491,168.31828 L289.77491,168.31828 Z M374.138112,145.593309 L331.014576,145.593309 C329.958423,145.593309 329.102986,144.735962 329.102986,143.678853 L329.102986,139.240143 C329.10248,138.732827 329.303655,138.246116 329.662202,137.88721 C330.020749,137.528304 330.50726,137.326643 331.014576,137.326643 L374.138112,137.326643 C374.645429,137.326643 375.131939,137.528304 375.490486,137.88721 C375.849034,138.246116 376.050209,138.732827 376.049703,139.240143 L376.049703,143.678853 C376.050463,144.186335 375.8494,144.673292 375.490825,145.032405 C375.13225,145.391517 374.645594,145.593309 374.138112,145.593309 M374.138112,158.524253 L331.014576,158.524253 C329.958423,158.524253 329.102987,157.667861 329.102987,156.610753 L329.102987,152.171087 C329.102987,151.113978 329.958423,150.257587 331.014576,150.257587 L374.138112,150.257587 C374.645429,150.257587 375.131939,150.459248 375.490486,150.818154 C375.849034,151.17706 376.050209,151.663771 376.049702,152.171087 L376.049702,156.610753 C376.050209,157.118069 375.849034,157.60478 375.490486,157.963686 C375.131939,158.322592 374.645429,158.524253 374.138112,158.524253 M374.312067,191.723775 L357.679331,191.723775 C357.218316,191.723522 356.776297,191.540076 356.45058,191.21382 C356.124862,190.887565 355.942145,190.445244 355.942651,189.984229 L355.942651,189.196655 C355.942651,188.237037 356.719713,187.457109 357.679331,187.457109 L374.312067,187.457109 C375.271685,187.457109 376.048746,188.237037 376.048746,189.196655 L376.048746,189.985185 C376.048746,190.945759 375.271685,191.724731 374.312067,191.724731" id="Shape" fill="#FFFFFF" fill-rule="nonzero"></path><path d="M363.259259,219.513501 C363.259259,219.513501 361.526404,216.477897 364.274313,208.339307 C366.933333,200.469295 376.135723,201.183274 379.060454,206.226045 C381.984229,211.267861 380.995938,214.398088 376.691995,220.092712 C372.386141,225.784468 365.047551,222.116129 363.260215,219.513501 M385.145998,363.365352 C385.203345,363.867145 390.211708,363.069056 390.211708,363.069056 L390.616965,359.091039 C390.616965,359.091039 385.259737,359.048984 384.633692,359.521147 C384.633692,359.521147 385.08865,362.862605 385.145998,363.365352 Z" id="Shape" fill="#FFD0CA" fill-rule="nonzero"></path><path d="M385.092473,362.939068 C385.092473,362.939068 383.504898,364.953883 381.969892,365.831302 C380.434886,366.708722 378.024373,367.057587 377.116368,367.964636 C376.460693,368.620311 374.729749,371.444683 381.104898,371.388292 C387.480048,371.330944 390.551971,371.785902 391.234409,370.703943 C391.919713,369.621983 390.247073,362.713501 390.247073,362.713501 C390.247073,362.713501 388.68626,363.153166 385.092473,362.939068" id="Path" fill="#211E20" fill-rule="nonzero"></path><path d="M349.9546,359.521147 C349.9546,359.521147 350.409558,362.862605 350.46595,363.365352 C350.523297,363.867145 355.531661,363.069056 355.531661,363.069056 L355.937873,359.091039 C355.937873,359.091039 350.580645,359.048984 349.9546,359.521147" id="Path" fill="#FFD0CA" fill-rule="nonzero"></path><path d="M347.291756,365.830346 C345.75675,366.709677 340.108961,367.430346 339.201912,368.337395 C338.546237,368.994982 337.456631,371.634886 346.425806,371.388292 C352.798088,371.212425 355.873835,371.785902 356.557228,370.703943 C357.239665,369.621983 355.567981,362.713501 355.567981,362.713501 C355.567981,362.713501 353.589486,363.066189 350.412425,362.939068 C350.412425,362.939068 348.825806,364.953883 347.291756,365.831302 L347.291756,365.830346 Z" id="Path" fill="#211E20" fill-rule="nonzero"></path><path d="M382.946714,276.304898 C382.946714,276.304898 385.514934,284.295341 385.177539,291.179928 C384.838232,298.064516 386.505137,305.598088 387.184707,312.790442 C387.944564,320.807646 391.052808,339.789725 391.165591,344.077419 C391.277419,348.367025 390.681959,362.060693 390.681959,362.060693 L384.462605,362.212664 C384.462605,362.212664 379.239188,329.028435 377.886738,325.642055 C376.533333,322.256631 369.824612,298.118996 369.598088,295.410275 C369.372521,292.700597 382.946714,276.304898 382.946714,276.304898" id="Path" fill="#5235AD" fill-rule="nonzero"></path><path d="M357.158423,275.474313 C357.158423,275.474313 353.383035,296.597372 352.9319,300.812425 C352.480765,305.025568 352.180645,321.203345 351.955078,323.837515 C351.728554,326.470729 350.451613,358.300597 349.250179,362.212664 L356.184468,362.212664 C356.184468,362.212664 363.305137,339.073835 363.305137,328.126165 C363.305137,317.177539 368.020072,304.325926 371.064277,297.101075 C374.107527,289.878136 381.075269,289.708005 382.946714,276.304898 C382.946714,276.304898 359.692234,271.222939 357.159379,275.473357" id="Path" fill="#5235AD" fill-rule="nonzero"></path><path d="M365.775866,221.662127 C365.775866,221.662127 366.557706,223.941697 365.775866,225.567503 C364.992115,227.195221 375.770609,226.217443 375.770609,226.217443 C375.770609,226.217443 375.283154,222.857826 376.691995,220.092712 C378.099881,217.326643 365.775866,221.662127 365.775866,221.662127" id="Path" fill="#FFD0CA" fill-rule="nonzero"></path><path d="M383.446595,278.046356 C383.446595,278.046356 379.570848,282.032975 356.810514,277.42509 L357.158423,275.474313 L383.03178,276.449223 L383.446595,278.046356 Z" id="Path" fill="#FF536B" fill-rule="nonzero"></path><path d="M364.144325,226.096057 C364.144325,226.096057 360.163441,226.50227 359.027001,226.720191 C357.887694,226.937157 350.233692,225.348626 348.662366,225.187097 C347.091995,225.023656 340.395699,220.429152 340.178734,219.887216 C339.961768,219.345281 336.104182,209.567503 335.887216,207.45233 C335.671207,205.338112 332.129988,206.42963 332.432975,207.888172 C333.001673,210.613142 333.7319,217.230108 334.131422,219.147431 C334.563441,221.217682 335.719952,225.90681 336.369892,226.485066 C337.019833,227.06141 343.048984,231.654002 348.951971,233.605735 C354.854958,235.556511 359.299403,238.432497 359.299403,238.432497 L388.393787,238.432497 C388.393787,238.432497 399.708483,222.238471 399.953166,219.797372 C400.196894,217.357228 392.048746,201.142174 390.423895,199.108244 C388.799044,197.076225 386.44779,199.773477 386.44779,199.773477 C386.44779,199.773477 391.317563,214.072162 391.967503,216.105137 C392.617443,218.139068 386.305376,227.071924 384.572521,227.099642 C382.83871,227.126404 378.387575,226.557706 376.411947,226.475508 C374.433453,226.395221 372.349821,225.52736 372.349821,225.52736 L364.144325,226.096057 L364.144325,226.096057 Z" id="Path" fill="#FFD0CA" fill-rule="nonzero"></path><path d="M351.607168,236.912784 C351.607168,236.912784 355.168459,239.283154 355.493429,243.349104 C355.817443,247.416965 357.117324,253.84086 357.767264,256.035364 C358.417204,258.232736 357.198566,274.173477 357.037037,275.310872 C356.873596,276.450179 379.549821,279.154122 383.03178,276.450179 C383.03178,276.450179 384.006691,261.566547 384.412903,257.337157 C384.81816,253.108722 386.767981,242.862605 387.417921,241.47957 C388.067861,240.095579 395.948387,229.031302 396.273357,227.57276 C396.273357,227.57276 392.195938,221.066667 389.272162,220.985424 C389.272162,220.985424 384.627001,226.434409 383.113023,226.67718 C381.599044,226.921864 372.316368,225.219594 372.314456,225.205257 C372.314456,225.205257 371.301314,226.585424 365.915412,224.958662 C365.915412,224.958662 359.502031,225.685066 358.457348,225.816965 C357.193787,225.97945 348.410992,224.713023 348.410992,224.713023 C348.410992,224.713023 344.886977,230.669534 345.505376,233.678375 L351.607168,236.91374 L351.607168,236.912784 Z" id="Path" fill="#5DB0FE" fill-rule="nonzero"></path><path d="M336.0908,208.723536 C336.0908,208.723536 335.295579,204.954839 336.254241,203.871924 C336.799044,203.256392 338.108483,201.625806 338.228913,201.384946 C338.349343,201.145998 339.754361,200.338351 339.754361,199.947431 C339.754361,199.558423 338.378017,199.07957 337.181362,200.188292 C335.984707,201.295102 335.23632,201.535962 334.757467,201.416487 C334.27957,201.295102 333.591398,197.312306 333.530227,196.323059 C333.470012,195.333811 333.089606,192.728315 332.472162,192.907049 C331.854719,193.087694 331.884349,194.226045 331.884349,194.226045 C331.884349,194.226045 331.166547,192.247551 330.687694,192.639427 C330.209797,193.027479 330.2681,193.986141 330.2681,193.986141 C330.2681,193.986141 329.371565,192.877419 329.130705,193.686022 C328.891756,194.495579 329.130705,195.214337 329.130705,195.214337 C329.130705,195.214337 328.203584,194.704898 328.144325,195.962724 C328.085066,197.221505 328.413859,200.907049 329.072401,202.223178 C329.729032,203.542174 332.194982,206.991637 332.487455,208.337395 C332.78184,209.685066 336.0908,208.723536 336.0908,208.723536 M387.242055,202.104659 C387.242055,202.104659 384.535245,197.549343 383.615771,197.142174 C382.694385,196.735962 381.393548,196.505615 380.257109,195.691278 C379.119713,194.878853 377.617204,194.202151 377.697491,193.930705 C377.779689,193.660215 379.119713,193.76822 380.555317,194.391398 C381.989008,195.014576 382.619833,194.713501 382.7546,194.387575 C382.890323,194.062605 381.989964,191.766786 381.556989,191.222939 C381.123059,190.681959 378.036798,187.571804 378.55006,187.112067 C379.064277,186.651374 381.068578,188.360335 381.393548,188.712067 C381.393548,188.712067 379.796416,185.350538 380.418638,185.188053 C381.042772,185.025568 382.20693,186.216487 382.20693,186.216487 C382.20693,186.216487 382.071207,183.344325 385.159379,188.006691 C385.159379,188.006691 384.509438,186.461171 385.455675,186.976344 C386.403823,187.491517 387.325209,190.392354 387.622461,191.856631 C387.919713,193.319952 389.271207,197.983274 390.424851,199.108244 C391.575627,200.233214 387.242055,202.104659 387.242055,202.104659" id="Shape" fill="#FFD0CA" fill-rule="nonzero"></path><path d="M372.232258,219.17037 C369.199522,218.120908 368.972999,212.812425 368.317324,213.442294 C366.978256,214.724014 365.71374,213.838949 365.20908,213.079092 C365.20908,213.079092 366.690562,211.12736 366.003345,210.187814 C365.318041,209.248268 364.200717,208.562007 364.200717,208.562007 C364.200717,208.562007 366.33405,198.2681 376.041099,202.957228 C387.415054,208.453047 376.691039,220.091756 376.691039,220.091756 C376.691039,220.091756 375.264994,220.216965 372.232258,219.17037 L372.232258,219.17037 Z" id="Path" fill="#93332D" fill-rule="nonzero"></path><path d="M365.775866,225.567503 L366.118041,224.080287 C366.118041,224.080287 372.313501,223.956033 375.694146,224.444444 L376.049701,226.222222 C376.049701,226.222222 371.719952,228.188292 365.77491,225.567503 M367.304182,212.140502 C367.867145,211.203823 369.946953,210.572999 370.192593,213.224373 C370.38184,215.280287 366.47264,217.525448 366.43632,215.60908 C366.4,213.694624 366.92951,212.76368 367.304182,212.139546" id="Shape" fill="#FFD0CA" fill-rule="nonzero"></path><path d="M335.942652,207.867145 C335.942652,207.867145 333.708005,207.923536 332.624134,208.903226 C332.624134,208.903226 332.554361,209.525448 332.804779,210.017682 C332.804779,210.017682 334.74313,209.111589 336.228435,208.942413 C336.228435,208.942413 336.202628,208.128076 335.943608,207.867145" id="Path" fill="#FF536B" fill-rule="nonzero"></path><path d="M77.7127838,208.930944 C74.3558991,208.928833 71.6361698,206.206108 71.6377525,202.849223 L71.6377525,183.591876 C71.6361696,180.234308 74.3561725,177.510882 77.7137395,177.508244 L151.118757,177.508244 C152.731135,177.509257 154.277058,178.15081 155.416374,179.29174 C156.555691,180.432669 157.195055,181.979498 157.193791,183.591876 L157.193791,202.849223 C157.193791,204.461436 156.554829,206.007918 155.41536,207.148462 C154.275892,208.289006 152.730014,208.930184 151.117802,208.930944 L77.7127838,208.930944 Z" id="Shape" fill="#5235AD" fill-rule="nonzero"></path><path d="M5.14982079,270.123775 C5.14982079,270.123775 5.48721625,271.962724 6.51947431,272.235125 C7.39593787,272.465472 8.36224612,273.398327 8.660454,273.68411 C9.05806452,274.066428 10.7192354,274.787097 10.2422939,275.294624 C9.76439665,275.803106 7.44659498,274.240382 6.89510155,274.010036 C6.34360812,273.780645 7.13405018,276.334528 6.91039427,276.915651 C6.68769415,277.498686 2.38470729,278.56822 2.04540024,276.750299 C1.7051374,274.934289 2.54145759,272.768459 2.4181601,272.459737 C2.2948626,272.153883 2.11899642,271.148387 2.11899642,271.148387 L5.14982079,270.123775 L5.14982079,270.123775 Z" id="Path" fill="#FE8D23" fill-rule="nonzero"></path><path d="M6.93142174,276.473118 C6.93142174,276.473118 7.6004779,282.105615 7.33189964,282.517563 C7.06332139,282.931422 6.75555556,282.948626 6.67240143,282.424851 C6.58637993,281.902031 5.86571087,277.002628 5.86571087,277.002628 C5.86571087,277.002628 5.54074074,283.802151 5.39450418,284.187336 C5.30848268,284.414815 4.71589008,284.483632 4.6442055,284.208363 C4.5744325,283.932139 4.51135006,277.174671 4.51135006,277.174671 C4.51135006,277.174671 4.19593787,283.523059 3.97610514,283.808841 C3.78494624,284.060215 3.22485066,283.98853 3.2172043,283.515412 C3.20764636,283.04325 3.16750299,277.13644 3.16750299,277.13644 C3.16750299,277.13644 2.64755078,281.741458 2.31971326,281.874313 C2.11899642,281.956511 1.61051374,282.040621 1.78160096,280.855436 C1.95364397,279.672162 2.06451613,276.835364 2.06451613,276.835364 L6.93142174,276.474074 L6.93142174,276.473118 Z M65.5655914,201.032258 C65.5655914,201.032258 66.4898447,199.305137 66.8052569,197.925926 C67.1216249,196.546714 68.8401434,194.708722 69.5407407,194.276703 C70.2403823,193.84086 75.3156511,190.200239 75.9034648,190.200239 C76.4903226,190.201195 76.1491039,191.329988 75.6415771,191.659737 C75.1340502,191.98853 71.0117085,195.203823 71.0117085,195.203823 C71.0117085,195.203823 76.1405018,191.660693 76.6767025,191.758184 C77.2119474,191.853763 77.5942652,192.535245 77.0188769,193.237754 C77.0188769,193.237754 78.1878136,194.008124 76.9691756,194.942891 L74.5452808,196.819116 C74.5452808,196.819116 75.9713262,196.076464 75.4427718,197.224373 C75.1608124,197.835125 72.1777778,199.615771 71.7008363,200.160573 C71.2229391,200.705376 67.4618877,202.539546 67.4618877,202.539546 L65.5655914,201.032258 L65.5655914,201.032258 Z M35.5096774,358.859737 L36.7808841,358.859737 C36.7808841,358.859737 36.3574671,354.054002 37.5359618,354.005257 C38.711589,353.957467 41.6296296,357.917324 43.3729988,358.530944 C45.1144564,359.142652 54.0587814,359.660693 54.1065711,358.010992 C54.153405,356.364158 50.6695341,355.702748 49.5866189,355.231541 C48.5037037,354.760335 43.2305854,349.621983 42.2900836,349.009319 C41.3476703,348.397611 39.7945042,345.287455 39.7945042,345.287455 L34.9916368,345.287455 C34.9916368,345.287455 34.464994,347.896774 34.1620072,350.005257 C34.0492234,350.784229 33.9679809,351.494385 33.9555556,351.979928 C33.9087216,353.770131 35.5087216,358.859737 35.5087216,358.859737 M13.4174432,357.909677 L14.4764636,357.909677 L14.4764636,353.434648 C15.3596177,353.508244 18.3264038,356.319235 19.2439665,357.133572 C20.1615293,357.945998 21.4212664,357.909677 25.2874552,358.156272 C29.153644,358.400956 29.5197133,356.085066 28.907049,355.295579 C28.2953405,354.506093 26.3168459,354.161051 25.2874552,353.670729 C24.2580645,353.175627 20.1978495,348.592593 19.1149343,347.50681 C18.0320191,346.422939 17.3715651,343.317563 17.3715651,343.317563 L12.8535245,343.710394 C12.8535245,343.710394 12.8821983,346.552927 12.3660693,348.935723 L12.3660693,348.937634 C12.3224651,349.144007 12.2724208,349.348965 12.2160096,349.55221 C11.5459976,352.030585 13.4174432,357.909677 13.4174432,357.909677 M23.9904421,208.349821 C23.9904421,208.349821 21.7835125,213.008363 22.9620072,216.81816 C22.9620072,216.81816 16.1758662,215.891039 15.972282,215.09773 C15.7696535,214.301553 16.8229391,207.158901 16.0391876,204.967264 C15.2544803,202.775627 23.9904421,208.349821 23.9904421,208.349821" id="Shape" fill="#FFD0CA" fill-rule="nonzero"></path><path d="M24.1510155,215.274552 C24.1510155,215.274552 28.0793309,216.963441 29.8714456,217.482437 C31.6635603,218.002389 35.3452808,220.03632 34.5567503,226.633214 C33.7682198,233.228196 32.2169654,238.886499 31.5976105,241.700358 C30.9782557,244.514217 30.7135006,251.771565 31.1292712,255.336679 C31.1292712,255.336679 21.2989247,257.015054 10.1075269,253.812186 C10.1075269,253.812186 12.5562724,247.960812 12.6164875,246.406691 C12.6767025,244.849701 6.9390681,231.594743 6.77371565,229.556033 C6.61123059,227.517324 5.91158901,218.524253 9.10107527,216.78184 C12.2896057,215.037515 14.7507766,215.476225 16.1060932,214.691517 C17.4614098,213.904898 22.3120669,214.506093 24.1510155,215.274552" id="Path" fill="#5235AD" fill-rule="nonzero"></path><path d="M24.1318996,225.53405 C24.1318996,225.53405 22.6236559,217.610514 30.2958184,217.623895 C37.0399044,217.635364 43.4112306,216.355556 44.4798088,215.760096 C45.5483871,215.167503 49.6726404,213.138351 51.8394265,210.907527 C54.0052569,208.677658 65.7414576,199.741935 65.7414576,199.741935 L68.9854241,203.026045 C68.9854241,203.026045 56.6040621,216.487455 54.6083632,217.797849 C52.6117085,219.1092 35.8518519,228.480765 33.7252091,228.776105 C31.5985663,229.072401 25.627718,230.697252 24.1318996,225.53405 M0.0238948626,250.013859 C-0.206451613,252.803823 1.31135006,272.067861 1.31135006,272.067861 L6.76702509,272.698686 C6.76702509,272.698686 6.37992832,253.67264 6.07311828,249.283632 C5.98422939,247.98853 6.28243728,246.008124 6.7479092,243.860454 L6.7479092,243.859498 C7.0432497,242.493668 7.40740741,241.061888 7.78112306,239.695102 C8.43270828,237.325681 9.14790114,234.974214 9.92592593,232.64325 C9.92592593,232.64325 16.0353644,216.732139 8.36989247,217.374432 C8.36989247,217.374432 5.52162485,220.315412 4.31541219,225.140263 C3.11015532,229.966069 1.73094385,237.195699 1.67741935,240.076464 C1.62580645,242.956272 0.192114695,247.961768 0.0238948626,250.013859" id="Shape" fill="#FF536B" fill-rule="nonzero"></path><path d="M29.814098,255.180884 C29.814098,255.180884 31.5746714,259.348148 31.7295102,260.401434 C31.8853047,261.453763 37.4050179,275.210514 37.7892473,279.235364 C38.1782557,283.305137 39.3424134,294.167742 39.7562724,295.72282 C40.1710872,297.279809 38.8243728,304.225568 38.6179211,305.781601 C38.4105137,307.335723 38.5127838,332.740741 40.3784946,345.285544 C40.3784946,345.285544 36.027718,347.153166 32.7130227,345.285544 C32.7130227,345.285544 27.2238949,325.688889 27.5345281,314.386619 C27.8461171,303.084349 29.2778973,298.316846 27.5259259,293.751016 C25.7739546,289.19092 15.521147,275.502987 14.4850657,274.052091 C13.4489845,272.600239 6.95913978,264.578256 13.1039427,255.888172 C19.2497013,247.197133 29.814098,255.180884 29.814098,255.180884" id="Path" fill="#FF536B" fill-rule="nonzero"></path><path d="M8.6088411,292.301075 C9.15364397,295.930227 8.58112306,300.699642 7.4427718,313.974671 C6.30155317,327.244922 9.43560335,343.316607 9.43560335,343.316607 C13.3715651,344.664277 17.9029869,343.316607 17.9029869,343.316607 C17.7988053,342.383751 17.9029869,310.964875 17.9029869,308.165352 C17.9029869,305.364875 18.7058542,302.188769 18.9123059,298.974432 C19.0537634,296.785663 20.0716846,292.746476 21.2157706,288.62509 C21.5598566,287.390203 21.9135006,286.149582 22.2585424,284.948148 L22.2585424,284.946237 L22.8272401,282.968698 C24.4406213,277.369654 26.609319,255.748626 26.609319,255.748626 C26.609319,255.748626 14.5882915,246.05687 8.73596177,255.180884 C2.88363202,264.304898 5.88769415,270.941935 6.09510155,272.081243 C6.30155317,273.222461 8.06403823,288.672879 8.6088411,292.301075" id="Path" fill="#FF536B" fill-rule="nonzero"></path><path d="M31.9015532,238.872162 C31.9015532,238.872162 30.8339307,256.049701 34.0281959,265.716607 C34.0281959,265.716607 21.3352449,267.835603 5.14121864,262.373238 C5.14121864,262.373238 9.59522103,250.826284 9.44229391,249.021744 C9.28841099,247.216249 4.60119474,226.190681 6.85113501,221.485305 C9.10011947,216.780884 31.1034648,223.457109 31.902509,238.872162" id="Path" fill="#5235AD" fill-rule="nonzero"></path><path d="M21.5340502,189.197611 C24.4358423,189.081004 31.8451613,190.205974 30.464994,201.385902 C29.0848268,212.563919 25.0532855,211.596655 21.0580645,210.112306 C17.0647551,208.627001 12.8382318,199.587097 13.0064516,197.259737 C13.1737157,194.932378 13.2530466,189.532139 21.5340502,189.197611" id="Path" fill="#FFD0CA" fill-rule="nonzero"></path><path d="M30.4229391,196.217921 C30.4229391,196.217921 26.8807646,200.121386 23.5498208,200.875508 C23.5498208,200.875508 20.7149343,205.186141 16.2542413,206.013859 C16.2542413,206.013859 7.56415771,196.398566 15.902509,190.245161 C24.2399044,184.092712 30.7240143,192.789486 30.4238949,196.217921" id="Path" fill="#353A3D" fill-rule="nonzero"></path><path d="M24.2752688,199.376822 C24.2102748,198.755556 22.9419355,197.407885 21.7930705,198.729749 C20.6442055,200.050657 22.3197133,203.445639 23.0432497,203.499164 C23.7658303,203.550777 24.520908,201.733811 24.2762246,199.376822" id="Path" fill="#EEA886" fill-rule="nonzero"></path><path d="M13.5923536,272.800956 C13.6850657,273.008363 19.6750299,286.316846 21.2167264,288.62509 C21.5598566,287.390203 21.9135006,286.149582 22.2585424,284.947192 C22.2585424,284.947192 13.7930705,273.095341 13.5923536,272.800956" id="Path" fill="#8D3154" fill-rule="nonzero"></path><path d="M6.48028674,230.216487 C6.48028674,230.216487 6.05686977,238.674313 6.7479092,243.859498 C7.04229391,242.494624 7.40740741,241.061888 7.78207885,239.696057 C7.75149343,239.502031 6.59020311,231.550777 6.47933094,230.216487" id="Path" fill="#40081D" fill-rule="nonzero"></path><path d="M19.2984468,188.473118 C19.2984468,188.473118 9.2004779,188.241816 10.7173238,205.612425 C11.8833931,218.963919 6.98016726,225.557945 7.6702509,227.504898 C8.36129032,229.450896 10.7287933,232.702509 16.0305854,229.770131 C21.3323775,226.835842 17.841816,211.535484 20.6900836,205.579928 C23.5383513,199.626284 29.7902031,196.866906 29.7902031,196.866906 C29.7902031,196.866906 28.692951,186.728793 19.2984468,188.474074" id="Path" fill="#93332D" fill-rule="nonzero"></path><path d="M32.9252091,223.648268 C32.9252091,223.648268 35.2305854,231.891995 35.7782557,233.84086 C36.4912784,236.370848 33.1842294,241.132616 30.255675,239.671207 C27.3271207,238.205974 32.9252091,223.648268 32.9252091,223.648268" id="Path" fill="#5235AD" fill-rule="nonzero"></path><path d="M13.4174432,357.909677 L14.4764636,357.909677 L14.4764636,353.434648 C15.3596177,353.508244 18.3264038,356.319235 19.2439665,357.133572 C20.1615293,357.945998 21.4212664,357.909677 25.2874552,358.156272 C29.153644,358.400956 29.5197133,356.085066 28.907049,355.295579 C28.2953405,354.506093 26.3168459,354.161051 25.2874552,353.670729 C21.1517324,353.890562 16.1041816,348.069773 13.6812425,348.081226 C12.3937873,348.086977 12.4062127,348.801912 12.3670251,348.935723 L12.3670251,348.937634 C12.3234209,349.144007 12.2733766,349.348965 12.2169654,349.55221 C11.5459976,352.030585 13.4174432,357.909677 13.4174432,357.909677 M36.7818399,358.859737 C36.7818399,358.859737 36.3574671,354.054002 37.5359618,354.005257 C38.711589,353.957467 41.6296296,357.917324 43.3729988,358.530944 C45.1144564,359.142652 54.0587814,359.660693 54.1065711,358.010992 C54.153405,356.364158 50.6695341,355.702748 49.5866189,355.231541 C45.8972521,355.221983 39.89773,351.157945 38.0367981,350.33405 C36.1777778,349.5092 34.162963,350.005257 34.162963,350.005257 C34.0501792,350.784229 33.9689367,351.494385 33.9565114,351.979928 C33.9096774,353.770131 35.5096774,358.859737 35.5096774,358.859737 L36.7808841,358.859737 L36.7818399,358.859737 Z" id="Shape" fill="#211E20" fill-rule="nonzero"></path><path d="M110.193548,259.191398 L117.97945,259.191398 L117.97945,230.876941 L110.194504,230.876941 L110.193548,259.191398 Z M121.273118,259.191398 L129.05902,259.191398 L129.05902,228.020072 L121.273118,228.020072 L121.273118,259.191398 Z M132.501792,259.191398 L140.286738,259.191398 L140.286738,233.951732 L132.500836,233.951732 L132.501792,259.191398 Z M143.72951,259.190442 L151.514456,259.190442 L151.514456,222.253763 L143.72951,222.253763 L143.72951,259.190442 Z M155.510633,259.191398 L163.296535,259.191398 L163.296535,225.933572 L155.510633,225.933572 L155.510633,259.191398 Z M167.451374,259.191398 L175.237276,259.191398 L175.237276,230.876941 L167.451374,230.876941 L167.451374,259.191398 Z M178.529988,259.191398 L186.31589,259.191398 L186.31589,228.020072 L178.529988,228.020072 L178.529988,259.191398 Z M189.758662,259.191398 L197.544564,259.191398 L197.544564,233.951732 L189.758662,233.951732 L189.758662,259.191398 Z" id="Shape" fill="#5DB0FE" fill-rule="nonzero"></path><path d="M82.255675,192.498925 C82.280724,190.396465 83.2728692,188.422752 84.9452808,187.148387 C86.1583519,186.216922 87.6501671,185.721896 89.1794504,185.743369 C92.024143,185.780869 94.5483107,187.57607 95.5173238,190.250896 L95.5201912,190.253763 C95.7438471,190.872162 95.8814815,191.531661 95.9178017,192.21601 C95.9597122,193.015701 95.861706,193.81657 95.6281959,194.582557 C95.2984557,195.666127 94.7046398,196.650784 93.9001195,197.448029 C92.23192,199.106457 89.8261299,199.786857 87.5364397,199.24779 C87.3208282,199.199423 87.1077438,199.14041 86.8979689,199.070968 C84.0904768,198.116926 82.2164094,195.46383 82.255675,192.498925 M98.1983274,192.226523 C98.1964158,192.182557 98.1983274,192.137634 98.1964158,192.093668 C98.1487685,191.197629 97.9690519,190.313539 97.6630824,189.470012 C96.4062127,186.005257 93.1096774,183.510633 89.2100358,183.460932 C87.1901702,183.430661 85.2181146,184.076239 83.6071685,185.295102 C81.3495219,186.994342 80.007888,189.644775 79.9751493,192.470251 C79.9245212,196.424546 82.4244477,199.96225 86.1686977,201.234886 C89.8529715,202.482664 93.9230713,201.253686 96.3010753,198.175388 C97.6176437,196.479435 98.2902281,194.371597 98.1992832,192.226523" id="Shape" fill="#F1E8F1" fill-rule="nonzero"></path></g></g></g></svg>
admin/images/Email-Centralisation.svg ADDED
@@ -0,0 +1 @@
 
1
+ <?xml version="1.0" encoding="UTF-8"?> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="440px" height="352px" viewBox="0 0 440 352"><!-- Generator: Sketch 64 (93537) - https://sketch.com --><title>Email Centralisation (add-on)</title><desc>Created with Sketch.</desc><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="Email-Centralisation-(add-on)" fill-rule="nonzero"><rect id="Rectangle" fill="#93332D" x="215" y="33" width="38" height="48"></rect><path d="M253.129006,35.0002013 C249.763707,44.941756 244.603469,54 234.086686,54 C223.569904,54 215.636934,45.4768303 215.044367,35.0002013 C214.287184,21.6131582 223.327275,15.9449532 234.086686,16.0004027 C246.797154,16.065902 257.122807,23.2019963 253.129006,35.0002013 Z" id="Path" fill="#8B322E"></path><path d="M244,50 C244,50 240.918919,68 242.459459,68.5 C244,69 225,71 225,71 C225,71 230.648649,57.5 229.108108,55 C227.567568,52.5 244,50 244,50 Z" id="Path" fill="#FFD0CA"></path><path d="M244,50 C244,50 240.918919,68 242.459459,68.5 C244,69 225,71 225,71 C225,71 230.648649,57.5 229.108108,55 C227.567568,52.5 244,50 244,50 Z" id="Path" fill="#000000" opacity="0.1"></path><path d="M281.618585,115.4054 L290,122 C290,122 283.072184,87.2118464 282.878307,84.6550951 C282.684429,82.0983439 276.168722,64.5855509 269.190129,67.2811341 C262.211535,69.9767173 274.141612,89.1628356 274.141612,89.1628356 L281.936276,116.963979 L281.618585,115.4054 Z" id="Path" fill="#FFD0CA"></path><circle id="Oval" fill="#FFD0CA" cx="232.5" cy="44.5" r="14.5"></circle><path d="M233.274336,66.0454545 L226.716814,63 C226.716814,63 223.185841,69.5984848 221.168142,69.5984848 C219.150442,69.5984848 202,73.1515152 202,76.7045455 C202,80.2575758 207.044248,105.636364 207.044248,105.636364 C207.044248,105.636364 217.132743,130 217.637168,130 C218.141593,130 253.955752,125.431818 253.955752,125.431818 L255.973451,119.848485 L259,86.8560606 C259,86.8560606 246.893805,78.7348485 246.893805,76.1969697 C246.893805,73.6590909 245.884956,65.030303 243.867257,65.030303 C241.849558,65.030303 238.318584,68.0757576 238.318584,68.0757576 L233.274336,66.0454545 Z" id="Path" fill="#FF536B"></path><path d="M254.506044,88.0403659 L259.024175,86 C259.024175,86 262.538278,92.6311892 263.542307,93.1412807 C264.546336,93.6513721 266.05238,96.2018295 266.05238,97.2220125 C266.05238,98.2421954 269.064468,106.403659 271.574541,106.913751 C274.084614,107.423842 278.100731,109.464208 277.598716,110.994482 C277.286137,111.814971 277.286137,112.724451 277.598716,113.54494 L279.606775,110.994482 L290.149082,119.155946 C290.149082,119.155946 295.671243,136.499056 287.639009,135.988965 C279.606775,135.478873 272.57857,131.398141 269.064468,129.357775 C265.550365,127.31741 265.550365,128.337592 263.542307,125.277044 C261.534249,122.216495 253,116.605489 253,116.605489 L254.506044,88.0403659 Z" id="Path" fill="#FF536B"></path><path d="M216.863568,124.893028 L212.81873,126.915854 L213.829939,134.501451 C213.829939,134.501451 157.707809,333.244085 165.797485,334.761204 C173.887162,336.278323 196.639377,340.323975 208.773891,343.358214 C220.908406,346.392452 238.098969,346.898159 238.098969,343.358214 C238.098969,339.818269 243.155016,213.897363 243.155016,213.897363 C243.155016,213.897363 244.671831,347.403865 249.222274,347.403865 C253.772717,347.403865 291.18747,355.495168 293.715494,347.403865 C296.243518,339.312562 281.58098,157.258241 263.379208,136.01857 C263.379208,136.01857 254.278322,124.387322 254.783926,122.870202 C255.289531,121.353083 254.278322,119.330257 254.278322,119.330257 C254.278322,119.330257 254.783926,118.318844 249.222274,119.835964 C243.660621,121.353083 241.132597,121.353083 239.615783,120.847377 C238.098969,120.34167 235.570945,118.318844 234.05413,119.835964 C232.537316,121.353083 227.986873,123.881615 225.964454,123.375909 C223.942035,122.870202 222.930825,119.835964 220.908406,121.85879 C219.714467,123.061148 218.351903,124.083277 216.863568,124.893028 Z" id="Path" fill="#5235AD"></path><path d="M169.341632,333 C169.341632,333 166.32296,349.525248 169.341632,350.041662 C172.360305,350.558076 187.453668,351.590904 187.95678,350.558076 C188.459893,349.525248 184.434996,335.065656 182.925659,334.032828 C181.416323,333 169.341632,333 169.341632,333 Z" id="Path" fill="#191847"></path><path d="M273.658368,335 C273.658368,335 276.67704,349.519172 273.658368,350.037713 C270.639695,350.556255 255.546332,351.593339 255.04322,350.556255 C254.540107,349.519172 258.565004,337.074167 260.074341,336.037084 C261.583677,335 273.658368,335 273.658368,335 Z" id="Path" fill="#191847"></path><path d="M172,117.036815 C172,117.036815 192.731101,122.577312 197.787467,123.584675 C202.843833,124.592038 208.405836,129.628853 208.911472,131.643579 C209.417109,133.658305 213.967838,142.724573 217.507295,140.709847 C221.046751,138.695121 217.507295,121.569949 214.979112,121.066267 C212.450929,120.562586 181.607096,112 181.607096,112 L172,117.036815 Z" id="Path" fill="#FFD0CA"></path><path d="M206.873045,75 L201.347922,75 L169.201751,99.4468328 C169.201751,99.4468328 161.667493,101.484069 162.169776,103.011996 C162.67206,104.539923 154.635518,113.707485 159.658357,115.744721 C164.681196,117.781957 168.699467,118.291266 170.708603,119.819193 C172.717739,121.34712 185.274836,112.688867 185.274836,112.688867 L183.265701,111.16094 C183.265701,111.16094 206.370761,103.011996 208.379896,104.030614 C210.389032,105.049232 206.873045,75 206.873045,75 Z" id="Path" fill="#FF536B"></path><polygon id="Path" fill="#FFFFFF" points="222 67.5 234 75 233 102 236.5 95.5 238.5 102 238.5 75 247 75 246.5 70.5 236.5 72 223.5 65"></polygon><path d="M224.987773,24.4545457 C224.987773,24.4545457 224.821028,23.5228955 218.299673,25.9774389 C211.778318,28.4319822 207.869219,46.5454562 211.129896,57.1818192 C212.443936,61.4682558 211.374988,64.5587441 209.630312,66.7211103 C203.083224,74.8356231 205.660541,87.023398 215.19688,91.1961608 C215.466053,91.3139312 215.74073,91.4303631 216.020912,91.5454566 L220.096757,94 C220.096757,94 214.900928,87.1381175 217.501116,78.3605116 C219.759191,70.8816495 220.038048,62.9415131 218.310239,55.3216306 C218.01193,54.0362072 217.67307,52.7111887 217.28815,51.3589915 C214.027472,39.904444 215.613324,41.2272747 227.025695,29.7727272 C227.025695,29.7727272 233.54705,34.681819 239.253233,37.1363624 C244.959417,39.5909057 249.850433,42.0454541 245.774588,50.2272738 C241.698744,58.4090934 231.916712,65.7727286 238.438062,76.4090916 C244.959411,87.0454546 245.774588,82.9545473 244.959396,87.0454546 L244.959396,87.0454546 L244.144229,91.1363619 L249.035246,86.2272751 L245.774568,92.7727258 C245.774568,92.7727258 256.371768,92.7727258 259.632445,84.5909112 L261.262784,86.2272751 C261.262784,86.2272751 267.784134,74.7727276 255.556596,64.1363646 C255.556596,64.1363646 251.480751,61.6818162 257.186934,53.5 C262.893118,45.3181871 258.510721,27.7272736 251.174199,24.4545457 C243.837677,21.1818179 224.987773,24.4545457 224.987773,24.4545457 Z" id="Path" fill="#93332D"></path><circle id="Oval" fill="#93332D" cx="234.5" cy="11.5" r="7.5"></circle><path d="M225.454545,7.5 C225.454827,3.64845894 228.283908,0.423171989 232,0.03787 C231.760742,0.01337 231.518259,0 231.272727,0 C227.256111,0 224,3.35786438 224,7.5 C224,11.6421356 227.256111,15 231.272727,15 C231.518259,15 231.760742,14.986635 232,14.96213 C228.283912,14.5768191 225.454836,11.3515375 225.454545,7.5 L225.454545,7.5 Z" id="Path" fill="#93332D"></path><ellipse id="Oval" fill="#FFD0CA" cx="248" cy="43" rx="1" ry="2"></ellipse><path d="M71.0354177,317.877606 C74.4641256,330.304015 86.208225,338 86.208225,338 C86.208225,338 92.3932933,325.548799 88.9645803,313.122394 C85.5358673,300.69599 73.791773,293 73.791773,293 C73.791773,293 67.6067098,305.451201 71.0354177,317.877606 Z" id="Path" fill="#11B99C"></path><path d="M76.4643822,315.878963 C85.8532248,324.991664 87,339 87,339 C87,339 72.9244554,338.233733 63.5356178,329.121037 C54.1467803,320.008341 53,306 53,306 C53,306 67.0755446,306.766272 76.4643822,315.878963 Z" id="Path" fill="#1CD5B5"></path><rect id="Rectangle" fill="#4EA3F2" x="62" y="351" width="328" height="1"></rect><path d="M91,351 L78,351 L78,338 L91,338 L91,351 Z M79,350 L90,350 L90,339 L79,339 L79,350 Z" id="Shape" fill="#4EA3F2"></path><polyline id="Path" fill="#4EA3F2" points="111.570259 222 0 222 0 153 127 153 127 201.365956"></polyline><polygon id="Path" fill="#000000" points="118.065771 216 6 216 6 146 134 146 134 194.863043 132.988142 194.863043 132.988142 147.014493 7.01185771 147.014493 7.01185771 214.985507 118.065771 214.985507"></polygon><polygon id="Path" fill="#000000" points="163 217 133 217 133 215.962307 159.137537 215.962307 133.007017 200.906425 133.494211 200"></polygon><rect id="Rectangle" fill="#000000" x="20" y="171" width="99" height="1"></rect><rect id="Rectangle" fill="#000000" x="20" y="181" width="99" height="1"></rect><rect id="Rectangle" fill="#000000" x="20" y="191" width="99" height="1"></rect><circle id="Oval" fill="#5235AD" cx="161" cy="216" r="4"></circle><rect id="Rectangle" fill="#4EA3F2" x="95" y="38" width="47" height="32"></rect><path d="M146,67 L98,67 L98,34 L146,34 L146,67 Z M99.0075177,66.0027078 L144.992482,66.0027078 L144.992482,34.9972922 L99.0075177,34.9972922 L99.0075177,66.0027078 Z" id="Shape" fill="#000000"></path><polygon id="Path" fill="#000000" points="121.809358 51 98 34.8208855 98.5795505 34.0019924 121.813934 49.7910868 145.42655 34 146 34.8228779"></polygon><circle id="Oval" fill="#5235AD" cx="122" cy="50" r="4"></circle><rect id="Rectangle" fill="#4EA3F2" x="339" y="204" width="47" height="32"></rect><rect id="Rectangle" fill="#5235AD" x="375" y="207" width="10" height="3"></rect><rect id="Rectangle" fill="#FFFFFF" x="362" y="216" width="23" height="2"></rect><rect id="Rectangle" fill="#FFFFFF" x="351" y="220" width="34" height="2"></rect><rect id="Rectangle" fill="#FFFFFF" x="351" y="224" width="34" height="2"></rect><polyline id="Path" fill="#4EA3F2" points="328.429741 83 440 83 440 14 313 14 313 62.3659559"></polyline><polygon id="Path" fill="#000000" points="434 78 321.934229 78 321.934229 76.9855072 432.988142 76.9855072 432.988142 9.01449275 307.011858 9.01449275 307.011858 56.8630435 306 56.8630435 306 8 434 8"></polygon><polygon id="Path" fill="#000000" points="307 78 277 78 306.505789 61 306.992983 61.9064245 280.862463 76.9623073 307 76.9623073"></polygon><rect id="Rectangle" fill="#000000" x="321" y="32" width="99" height="1"></rect><rect id="Rectangle" fill="#000000" x="321" y="42" width="99" height="1"></rect><rect id="Rectangle" fill="#000000" x="321" y="52" width="99" height="1"></rect><circle id="Oval" fill="#5235AD" cx="279" cy="77" r="4"></circle></g></g></svg>
admin/images/Module-Customization.svg ADDED
@@ -0,0 +1 @@
 
1
+ <?xml version="1.0" encoding="UTF-8"?> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="421px" height="346px" viewBox="0 0 421 346"><!-- Generator: Sketch 64 (93537) - https://sketch.com --><title>Module &amp; Customization</title><desc>Created with Sketch.</desc><defs><rect id="path-1" x="0" y="30" width="195" height="201"></rect><filter x="-4.6%" y="-4.5%" width="109.2%" height="109.0%" id="filter-2"><feOffset dx="0" dy="0" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.238909528 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix></filter><rect id="path-3" x="214" y="28" width="195" height="81"></rect><filter x="-4.6%" y="-11.1%" width="109.2%" height="122.2%" id="filter-4"><feOffset dx="0" dy="0" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.238909528 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix></filter></defs><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="Module-&amp;-Customization" transform="translate(6.000000, 0.000000)"><path d="M219.27477,320.104583 C116.524683,312.293318 -6.00957989,232.760401 0.228821719,150.868254 C6.46722333,68.9761075 125.142973,-7.25864506 227.893064,0.552619973 C330.643155,8.36388501 389.789612,161.406492 383.551198,243.298643 C377.312784,325.190794 322.024861,327.915865 219.27477,320.104583 Z" id="Path" fill="#D9EEFE" fill-rule="nonzero"></path><g id="Rectangle" fill-rule="nonzero"><use fill="black" fill-opacity="1" filter="url(#filter-2)" xlink:href="#path-1"></use><use fill="#FAFBFC" xlink:href="#path-1"></use></g><path d="M98.4416446,90.0121857 C98.1219786,90.0047401 97.8016414,90 97.4801943,90 C79.2569942,90.0094322 63.2844958,102.189896 58.4529068,119.761811 C53.6213179,137.333725 61.1207727,155.968712 76.7771147,165.294638 C92.4334567,174.620564 112.390159,172.340232 125.539428,159.722863 C138.688696,147.105495 141.791556,127.259045 133.120971,111.229942 L99.5905353,136.429857 L98.4416446,90.0121857 Z" id="Path"></path><path d="M133.743381,111.662004 C142.455732,127.753308 139.345847,147.682373 126.145119,160.353906 C112.944392,173.025438 92.9055637,175.317095 77.1850365,165.953021 C61.4645093,156.588947 53.9359176,137.876507 58.790724,120.233652 C63.6455303,102.590796 79.6874808,90.3648328 97.9853916,90.3624349 C98.3078959,90.3624349 98.6292865,90.3671906 98.9500038,90.3746606 L98.5201153,73.0067756 C98.3417004,73.0051749 98.1641664,73 97.9853916,73 C71.6457212,73.0075925 48.6187521,90.7645806 41.9151067,116.237969 C35.2114614,141.711358 46.5147506,168.503542 69.4384272,181.47649 C92.3621037,194.449438 121.148919,190.345013 139.533842,171.482283 C157.918764,152.619553 161.284447,123.735866 147.729223,101.150988 L133.743381,111.662004 Z" id="Path" fill="#5235AD" fill-rule="nonzero"></path><path d="M134.073586,112 L148,101.395239 C137.658027,83.9330861 119.097755,73.1775074 99,73 L99.4280618,90.5227916 C113.942338,90.8673315 127.16261,99.0627487 134.073586,112 L134.073586,112 Z" id="Path" fill="#5235AD" fill-rule="nonzero" opacity="0.3"></path><line x1="127" y1="181" x2="147" y2="202" id="Path" stroke="#2F2E41" stroke-width="2"></line><line x1="141" y1="55" x2="127" y2="80" id="Path" stroke="#2F2E41" stroke-width="2"></line><rect id="Rectangle" fill="#F2F2F2" fill-rule="nonzero" x="131" y="201" width="33" height="8"></rect><rect id="Rectangle" fill="#F2F2F2" fill-rule="nonzero" x="124" y="47" width="33" height="8"></rect><g id="Rectangle" fill-rule="nonzero"><use fill="black" fill-opacity="1" filter="url(#filter-4)" xlink:href="#path-3"></use><use fill="#FAFBFC" xlink:href="#path-3"></use></g><path d="M293,91 L271.11986,91 C269.626713,82.397213 269.626713,73.602787 271.11986,65 L293,65 C290.535025,73.4925731 290.535025,82.5074269 293,91 Z" id="Path" fill="#FF6584" fill-rule="nonzero"></path><path d="M354,91 L332.11986,91 C330.626713,82.397213 330.626713,73.602787 332.11986,65 L354,65 C351.535025,73.4925731 351.535025,82.5074269 354,91 Z" id="Path" fill="#FF536B" fill-rule="nonzero"></path><path d="M261,73 L239.11986,73 C237.626713,64.397213 237.626713,55.602787 239.11986,47 L261,47 C258.535025,55.4925731 258.535025,64.5074269 261,73 Z" id="Path" fill="#5235AD" fill-rule="nonzero"></path><path d="M301,73 L322.880143,73 C324.373286,64.3972127 324.373286,55.6027873 322.880143,47 L301,47 C303.464971,55.4925737 303.464971,64.5074263 301,73 Z" id="Path" fill="#5235AD" fill-rule="nonzero"></path><path d="M361,73 L382.880143,73 C384.373286,64.3972127 384.373286,55.6027873 382.880143,47 L361,47 C363.464971,55.4925737 363.464971,64.5074263 361,73 L361,73 Z" id="Path" fill="#5235AD" fill-rule="nonzero"></path><path d="M371,320.985611 C371,329.409608 331.613562,346 283.288647,346 C234.963733,346 196,329.409608 196,320.985611 C196,312.561613 234.963733,315.494013 283.288647,315.494013 C331.613562,315.494013 371,312.561613 371,320.985611 Z" id="Path" fill="#3F3D56" fill-rule="nonzero"></path><path d="M371,320.985611 C371,329.409608 331.613562,346 283.288647,346 C234.963733,346 196,329.409608 196,320.985611 C196,312.561613 234.963733,315.494013 283.288647,315.494013 C331.613562,315.494013 371,312.561613 371,320.985611 Z" id="Path" fill="#FFA9B5" fill-rule="nonzero" opacity="0.1"></path><ellipse id="Oval" fill="#FFA9B5" fill-rule="nonzero" cx="283.5" cy="320.5" rx="87.5" ry="15.5"></ellipse><ellipse id="Oval" fill="#FFA9B5" fill-rule="nonzero" opacity="0.1" cx="283.5" cy="321" rx="68.5" ry="12"></ellipse><path d="M253,230 L231.11986,230 C229.626713,221.397213 229.626713,212.602787 231.11986,204 L253,204 C250.535025,212.492573 250.535025,221.507427 253,230 Z" id="Path" fill="#5235AD" fill-rule="nonzero"></path><path d="M323.188395,97 L326.173306,98.5187493 C326.173306,98.5187493 342.341585,139.778118 336.869246,149.650007 C331.396907,159.521897 314.233657,178 314.233657,178 L311,168.634376 L324.225026,139.457441 L323.188395,97 Z" id="Path" fill="#FF536B" fill-rule="nonzero"></path><path d="M323.188395,97 L326.173306,98.5187493 C326.173306,98.5187493 342.341585,139.778118 336.869246,149.650007 C331.396907,159.521897 314.233657,178 314.233657,178 L311,168.634376 L324.225026,139.457441 L323.188395,97 Z" id="Path" fill="#000000" fill-rule="nonzero" opacity="0.1"></path><path d="M319.338138,303 C319.338138,303 323.595735,312.533334 321.341714,313.266665 C319.087692,314 316.332795,314 313.577848,314 C310.822901,314 307.567125,313.022221 307.066234,312.044443 C306.565342,311.066664 309.069805,304.711109 309.069805,304.711109 L319.338138,303 Z" id="Path" fill="#F2F2F2" fill-rule="nonzero"></path><path d="M262.131752,307.729807 C262.131752,307.729807 264.945703,316.378932 263.666636,316.873166 C262.387569,317.3674 258.294552,319.591466 255.992231,318.850111 C253.68991,318.108755 250.108527,316.37894 249.341085,315.637577 C248.573643,314.896213 249.341085,310.942341 249.341085,310.942341 L252.922473,306 L262.131752,307.729807 Z" id="Path" fill="#F2F2F2" fill-rule="nonzero"></path><path d="M311.899309,176.422172 L315.53622,177.685092 C315.53622,177.685092 316.466196,186.272949 315.451331,189.30396 C314.436466,192.334971 312.15302,214.309778 313.4216,218.856288 C314.690181,223.402797 313.929035,230.727739 313.929035,230.727739 C313.929035,230.727739 321.540518,255.480969 320.018218,260.785237 C318.495918,266.089505 318.749637,273.667021 320.271937,277.455781 C321.794237,281.244541 323.062814,282.760044 322.301664,285.791055 C321.540514,288.822066 320.018218,290.337565 321.540518,292.863405 C323.062818,295.389245 326.107405,296.146999 324.585109,298.420256 C323.062814,300.693513 321.540518,302.461599 322.047957,303.977102 C322.555396,305.492605 308.601002,308.271029 307.332422,305.997776 C307.332422,305.997776 311.391883,302.461599 307.332422,300.440925 C303.272961,298.420251 304.541545,290.842735 304.541545,290.842735 C304.541545,290.842735 297.437493,261.79557 297.691213,259.522317 C297.944932,257.249064 286.527704,221.887298 286.527704,221.887298 C286.527704,221.887298 269.782434,272.404101 268.767573,274.677358 C267.752712,276.950615 270.036153,282.507478 268.767573,284.022964 C267.498992,285.538451 269.275003,289.327228 267.498992,290.842735 C265.722981,292.358243 270.543584,297.915085 267.498992,299.935759 C264.454401,301.956433 262.932101,308.271029 263.185816,309.533949 C263.439531,310.796869 250.500011,309.281366 250.500011,307.513279 C250.500011,305.745193 250.753726,304.229685 249.485146,301.198679 C248.216565,298.167673 247.45542,296.147016 248.470285,295.136662 C249.48515,294.126308 250.246296,292.863405 249.231431,289.327228 C248.216565,285.791051 250.753726,274.929941 249.992581,272.909267 C249.231435,270.888593 249.485146,257.24906 249.485146,257.24906 C249.485146,257.24906 252.022298,237.294922 251.261161,234.011324 C250.500024,230.727726 251.261161,229.969981 251.514876,228.707061 C251.768592,227.444141 253.290887,213.804603 254.305753,211.783934 C255.320618,209.763264 256.589198,175.159248 262.42467,173.391161 C268.260142,171.623075 311.899309,176.422172 311.899309,176.422172 Z" id="Path" fill="#5235AD" fill-rule="nonzero"></path><path d="M313.549022,311.948191 C313.549022,311.948191 322.725492,310.423293 323.235294,311.948191 C323.745096,313.473089 325.274511,325.418134 321.705883,325.672283 C318.137255,325.926432 312.019607,326.688883 311,324.401534 C309.980399,322.114184 305.137256,320.589286 305.137256,320.589286 C305.137256,320.589286 298,318.556086 298,316.268741 C298,313.981396 298.254901,310.423293 299.529411,310.169144 C300.803921,309.914995 305.901964,307.119343 305.901964,306.102747 C305.901964,305.086151 313.549022,311.948191 313.549022,311.948191 Z" id="Path" fill="#211E20" fill-rule="nonzero"></path><path d="M257.129862,315.726306 C257.129862,315.726306 263.581014,313.730947 265.06974,314.978048 C266.558466,316.225149 268.543437,329.943258 265.06974,329.693839 C261.596044,329.444419 252.415564,330.94094 251.919319,328.945577 C251.423074,326.950214 244.723805,326.451383 244.723805,326.451383 C244.723805,326.451383 237.528292,322.9595 238.024537,319.218198 C238.520781,315.476895 239.265142,314.229811 242.242594,313.980375 C245.220046,313.730939 247.453137,310.239072 247.701261,309.989653 C247.949386,309.740234 250.137021,307.917037 250.407867,309.951024 C250.678713,311.985012 253.904289,316.474568 257.129862,315.726306 Z" id="Path" fill="#211E20" fill-rule="nonzero"></path><circle id="Oval" fill="#FDC2CC" fill-rule="nonzero" cx="277.5" cy="56.5" r="15.5"></circle><path d="M290.890153,60 C290.890153,60 291.87901,76.9620271 295.587223,78.4810136 C299.295435,80 276.798947,80 276.798947,80 C276.798947,80 276.551733,69.3670908 273.337947,66.8354453 C270.124162,64.3037998 290.890153,60 290.890153,60 Z" id="Path" fill="#FDC2CC" fill-rule="nonzero"></path><path d="M297.079439,74.8166524 C297.079439,74.8166524 281.4875,69.0438893 275.954874,78.079515 C275.954874,78.079515 258.35107,86.3621744 257.093655,91.3819669 C255.83624,96.4017594 267.65594,134.050203 267.65594,134.050203 C267.65594,134.050203 267.65594,165.172918 265.141119,168.435785 C262.626299,171.698652 257.848114,175.212503 261.117393,175.965474 C264.386673,176.718444 315.689184,182.240214 315.437702,178.977347 C315.18622,175.714481 311.916941,172.953595 315.437702,170.945681 C318.958464,168.937766 315.940666,166.678855 318.204014,160.153125 C320.467361,153.627396 326,99.6646263 326,99.6646263 C326,99.6646263 322.227756,92.8879038 321.47331,92.1349375 C320.718864,91.3819711 297.079439,74.8166524 297.079439,74.8166524 Z" id="Path" fill="#FF536B" fill-rule="nonzero"></path><path d="M251.94118,185 C251.94118,185 241.753448,206.791794 250.635061,209.7634 C259.516674,212.735007 258.994211,186.733445 258.994211,186.733445 L251.94118,185 Z" id="Path" fill="#FFB9B9" fill-rule="nonzero"></path><path d="M284.804554,59.4615789 C283.922581,57.6802087 282.602341,55.6251669 280.630224,55.7336423 C279.633016,55.788494 278.773073,56.4139503 277.884303,56.8730838 C276.995532,57.3322173 275.856787,57.6168425 275.044127,57.0317021 C273.855453,56.1758182 274.224007,54.1457761 273.160773,53.1360376 C272.000057,52.0337391 269.665577,52.6491703 268.916658,51.2299939 C268.516769,50.4721974 268.839719,49.5320108 268.665335,48.6918863 C267.450425,48.7148734 266.196638,48.7309913 265.070513,48.2708662 C263.944388,47.8107412 262.969252,46.7446363 263.000742,45.520179 C263.068799,44.6774837 263.470484,43.89787 264.115239,43.3570963 C265.648578,41.9516835 267.866559,41.6821721 269.758652,40.8298198 C271.264381,40.1515118 272.573642,39.0943985 274.053575,38.3606523 C276.60065,37.0978411 279.539188,36.8529538 282.369419,37.070968 C286.660779,37.4015293 291.000494,38.8371063 294.11239,41.8340858 C297.224286,44.8310653 298.871201,49.5591793 297.529132,53.6812544 C296.768643,56.0170228 295.156984,57.9803231 294.257599,60.2653917 C293.706249,61.8291249 293.324068,63.4483138 293.117707,65.0947871 L292.486274,69 C292.584543,68.3922439 291.260678,66.8678156 290.826504,66.5050944 C289.879484,65.7138849 288.501957,65.9823457 287.622747,65.2494772 C286.322275,64.1654612 285.569714,61.0070449 284.804554,59.4615789 Z" id="Path" fill="#93332D" fill-rule="nonzero"></path><path d="M262.970188,89.1440315 L258.897774,91.6597362 C258.897774,91.6597362 252.280096,131.156431 253.043676,136.691002 C253.807255,142.225573 249.989366,173.420413 251.261996,175.936126 C252.534625,178.451839 253.043676,178.95498 253.043676,180.464411 C253.043676,181.973843 249.480312,187.508406 251.771046,188.514692 C254.06178,189.520978 262.461138,191.281975 262.461138,188.514692 C262.461138,185.747408 260.933979,181.973838 263.733767,180.212837 C266.533556,178.451835 268.569756,167.13113 268.569756,167.13113 C268.569756,167.13113 269.842386,155.558851 271.115007,153.294708 C272.387628,151.030565 274.169321,142.72871 274.169321,139.206715 C274.169321,135.68472 277.22363,121.345149 275.441951,114.049584 C273.660271,106.754019 273.151225,87.1314593 262.970188,89.1440315 Z" id="Path" fill="#000000" fill-rule="nonzero" opacity="0.1"></path><path d="M260.970191,88.1440316 L256.897773,90.6597363 C256.897773,90.6597363 250.2801,130.156435 251.043679,135.691002 C251.807259,141.225569 247.989366,172.420412 249.261995,174.936126 C250.534625,177.451839 251.043679,177.954984 251.043679,179.464411 C251.043679,180.973838 247.480316,186.508409 249.77105,187.514691 C252.061784,188.520973 260.461137,190.281979 260.461137,187.514691 C260.461137,184.747403 258.933982,180.973838 261.733766,179.21284 C264.53355,177.451843 266.569759,166.13113 266.569759,166.13113 C266.569759,166.13113 267.842389,154.55885 269.11501,152.294708 C270.387631,150.030565 272.169319,141.728714 272.169319,138.206715 C272.169319,134.684716 275.223633,120.34517 273.441949,113.049584 C271.660265,105.753998 271.151228,86.1314595 260.970191,88.1440316 Z" id="Path" fill="#FF536B" fill-rule="nonzero"></path></g></g></svg>
admin/images/Web-to-Lead.svg ADDED
@@ -0,0 +1 @@
 
1
+ <?xml version="1.0" encoding="UTF-8"?> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="368px" height="299px" viewBox="0 0 368 299"><!-- Generator: Sketch 64 (93537) - https://sketch.com --><title>Web-to-Lead </title><desc>Created with Sketch.</desc><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="Web-to-Lead-" transform="translate(1.000000, 0.000000)"><ellipse id="Oval" fill="#FF536B" fill-rule="nonzero" opacity="0.200000003" cx="293.5" cy="284" rx="66.5" ry="15"></ellipse><ellipse id="Oval" stroke="#3F3D56" cx="299.5" cy="280" rx="66.5" ry="15"></ellipse><circle id="Oval" fill="#5235AD" fill-rule="nonzero" cx="192" cy="134" r="13"></circle><circle id="Oval" fill="#5235AD" fill-rule="nonzero" cx="245" cy="134" r="13"></circle><circle id="Oval" fill="#6C63FF" fill-rule="nonzero" cx="298" cy="134" r="13"></circle><circle id="Oval" fill="#F86B75" fill-rule="nonzero" cx="5.5" cy="9.5" r="1.5"></circle><circle id="Oval" fill="#FAD375" fill-rule="nonzero" cx="9.5" cy="9.5" r="1.5"></circle><circle id="Oval" fill="#8BCC55" fill-rule="nonzero" cx="13.5" cy="9.5" r="1.5"></circle><rect id="Rectangle" fill="#5235AD" fill-rule="nonzero" x="29" y="30" width="91" height="28"></rect><rect id="Rectangle" stroke="#3F3D56" x="0" y="5" width="160" height="95"></rect><line x1="0" y1="12" x2="160" y2="12" id="Path" stroke="#3F3D56"></line><circle id="Oval" stroke="#3F3D56" cx="5.5" cy="8.5" r="1.5"></circle><circle id="Oval" stroke="#3F3D56" cx="9.5" cy="8.5" r="1.5"></circle><circle id="Oval" stroke="#3F3D56" cx="13.5" cy="8.5" r="1.5"></circle><rect id="Rectangle" stroke="#3F3D56" x="35" y="24" width="91" height="28"></rect><rect id="Rectangle" fill="#CBE7FF" fill-rule="nonzero" x="18" y="70" width="121" height="4"></rect><rect id="Rectangle" fill="#CBE7FF" fill-rule="nonzero" x="18" y="79" width="121" height="4"></rect><rect id="Rectangle" fill="#CBE7FF" fill-rule="nonzero" x="18" y="88" width="121" height="4"></rect><rect id="Rectangle" stroke="#3F3D56" x="20" y="68" width="121" height="4"></rect><rect id="Rectangle" stroke="#3F3D56" x="20" y="77" width="121" height="4"></rect><rect id="Rectangle" stroke="#3F3D56" x="20" y="86" width="121" height="4"></rect><circle id="Oval" fill="#F86B75" fill-rule="nonzero" cx="42.5" cy="174.5" r="1.5"></circle><circle id="Oval" fill="#FAD375" fill-rule="nonzero" cx="46.5" cy="174.5" r="1.5"></circle><circle id="Oval" fill="#8BCC55" fill-rule="nonzero" cx="50.5" cy="174.5" r="1.5"></circle><rect id="Rectangle" fill="#5235AD" fill-rule="nonzero" x="66" y="195" width="91" height="28"></rect><polyline id="Path" stroke="#3F3D56" points="197 189.351852 197 265 37 265 37 170 167.10989 170"></polyline><line x1="37" y1="177" x2="167" y2="177" id="Path" stroke="#3F3D56"></line><circle id="Oval" stroke="#3F3D56" cx="42.5" cy="173.5" r="1.5"></circle><circle id="Oval" stroke="#3F3D56" cx="46.5" cy="173.5" r="1.5"></circle><circle id="Oval" stroke="#3F3D56" cx="50.5" cy="173.5" r="1.5"></circle><rect id="Rectangle" stroke="#3F3D56" x="72" y="189" width="91" height="28"></rect><circle id="Oval" fill="#F86B75" fill-rule="nonzero" cx="172.5" cy="97.5" r="1.5"></circle><circle id="Oval" fill="#FAD375" fill-rule="nonzero" cx="176.5" cy="97.5" r="1.5"></circle><circle id="Oval" fill="#8BCC55" fill-rule="nonzero" cx="180.5" cy="97.5" r="1.5"></circle><rect id="Rectangle" stroke="#3F3D56" x="167" y="94" width="160" height="95"></rect><line x1="167" y1="101" x2="327" y2="101" id="Path" stroke="#3F3D56"></line><circle id="Oval" stroke="#3F3D56" cx="173.5" cy="97.5" r="1.5"></circle><circle id="Oval" stroke="#3F3D56" cx="177.5" cy="97.5" r="1.5"></circle><circle id="Oval" stroke="#3F3D56" cx="194" cy="132" r="13"></circle><circle id="Oval" stroke="#3F3D56" cx="247" cy="132" r="13"></circle><circle id="Oval" stroke="#3F3D56" cx="301" cy="132" r="13"></circle><rect id="Rectangle" fill="#CBE7FF" fill-rule="nonzero" x="174" y="156" width="36" height="4"></rect><rect id="Rectangle" fill="#CBE7FF" fill-rule="nonzero" x="228" y="156" width="36" height="4"></rect><rect id="Rectangle" fill="#F2F2F2" fill-rule="nonzero" x="282" y="156" width="36" height="4"></rect><rect id="Rectangle" stroke="#3F3D56" x="176" y="155" width="36" height="4"></rect><rect id="Rectangle" stroke="#3F3D56" x="230" y="155" width="36" height="4"></rect><rect id="Rectangle" stroke="#3F3D56" x="283" y="155" width="36" height="4"></rect><rect id="Rectangle" fill="#CBE7FF" fill-rule="nonzero" x="43" y="234" width="28" height="24"></rect><rect id="Rectangle" fill="#CBE7FF" fill-rule="nonzero" x="94" y="234" width="28" height="24"></rect><rect id="Rectangle" fill="#CBE7FF" fill-rule="nonzero" x="145" y="234" width="28" height="24"></rect><rect id="Rectangle" stroke="#3F3D56" x="47" y="229" width="28" height="24"></rect><rect id="Rectangle" stroke="#3F3D56" x="98" y="229" width="28" height="24"></rect><rect id="Rectangle" stroke="#3F3D56" x="149" y="230" width="28" height="24"></rect><polygon id="Path" fill="#79758C" fill-rule="nonzero" points="264.190215 90 252 97 265 92.247186"></polygon><ellipse id="Oval" fill="#3F3D56" fill-rule="nonzero" transform="translate(267.707950, 90.619488) rotate(-17.994250) translate(-267.707950, -90.619488) " cx="267.70795" cy="90.619488" rx="3.444203" ry="6.94471454"></ellipse><ellipse id="Oval" fill="#3F3D56" fill-rule="nonzero" transform="translate(278.443594, 85.323615) rotate(-17.994250) translate(-278.443594, -85.323615) " cx="278.443594" cy="85.3236154" rx="2.59844914" ry="4.9035493"></ellipse><polygon id="Path" fill="#3F3D56" fill-rule="nonzero" points="268 86.9058203 276.247076 84 278 88.7383897 270.017901 94"></polygon><path d="M267.29978,105 L269.508022,100.046277 C269.508022,100.046277 274.807802,85.6354475 269.94967,88.3374781 C265.091538,91.0395087 263.324945,98.2449236 263.324945,98.2449236 L262,102.748308 L267.29978,105 Z" id="Path" fill="#F4BFA7" fill-rule="nonzero"></path><path d="M328,177.819325 C328,177.819325 320.444444,192.543253 318.222222,192.989433 C316,193.435613 316,179.604044 316,179.604044 C316,179.604044 320.444444,175.588427 322.222222,176.034607 C324,176.480786 328,177.819325 328,177.819325 Z" id="Path" fill="#F4BFA7" fill-rule="nonzero"></path><path d="M317.303032,269 C317.303032,269 321.331836,271.253306 319.541257,276.210579 C317.750677,281.167852 316.855387,279.815868 315.960098,283.871819 C315.064808,287.927769 307.007201,287.477108 306.559556,285.674464 C306.111911,283.871819 305.216622,276.66124 307.454846,273.957273 C309.69307,271.253306 317.303032,269 317.303032,269 Z" id="Path" fill="#191847" fill-rule="nonzero"></path><path d="M277.696968,269 C277.696968,269 273.668164,271.253306 275.458743,276.210579 C277.249323,281.167852 278.144613,279.815868 279.039902,283.871819 C279.935192,287.927769 287.992799,287.477108 288.440444,285.674464 C288.888089,283.871819 289.783378,276.66124 287.545154,273.957273 C285.30693,271.253306 277.696968,269 277.696968,269 Z" id="Path" fill="#191847" fill-rule="nonzero"></path><path d="M314.9628,180.492947 C314.9628,180.492947 318.510319,182.696128 319.397199,196.355855 C320.284079,210.015582 318.953759,225.437854 318.510319,228.962945 C318.066879,232.488036 318.953759,237.775672 319.840639,240.41949 C320.727519,243.063308 317.623439,263.33258 317.623439,263.33258 C318.948398,266.122637 318.948398,269.35525 317.623439,272.145307 C315.40624,276.992307 308.754642,281.839307 306.980883,276.992307 C306.887961,275.301245 306.434509,273.6491 305.650563,272.145307 C304.320244,269.501489 306.537443,258.926217 306.537443,258.926217 C306.537443,258.926217 304.763684,242.182035 305.207123,237.775672 C305.650563,233.369308 299.885845,207.371764 298.998965,202.9654 C298.112086,198.559037 298.555525,195.033946 298.112086,196.355855 C297.668646,197.677764 289.686728,234.250581 289.686728,234.250581 C289.686728,234.250581 290.573608,257.604308 290.130168,260.688762 C289.686728,263.773216 291.903928,269.942125 290.573608,272.145307 C289.243288,274.348489 286.582649,282.279943 281.704811,277.432943 C276.826972,272.585943 277.713852,270.823398 277.270412,268.620216 C276.826972,266.417035 277.270412,263.773216 277.270412,260.248126 C277.270412,256.723035 273.722893,236.894399 275.496653,233.809945 C277.270412,230.72549 276.383532,226.759763 275.940093,219.709582 C275.496653,212.6594 275.053213,178.730401 279.487611,172.561492 C283.92201,166.392584 314.9628,180.492947 314.9628,180.492947 Z" id="Path" fill="#FF536B" fill-rule="nonzero"></path><circle id="Oval" fill="#A0616A" fill-rule="nonzero" cx="304.5" cy="87.5" r="10.5"></circle><path d="M311.08745,92.3313203 C311.08745,92.3313203 310.64931,108.500749 312.840009,111.195653 C315.030707,113.890558 294,108.949899 294,108.949899 C294,108.949899 298.819537,98.6194313 295.752559,91.8821695 C292.685581,85.1449077 311.08745,92.3313203 311.08745,92.3313203 Z" id="Path" fill="#F4BFA7" fill-rule="nonzero"></path><path d="M314.919355,108.421919 C314.919355,108.421919 314.032258,104.898161 308.709677,104.017221 C303.387097,103.136282 297.092773,102.255342 295.139128,104.017221 C293.185484,105.7791 292.298387,107.981449 290.967742,107.981449 L284.758065,107.981449 L275,125.159768 C275,125.159768 279.879032,130.885875 278.548387,141.457148 C277.217742,152.028422 275,171.40909 275,171.40909 C278.555925,176.11012 281.673623,181.122786 284.314516,186.385061 C288.75,195.194455 319.354839,194.313516 317.580645,178.897075 C317.580645,178.897075 315.362903,174.932848 316.25,171.40909 C317.137097,167.885332 319.798387,144.099967 319.798387,144.099967 L330,117.231313 C330,117.231313 315.806452,110.183797 314.919355,108.421919 Z" id="Path" fill="#5235AD" fill-rule="nonzero"></path><path d="M326.53645,117 L329.681458,117 C329.681458,117 331.478605,127.202299 331.029319,133.412393 C330.580032,139.622488 330.580032,154.260569 330.580032,154.260569 C330.580032,154.260569 332.377179,157.809195 331.927892,160.914242 C331.478605,164.019289 330.580032,172.447275 330.580032,172.447275 C330.580032,172.447275 330.130745,184.423887 321.594295,178.213792 C321.594295,178.213792 318.898574,176.883057 320.246434,171.116541 C321.594295,165.350024 319.347861,159.139929 319.347861,159.139929 C319.347861,159.139929 320.695721,155.147725 320.246434,152.486256 C319.797147,149.824787 318,141.396801 318,141.396801 L326.53645,117 Z" id="Path" fill="#5235AD" fill-rule="nonzero"></path><path d="M287,109.33942 L284.824056,108.034372 C284.824056,108.034372 281.777735,106.729323 277.425848,108.034372 C273.073961,109.33942 270.898017,108.904404 269.157262,108.469388 C267.416507,108.034372 268.722073,103.684211 268.722073,103.684211 C268.722073,103.684211 265.240564,97.593985 261.759054,101.074114 C258.277544,104.554243 258.277544,111.514501 258.277544,111.514501 C258.277544,111.514501 256.1016,115.864662 263.934997,118.474758 C271.768394,121.084855 275.249904,125 275.249904,125 L283.953679,125 L287,109.33942 Z" id="Path" fill="#5235AD" fill-rule="nonzero"></path><path d="M303.80428,100 C303.77699,99.207095 303.288645,98.5038453 302.556379,98.2029377 C302.077183,98.0393388 301.578353,97.9405802 301.073095,97.9092769 C299.595085,97.7182052 298.074665,97.174831 297.213721,96.042908 C296.067333,94.5357036 296.380682,92.4273057 295.461899,90.7911349 C295.034568,90.1469444 294.566732,89.530702 294.061234,88.9461524 C292.45786,86.7949819 292.175276,84.0486356 292.029283,81.4359115 C291.957499,80.9062524 292.018188,80.3670111 292.205889,79.8667019 C292.481125,79.4166294 292.814106,79.0047262 293.196297,78.6415493 C293.84387,77.8871889 294.193232,76.9210727 294.178302,75.9259402 C294.1314,73.9023958 297.019533,72.5426115 299.064982,71.8438066 C301.110431,71.1450017 303.328697,71.0337014 305.507929,71.0041347 C306.760739,70.9871387 308.053728,71.0019982 309.205203,71.460706 C309.867431,71.7491898 310.490344,72.1209907 311.05893,72.5671481 C313.472221,74.3380594 315.73876,76.5152417 316.548778,79.2707909 C316.866612,80.5286264 317.014528,81.8235516 316.988562,83.1208554 C317.02705,83.5239251 316.968075,83.930357 316.816631,84.3057286 C316.527024,84.8894954 315.844309,85.2056913 315.402941,85.7007798 C314.578583,86.6254662 314.725318,87.9633987 314.620871,89.1599419 C314.349799,91.6623094 312.908886,93.8867103 310.73884,95.1528009 C310.294475,95.370887 309.885229,95.6545194 309.524746,95.9942437 C309.253034,96.3548645 309.028059,96.7485888 308.855213,97.1659849 C307.987004,98.8354079 305.799572,99.9409319 303.80428,100 Z" id="Path" fill="#93332D" fill-rule="nonzero"></path><polygon id="Path" fill="#79758C" fill-rule="nonzero" points="84.626188 5 79 8 85 5.96313864"></polygon><ellipse id="Oval" fill="#3F3D56" fill-rule="nonzero" transform="translate(86.348004, 5.201189) rotate(-17.994250) translate(-86.348004, -5.201189) " cx="86.3480044" cy="5.20118896" rx="1.63489964" ry="3.29653026"></ellipse><ellipse id="Oval" fill="#3F3D56" fill-rule="nonzero" transform="translate(91.444018, 2.687331) rotate(-17.994250) translate(-91.444018, -2.687331) " cx="91.4440175" cy="2.68733149" rx="1.23343492" ry="2.32762248"></ellipse><polygon id="Path" fill="#3F3D56" fill-rule="nonzero" points="87 3.45258267 91.1234948 2 92 4.36904437 88.0090544 7"></polygon><polygon id="Path" fill="#79758C" fill-rule="nonzero" points="124.626188 169 119 172 125 169.963139"></polygon><ellipse id="Oval" fill="#3F3D56" fill-rule="nonzero" transform="translate(125.939339, 169.012685) rotate(-17.994250) translate(-125.939339, -169.012685) " cx="125.939339" cy="169.012685" rx="1.63489964" ry="3.29653026"></ellipse><ellipse id="Oval" fill="#3F3D56" fill-rule="nonzero" transform="translate(131.035352, 166.498827) rotate(-17.994250) translate(-131.035352, -166.498827) " cx="131.035352" cy="166.498827" rx="1.23343492" ry="2.32762248"></ellipse><polygon id="Path" fill="#3F3D56" fill-rule="nonzero" points="126 167.452583 130.123495 166 131 168.369044 127.009054 171"></polygon></g></g></svg>
admin/partials/import_cf7_entry.class.php CHANGED
@@ -75,6 +75,20 @@ if(isset($_POST['submit']) && isset($_FILES['importFormList']) && !empty($_FILES
75
  //Get Header details from CSV sheet
76
  $arrHeader = fgetcsv($handle);
77
  $header = $arrHeader;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
78
 
79
  array_push($header,"Status");
80
  //Define option field type array
75
  //Get Header details from CSV sheet
76
  $arrHeader = fgetcsv($handle);
77
  $header = $arrHeader;
78
+
79
+ $temp = array();
80
+ if(!empty($arrHeader)){
81
+ foreach ($arrHeader as $key => $value) {
82
+ if($key == 0){
83
+ $result = preg_replace('/[\x00-\x1F\x80-\xFF]/', '', $value);
84
+ $temp[] = $result;
85
+ //For remove u+fffd like � character from first field
86
+ }else{
87
+ $temp[] = $value;
88
+ }
89
+ }
90
+ }
91
+ $arrHeader = $temp;
92
 
93
  array_push($header,"Status");
94
  //Define option field type array
admin/partials/mounstride-CRM.php ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ // Exit if accessed directly
3
+ if(!defined( 'ABSPATH' ) ) {
4
+ exit;
5
+ }
6
+
7
+ //enqueue date time picker CSS in file
8
+ wp_enqueue_style('mounstride-CRM-css');
9
+
10
+ ?>
11
+
12
+ <div class="mountstride-crm-wrapper">
13
+ <div class="top-section">
14
+ <div class="container">
15
+ <h1 class="header-typ1">Grow your Leads, Contacts and Sales Activities</h1>
16
+ <div class="header-typ2">Start collaborating as a team, as you always wanted to</div>
17
+ <div class="base-text">Capture leads and manage them in a more efficient way. Manage your sales activities, contact, organization and email conversation against each lead from a single view.</div>
18
+ </div>
19
+ </div>
20
+
21
+ <div class="bottom-section">
22
+ <div class="container">
23
+ <div class="features-box-wrapper">
24
+
25
+ <div class="features-box clearfix odd">
26
+ <div class="inner-section">
27
+ <div class="tbl">
28
+ <div class="tbl-cell info-section-wrapper">
29
+ <div class="info-section">
30
+ <div class="image visible-xs"><img src="<?php echo plugins_url('images/Web-to-Lead.svg', dirname(__FILE__)) ; ?>" title="Web-to-Lead" alt="Web-to-Lead" class="img-responsive" /></div>
31
+ <h3 class="header-typ3">Web-to-Lead</h3>
32
+ <div class="body-text"><p>Automatically add data from your website form as lead / contact and set auto allocation rules from rule engine</p></div>
33
+ </div>
34
+ </div>
35
+ <div class="tbl-cell info-image-section-wrapper hidden-xs">
36
+ <div class="info-image-section">
37
+ <div class="image"><img src="<?php echo plugins_url('images/Web-to-Lead.svg', dirname(__FILE__)) ; ?>" title="Web-to-Lead" alt="Web-to-Lead" class="img-responsive" /></div>
38
+ </div>
39
+ </div>
40
+ </div>
41
+ </div>
42
+ </div>
43
+
44
+ <div class="features-box clearfix even">
45
+ <div class="inner-section">
46
+ <div class="tbl">
47
+ <div class="tbl-cell info-image-section-wrapper hidden-xs">
48
+ <div class="info-image-section">
49
+ <div class="image"><img src="<?php echo plugins_url('images/Automation-Through-Rule-Engine.svg', dirname(__FILE__)) ; ?>" title="Automation Through Rule Engine" alt="Automation Through Rule Engine" class="img-responsive" /></div>
50
+ </div>
51
+ </div>
52
+ <div class="tbl-cell info-section-wrapper">
53
+ <div class="info-section">
54
+ <div class="image visible-xs"><img src="<?php echo plugins_url('images/Automation-Through-Rule-Engine.svg', dirname(__FILE__)) ; ?>" title="Automation Through Rule Engine" alt="Automation Through Rule Engine" class="img-responsive" /></div>
55
+ <h3 class="header-typ3">Automation through Rule Engine</h3>
56
+ <div class="body-text"><p>Use rule engine to automate lead allocation process by defining rules for all incoming leads via web and email. Match criteria and set actions to be performed like assign labels and set ownership.</p></div>
57
+ </div>
58
+ </div>
59
+ </div>
60
+ </div>
61
+ </div>
62
+
63
+ <div class="features-box clearfix odd">
64
+ <div class="inner-section">
65
+ <div class="tbl">
66
+ <div class="tbl-cell info-section-wrapper">
67
+ <div class="info-section">
68
+ <div class="image visible-xs"><img src="<?php echo plugins_url('images/Email-Centralisation.svg', dirname(__FILE__)) ; ?>" title="Email Centralisation" alt="Email Centralisation" class="img-responsive" /></div>
69
+ <h3 class="header-typ3">Email Centralisation</h3>
70
+ <div class="body-text"><p>You own your mails. We do not sync your personal email inbox.</p><p>Unorganised. Scattered. Random. Not Prioritised. – With our cleverly integrated solution of mountstride and histride, we address standard challenges posed by traditional email inbox.</p><p>Manage all conversations in one place, no more digging through emails.</p></div>
71
+ </div>
72
+ </div>
73
+ <div class="tbl-cell info-image-section-wrapper hidden-xs">
74
+ <div class="info-image-section">
75
+ <div class="image"><img src="<?php echo plugins_url('images/Email-Centralisation.svg', dirname(__FILE__)) ; ?>" title="Email Centralisation" alt="Email Centralisation" class="img-responsive" /></div>
76
+ </div>
77
+ </div>
78
+ </div>
79
+ </div>
80
+ </div>
81
+
82
+ <div class="features-box clearfix even">
83
+ <div class="inner-section">
84
+ <div class="tbl">
85
+ <div class="tbl-cell info-image-section-wrapper hidden-xs">
86
+ <div class="info-image-section">
87
+ <div class="image"><img src="<?php echo plugins_url('images/Module-Customization.svg', dirname(__FILE__)) ; ?>" title="Customization" alt="Customization" class="img-responsive" /></div>
88
+ </div>
89
+ </div>
90
+ <div class="tbl-cell info-section-wrapper">
91
+ <div class="info-section">
92
+ <div class="image visible-xs"><img src="<?php echo plugins_url('images/Module-Customization.svg', dirname(__FILE__)) ; ?>" title="Customization" alt="Customization" class="img-responsive" /></div>
93
+ <h3 class="header-typ3">Customization</h3>
94
+ <div class="body-text"><p>Create custom stages based on your unique sales funnel.</p><p>Add input data fields for your business by creating custom fields.</p><p>Define module name and labels that are more familiar in your business environment.</p></div>
95
+ </div>
96
+ </div>
97
+ </div>
98
+ </div>
99
+ </div>
100
+
101
+ </div>
102
+ <div class="btn-outer"><a href="https://www.mountstride.com/contact/" target="_blank" rel="nofollow" class="btn-typ1">Contact Us</a></div>
103
+ </div>
104
+ </div>
105
+ </div>
advanced-cf7-db.php CHANGED
@@ -9,7 +9,7 @@
9
  * Plugin Name: Advanced CF7 DB
10
  * Plugin URI: https://wordpress.org/plugins/advanced-cf7-db/
11
  * Description: Save all contact form 7 submitted data to the database, View, Export, ordering, Change field labels, Import data using CSV very easily.
12
- * Version: 1.7.2
13
  * Author: Vsourz Digital
14
  * Author URI: https://www.vsourz.com
15
  * License: GPL-2.0+
@@ -23,7 +23,7 @@ if ( ! defined( 'WPINC' ) ) {
23
  die;
24
  }
25
  global $vsz_cf7db_current_version;
26
- $vsz_cf7db_current_version = '1.7.2';
27
  /**
28
  * Defining all the table names and setting their prefix here
29
  */
9
  * Plugin Name: Advanced CF7 DB
10
  * Plugin URI: https://wordpress.org/plugins/advanced-cf7-db/
11
  * Description: Save all contact form 7 submitted data to the database, View, Export, ordering, Change field labels, Import data using CSV very easily.
12
+ * Version: 1.8.0
13
  * Author: Vsourz Digital
14
  * Author URI: https://www.vsourz.com
15
  * License: GPL-2.0+
23
  die;
24
  }
25
  global $vsz_cf7db_current_version;
26
+ $vsz_cf7db_current_version = '2.0.0';
27
  /**
28
  * Defining all the table names and setting their prefix here
29
  */