diff --git a/whatsapp_redirect/README.rst b/whatsapp_redirect/README.rst new file mode 100644 index 000000000..70c1745f3 --- /dev/null +++ b/whatsapp_redirect/README.rst @@ -0,0 +1,47 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Send Whatsapp Message +===================== +This module helps you to directly send messages to your +contacts through WhatsApp web. + +Configuration +============= +* No additional configurations needed + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developers: Nishad@cybrosys + version 13: Nimisha Murali@cybrosys + version 14: Jibin James@cybrosys + version 15: Midilaj VK@cybrosys + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com + +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit `Our Website `__ + +Further information +=================== +HTML Description: ``__ + + diff --git a/whatsapp_redirect/__init__.py b/whatsapp_redirect/__init__.py new file mode 100644 index 000000000..1654671ae --- /dev/null +++ b/whatsapp_redirect/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# + +from . import models +from . import wizard diff --git a/whatsapp_redirect/__manifest__.py b/whatsapp_redirect/__manifest__.py new file mode 100644 index 000000000..935a7aeee --- /dev/null +++ b/whatsapp_redirect/__manifest__.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + 'name': 'Send Whatsapp Message', + 'version': '15.0.1.0.0', + 'summary': 'Send Message to partner via Whatsapp web', + 'description': 'Send Message to partner via Whatsapp web', + 'live_test_url': 'https://www.youtube.com/watch?v=7doVs8tDSnU&feature=youtu.be', + 'category': 'Extra Tools', + 'author': 'Cybrosys Techno solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': [ + 'base', 'contacts' + ], + 'data': [ + 'security/ir.model.access.csv', + 'views/view.xml', + 'wizard/wizard.xml', + ], + 'images': ['static/description/banner.png'], + 'installable': True, + 'application': False, + 'auto_install': False, + 'license': 'AGPL-3', +} diff --git a/whatsapp_redirect/doc/RELEASE_NOTES.md b/whatsapp_redirect/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..bf2b29220 --- /dev/null +++ b/whatsapp_redirect/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 26.11.2021 +#### Version 15.0.1.0.0 +##### ADD +- Initial commit for Send Whatsapp Message Module diff --git a/whatsapp_redirect/models/__init__.py b/whatsapp_redirect/models/__init__.py new file mode 100644 index 000000000..26bd4be6e --- /dev/null +++ b/whatsapp_redirect/models/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import models diff --git a/whatsapp_redirect/models/models.py b/whatsapp_redirect/models/models.py new file mode 100644 index 000000000..16c97d965 --- /dev/null +++ b/whatsapp_redirect/models/models.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import models, fields, api, _ + + +class ResPartner(models.Model): + _inherit = 'res.partner' + + def send_msg(self): + return {'type': 'ir.actions.act_window', + 'name': _('Whatsapp Message'), + 'res_model': 'whatsapp.message.wizard', + 'target': 'new', + 'view_mode': 'form', + 'view_type': 'form', + 'context': {'default_user_id': self.id}, + } diff --git a/whatsapp_redirect/security/ir.model.access.csv b/whatsapp_redirect/security/ir.model.access.csv new file mode 100644 index 000000000..ace71c3df --- /dev/null +++ b/whatsapp_redirect/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_group_user,Access User,model_whatsapp_message_wizard,base.group_user,1,1,1,1 \ No newline at end of file diff --git a/whatsapp_redirect/static/description/assets/icons/check.png b/whatsapp_redirect/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/whatsapp_redirect/static/description/assets/icons/check.png differ diff --git a/whatsapp_redirect/static/description/assets/icons/chevron.png b/whatsapp_redirect/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/whatsapp_redirect/static/description/assets/icons/chevron.png differ diff --git a/whatsapp_redirect/static/description/assets/icons/cogs.png b/whatsapp_redirect/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/whatsapp_redirect/static/description/assets/icons/cogs.png differ diff --git a/whatsapp_redirect/static/description/assets/icons/consultation.png b/whatsapp_redirect/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/whatsapp_redirect/static/description/assets/icons/consultation.png differ diff --git a/whatsapp_redirect/static/description/assets/icons/ecom-black.png b/whatsapp_redirect/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/whatsapp_redirect/static/description/assets/icons/ecom-black.png differ diff --git a/whatsapp_redirect/static/description/assets/icons/education-black.png b/whatsapp_redirect/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/whatsapp_redirect/static/description/assets/icons/education-black.png differ diff --git a/whatsapp_redirect/static/description/assets/icons/hotel-black.png b/whatsapp_redirect/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/whatsapp_redirect/static/description/assets/icons/hotel-black.png differ diff --git a/whatsapp_redirect/static/description/assets/icons/license.png b/whatsapp_redirect/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/whatsapp_redirect/static/description/assets/icons/license.png differ diff --git a/whatsapp_redirect/static/description/assets/icons/lifebuoy.png b/whatsapp_redirect/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/whatsapp_redirect/static/description/assets/icons/lifebuoy.png differ diff --git a/whatsapp_redirect/static/description/assets/icons/logo.png b/whatsapp_redirect/static/description/assets/icons/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/whatsapp_redirect/static/description/assets/icons/logo.png differ diff --git a/whatsapp_redirect/static/description/assets/icons/manufacturing-black.png b/whatsapp_redirect/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/whatsapp_redirect/static/description/assets/icons/manufacturing-black.png differ diff --git a/whatsapp_redirect/static/description/assets/icons/pos-black.png b/whatsapp_redirect/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/whatsapp_redirect/static/description/assets/icons/pos-black.png differ diff --git a/whatsapp_redirect/static/description/assets/icons/puzzle.png b/whatsapp_redirect/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/whatsapp_redirect/static/description/assets/icons/puzzle.png differ diff --git a/whatsapp_redirect/static/description/assets/icons/restaurant-black.png b/whatsapp_redirect/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/whatsapp_redirect/static/description/assets/icons/restaurant-black.png differ diff --git a/whatsapp_redirect/static/description/assets/icons/service-black.png b/whatsapp_redirect/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/whatsapp_redirect/static/description/assets/icons/service-black.png differ diff --git a/whatsapp_redirect/static/description/assets/icons/trading-black.png b/whatsapp_redirect/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/whatsapp_redirect/static/description/assets/icons/trading-black.png differ diff --git a/whatsapp_redirect/static/description/assets/icons/training.png b/whatsapp_redirect/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/whatsapp_redirect/static/description/assets/icons/training.png differ diff --git a/whatsapp_redirect/static/description/assets/icons/update.png b/whatsapp_redirect/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/whatsapp_redirect/static/description/assets/icons/update.png differ diff --git a/whatsapp_redirect/static/description/assets/icons/user.png b/whatsapp_redirect/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/whatsapp_redirect/static/description/assets/icons/user.png differ diff --git a/whatsapp_redirect/static/description/assets/icons/wrench.png b/whatsapp_redirect/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/whatsapp_redirect/static/description/assets/icons/wrench.png differ diff --git a/whatsapp_redirect/static/description/assets/modules/barcode_image.png b/whatsapp_redirect/static/description/assets/modules/barcode_image.png new file mode 100644 index 000000000..cfb5be33c Binary files /dev/null and b/whatsapp_redirect/static/description/assets/modules/barcode_image.png differ diff --git a/whatsapp_redirect/static/description/assets/modules/biometric_image.png b/whatsapp_redirect/static/description/assets/modules/biometric_image.png new file mode 100644 index 000000000..a0969fcb5 Binary files /dev/null and b/whatsapp_redirect/static/description/assets/modules/biometric_image.png differ diff --git a/whatsapp_redirect/static/description/assets/modules/export_image.png b/whatsapp_redirect/static/description/assets/modules/export_image.png new file mode 100644 index 000000000..492980ad0 Binary files /dev/null and b/whatsapp_redirect/static/description/assets/modules/export_image.png differ diff --git a/whatsapp_redirect/static/description/assets/modules/login_image.png b/whatsapp_redirect/static/description/assets/modules/login_image.png new file mode 100644 index 000000000..4fbe85ac1 Binary files /dev/null and b/whatsapp_redirect/static/description/assets/modules/login_image.png differ diff --git a/whatsapp_redirect/static/description/assets/modules/payroll_image.png b/whatsapp_redirect/static/description/assets/modules/payroll_image.png new file mode 100644 index 000000000..7f2815273 Binary files /dev/null and b/whatsapp_redirect/static/description/assets/modules/payroll_image.png differ diff --git a/whatsapp_redirect/static/description/assets/modules/sale_image.png b/whatsapp_redirect/static/description/assets/modules/sale_image.png new file mode 100644 index 000000000..004c61a9e Binary files /dev/null and b/whatsapp_redirect/static/description/assets/modules/sale_image.png differ diff --git a/whatsapp_redirect/static/description/assets/screenshots/hero.png b/whatsapp_redirect/static/description/assets/screenshots/hero.png new file mode 100644 index 000000000..76f53bd1f Binary files /dev/null and b/whatsapp_redirect/static/description/assets/screenshots/hero.png differ diff --git a/whatsapp_redirect/static/description/assets/screenshots/whatsapp1.png b/whatsapp_redirect/static/description/assets/screenshots/whatsapp1.png new file mode 100644 index 000000000..7c85f4120 Binary files /dev/null and b/whatsapp_redirect/static/description/assets/screenshots/whatsapp1.png differ diff --git a/whatsapp_redirect/static/description/assets/screenshots/whatsapp2.png b/whatsapp_redirect/static/description/assets/screenshots/whatsapp2.png new file mode 100644 index 000000000..94e887348 Binary files /dev/null and b/whatsapp_redirect/static/description/assets/screenshots/whatsapp2.png differ diff --git a/whatsapp_redirect/static/description/assets/screenshots/whatsapp3.png b/whatsapp_redirect/static/description/assets/screenshots/whatsapp3.png new file mode 100644 index 000000000..8aa45ff77 Binary files /dev/null and b/whatsapp_redirect/static/description/assets/screenshots/whatsapp3.png differ diff --git a/whatsapp_redirect/static/description/assets/screenshots/whatsapp4.png b/whatsapp_redirect/static/description/assets/screenshots/whatsapp4.png new file mode 100644 index 000000000..0c3f646a8 Binary files /dev/null and b/whatsapp_redirect/static/description/assets/screenshots/whatsapp4.png differ diff --git a/whatsapp_redirect/static/description/assets/screenshots/whatsapp5.png b/whatsapp_redirect/static/description/assets/screenshots/whatsapp5.png new file mode 100644 index 000000000..642a6d2a1 Binary files /dev/null and b/whatsapp_redirect/static/description/assets/screenshots/whatsapp5.png differ diff --git a/whatsapp_redirect/static/description/banner.png b/whatsapp_redirect/static/description/banner.png new file mode 100644 index 000000000..f5174ab22 Binary files /dev/null and b/whatsapp_redirect/static/description/banner.png differ diff --git a/whatsapp_redirect/static/description/icon.png b/whatsapp_redirect/static/description/icon.png new file mode 100644 index 000000000..214c9aa69 Binary files /dev/null and b/whatsapp_redirect/static/description/icon.png differ diff --git a/whatsapp_redirect/static/description/index.html b/whatsapp_redirect/static/description/index.html new file mode 100644 index 000000000..e9bd12a42 --- /dev/null +++ b/whatsapp_redirect/static/description/index.html @@ -0,0 +1,634 @@ +
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+ +
+
+
+
+ +
+
+
+

+ Whatsapp Web Integration

+

+ Send messages via WhatsApp +

+ +
+
+ + + + +
+
+

+ Overview +

+
+ +
+

+ Now chat with your customers WhatsApp. The WhatsApp Web Integration module allows you to chat with + customers through WhatsApp, one of the popular messaging app.

+ +
+
+ +
+
+

+ Configuration +

+
+ +
+

+ No additional configuration required

+ +
+
+ + +
+
+

+ Features +

+
+ +
+
+ +
+
+

+ Community & Enterprise Support

+

+ Available in Odoo 14.0 Community and Enterprise.

+
+
+
+
+ +
+
+

+ Send messages to partners

+

+ Send messages to partners via WhatsApp.

+
+
+ +
+
+ +
+
+

+ User friendly

+

+ User friendly and easy to use.

+
+
+ +
+ +
+
+

+ Screenshots +

+
+
+

+ Enter the WhatsApp number

+ +
+ +
+

+ Select 'WhatsApp message' from partner form

+ +
+ +
+

+ Enter the text that you have to send

+ +
+ + +
+

+ Choose Send option

+ +
+ + +
+

+ The message is delivered to whatsapp web.

+ +
+ + +
+ + + +
+
+

Suggested Products

+
+ + +
+
+ + + +
+
+
+

Our Services

+
+
+ +
+
+ +
+
+ Odoo + Customization
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ Odoo + Support
+
+ + +
+
+ +
+
+ Hire + Odoo + Developer
+
+ +
+
+ +
+
+ Odoo + Integration
+
+ +
+
+ +
+
+ Odoo + Migration
+
+ + +
+
+ +
+
+ Odoo + Consultancy
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ Odoo + Licensing Consultancy
+
+
+
+ + + +
+
+
+

Our Industries

+
+
+ +
+
+ +
+ Trading +
+

+ Easily procure + and + sell your products

+
+
+ +
+
+ +
+ POS +
+

+ Easy + configuration + and convivial experience

+
+
+ +
+
+ +
+ Education +
+

+ A platform for + educational management

+
+
+ +
+
+ +
+ Manufacturing +
+

+ Plan, track and + schedule your operations

+
+
+ +
+
+ +
+ E-commerce & Website +
+

+ Mobile + friendly, + awe-inspiring product pages

+
+
+ +
+
+ +
+ Service Management +
+

+ Keep track of + services and invoice

+
+
+ +
+
+ +
+ Restaurant +
+

+ Run your bar or + restaurant methodically

+
+
+ +
+
+ +
+ Hotel Management +
+

+ An + all-inclusive + hotel management application

+
+
+ +
+
+ + + + + +
+
+
+

Need Help?

+
+
+
+ + +
+ +
+ + +
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+
+ + +
\ No newline at end of file diff --git a/whatsapp_redirect/views/view.xml b/whatsapp_redirect/views/view.xml new file mode 100644 index 000000000..cef1590ca --- /dev/null +++ b/whatsapp_redirect/views/view.xml @@ -0,0 +1,17 @@ + + + + + res.partner.form + res.partner + + + +
+
+
+
+
+
+
\ No newline at end of file diff --git a/whatsapp_redirect/wizard/__init__.py b/whatsapp_redirect/wizard/__init__.py new file mode 100644 index 000000000..287fc97f0 --- /dev/null +++ b/whatsapp_redirect/wizard/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import wizard diff --git a/whatsapp_redirect/wizard/wizard.py b/whatsapp_redirect/wizard/wizard.py new file mode 100644 index 000000000..69ba51342 --- /dev/null +++ b/whatsapp_redirect/wizard/wizard.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# + +from odoo import models, api, fields + + +class WhatsappSendMessage(models.TransientModel): + + _name = 'whatsapp.message.wizard' + _description = "Whatsapp Wizard" + + user_id = fields.Many2one('res.partner', string="Recipient") + mobile = fields.Char(related='user_id.mobile', required=True) + message = fields.Text(string="message", required=True) + + def send_message(self): + if self.message and self.mobile: + message_string = '' + message = self.message.split(' ') + for msg in message: + message_string = message_string + msg + '%20' + message_string = message_string[:(len(message_string) - 3)] + return { + 'type': 'ir.actions.act_url', + 'url': "https://api.whatsapp.com/send?phone="+self.user_id.mobile+"&text=" + message_string, + 'target': 'new', + 'res_id': self.id, + } diff --git a/whatsapp_redirect/wizard/wizard.xml b/whatsapp_redirect/wizard/wizard.xml new file mode 100644 index 000000000..30395a65b --- /dev/null +++ b/whatsapp_redirect/wizard/wizard.xml @@ -0,0 +1,25 @@ + + + + + whatsapp.message.wizard.form + whatsapp.message.wizard + + +
+ + + + + + + + +
+
+
+
+
\ No newline at end of file