@ -0,0 +1,50 @@ |
|||
.. image:: https://img.shields.io/badge/license-LGPL--3-green.svg |
|||
:target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html |
|||
:alt: License: LGPL-3 |
|||
|
|||
Legal Case Management Dashboard |
|||
=============================== |
|||
This module helps to View Overview of the Legal Case Management firm. |
|||
|
|||
Configuration |
|||
------------- |
|||
- www.odoo.com/documentation/17.0/setup/install.html |
|||
- Install our custom addon with legal_case_management module. |
|||
|
|||
Company |
|||
------- |
|||
* `Cybrosys Techno Solutions <https://cybrosys.com/>`__ |
|||
|
|||
License |
|||
------- |
|||
General Public License, Version 3 (LGPL v3). |
|||
(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) |
|||
|
|||
Credits |
|||
------- |
|||
Developer: (V16) Mohammed Dilshad Tk, |
|||
(V17) Gayathri V, |
|||
(V18) Gayathri V |
|||
Contact: odoo@cybrosys.com |
|||
|
|||
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 <https://cybrosys.com/>`__ |
|||
|
|||
Further information |
|||
=================== |
|||
HTML Description: `<static/description/index.html>`__ |
@ -0,0 +1,22 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################### |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2025-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Gayathri V (odoo@cybrosys.com) |
|||
# |
|||
# 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 <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################### |
|||
from . import controllers |
@ -0,0 +1,53 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################### |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2025-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Gayathri V (odoo@cybrosys.com) |
|||
# |
|||
# 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 <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################### |
|||
{ |
|||
'name': "Legal Case Management Dashboard", |
|||
'version': '18.0.1.0.0', |
|||
'category': 'Services', |
|||
'summary': """Legal Case Management Dashboard to get an overview of |
|||
legal case management module.""", |
|||
'description': """This module helps you to view an detailed overview of all |
|||
working of the Legal Case Management management module with graphs and |
|||
dashboard clickable cards in odoo 17.""", |
|||
'author': 'Cybrosys Techno Solutions', |
|||
'company': 'Cybrosys Techno Solutions', |
|||
'maintainer': 'Cybrosys Techno Solutions', |
|||
'website': 'https://www.cybrosys.com', |
|||
'depends': ['legal_case_management'], |
|||
'data': [ |
|||
'views/legal_case_management_dashboard_menus.xml', |
|||
], |
|||
'assets': { |
|||
'web.assets_backend': [ |
|||
'legal_case_management_dashboard/static/src/js/dashboard.js', |
|||
'legal_case_management_dashboard/static/src/xml/dashboard_template.xml', |
|||
'legal_case_management_dashboard/static/src/css/style.css', |
|||
"https://www.gstatic.com/charts/loader.js", |
|||
"https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.4/Chart.js", |
|||
], |
|||
}, |
|||
'images': ['static/description/banner.png'], |
|||
'license': 'LGPL-3', |
|||
'installable': True, |
|||
'auto_install': False, |
|||
'application': False, |
|||
} |
@ -0,0 +1,22 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################### |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2025-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Gayathri V (odoo@cybrosys.com) |
|||
# |
|||
# 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 <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################### |
|||
from . import legal_case_management_dashboard |
@ -0,0 +1,296 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################### |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2025-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Gayathri V (odoo@cybrosys.com) |
|||
# |
|||
# 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 <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################### |
|||
from datetime import date, timedelta |
|||
from odoo import fields, http |
|||
from odoo.http import request |
|||
|
|||
|
|||
class CaseDashboard(http.Controller): |
|||
"""Values for chart and dashboard when filter not applied""" |
|||
|
|||
@http.route('/case/dashboard', type='json', auth='user') |
|||
def _get_case_dashboard_values(self, **kwargs): |
|||
"""Values for charts, graph and dashboard cards without filtering""" |
|||
moves, inv, client, inv_list, lawyers = [], [], [], [], [] |
|||
data_list = [['Month', 'Income']] |
|||
stage_count = [['Stage', 'Cases']] |
|||
case_category = [['Category', 'Number']] |
|||
lawyer_object = None |
|||
draft_count, in_progress_count, invoiced_count, reject_count = 0, 0, 0, 0 |
|||
won_count, lost_count, cancel_count, inv_amt = 0, 0, 0, 0 |
|||
today_date = fields.Date.today() |
|||
cases = request.env['case.registration'].search([ |
|||
('company_id', 'in', [int(kwargs.get('current_company_id')), False]) |
|||
]) |
|||
# getting last 1 year month range for bar chart |
|||
for num in range(0, 13): |
|||
month_sub = timedelta(days=num * 30) |
|||
current_first_date = today_date.replace(day=5) |
|||
range_date = current_first_date - month_sub |
|||
first_day = range_date.replace(day=1) |
|||
last_day = range_date.replace(day=1) + timedelta(days=32) |
|||
last_day = last_day.replace(day=1) - timedelta(days=1) |
|||
month_name = range_date.strftime("%b") |
|||
monthly_invoice = 0 |
|||
for invoices in request.env['account.move'].search([ |
|||
('company_id', 'in', [int(kwargs.get('current_company_id')), False]) |
|||
]): |
|||
if invoices.case_ref: |
|||
inv_date = invoices.invoice_date |
|||
if first_day < inv_date < last_day: |
|||
monthly_invoice += invoices.amount_total |
|||
data_list.append([month_name, monthly_invoice]) |
|||
# Calculate count of case in different category's |
|||
for category_id in request.env['case.category'].search([]): |
|||
case_count = request.env['case.registration'].search_count([ |
|||
('company_id', 'in', [int(kwargs.get('current_company_id')), False]), |
|||
('case_category_id', '=', category_id.id)]) |
|||
case_category.append([category_id.name, case_count]) |
|||
for case in cases: |
|||
for invoices in request.env['account.move'].search([]): |
|||
if case.name == invoices.case_ref: |
|||
# add case name, amount invoiced into list then it look |
|||
# like [Case0001, 5500.5] |
|||
inv_list.append([case.name, invoices.amount_total]) |
|||
if case.state == 'draft': |
|||
draft_count += 1 |
|||
if case.state == 'in_progress': |
|||
in_progress_count += 1 |
|||
if case.state == 'invoiced': |
|||
invoiced_count += 1 |
|||
if case.state == 'reject': |
|||
reject_count += 1 |
|||
if case.state == 'won': |
|||
won_count += 1 |
|||
if case.state == 'lost': |
|||
lost_count += 1 |
|||
if case.state == 'cancel': |
|||
cancel_count += 1 |
|||
client.append(case.client_id.id) |
|||
for total_invoices in request.env['account.move'].search( |
|||
[('case_ref', '=', case.name)]): |
|||
if total_invoices: |
|||
inv.append(total_invoices) |
|||
moves.append(total_invoices.id) |
|||
inv_amt += total_invoices.amount_total |
|||
case_dict = {} |
|||
for case, amount in inv_list: |
|||
if case in case_dict: |
|||
case_dict[case] += amount # add amount to existing case |
|||
else: |
|||
case_dict[case] = amount # add new case to dictionary |
|||
# Add all invoice amount to each case names and in to list |
|||
total_inv_lis = [[case, amount] for case, amount in case_dict.items()] |
|||
sorted_cases = sorted(total_inv_lis, key=lambda case: case[1], |
|||
reverse=True) |
|||
top_10_cases = sorted_cases[:10] |
|||
# appending count of each stages into stage_count |
|||
stage_count.append(['Draft', draft_count]) |
|||
stage_count.append(['In Progress', in_progress_count]) |
|||
stage_count.append(['Invoiced', invoiced_count]) |
|||
stage_count.append(['Reject', reject_count]) |
|||
stage_count.append(['Won', won_count]) |
|||
stage_count.append(['Lost', lost_count]) |
|||
stage_count.append(['Cancel', cancel_count]) |
|||
evidence = request.env['legal.evidence'].search([]) |
|||
trial = request.env['legal.trial'].search([]) |
|||
lawyers = request.env['hr.employee'].search([]).filtered( |
|||
lambda employee: employee.is_lawyer is True) |
|||
# extract integer from lawyers list which contains false |
|||
lawyer_list = list(filter(lambda x: x is not False, lawyers)) |
|||
top_10_cases.insert(0, ['Case', 'Revenue']) |
|||
user_id = request.env.uid |
|||
login_user = request.env['res.users'].search( |
|||
[('employee_id.user_id', '=', user_id) |
|||
]) |
|||
if login_user.has_group('legal_case_management.lawyer_access'): |
|||
if not login_user.has_group('legal_case_management.admin_access'): |
|||
lawyer_object = login_user.employee_id |
|||
else: |
|||
lawyer_object = None |
|||
return {'total_case': len(cases), |
|||
'invoices': inv, |
|||
'total_invoiced': round(inv_amt, 4), |
|||
'lawyers': len(lawyer_list), |
|||
'lawyer_ids': lawyer_list, |
|||
'evidences': len(evidence), |
|||
'trials': len(trial), |
|||
'clients': len(list(set(client))), |
|||
'clients_in_case': client, |
|||
'case_category': case_category, |
|||
'data_list': data_list, |
|||
'stage_count': stage_count, |
|||
'invoice_list': total_inv_lis, |
|||
'top_10_cases': top_10_cases, |
|||
'user_id': user_id, |
|||
'lawyer_object': lawyer_object, |
|||
} |
|||
|
|||
|
|||
class AddLawyerSelectionFieldController(http.Controller): |
|||
"""Add lawyers as selection values in Dashboard""" |
|||
|
|||
@http.route('/selection/field/lawyer', type='json', auth='user', |
|||
csrf=False) |
|||
def add_lawyer_selection_field(self): |
|||
"""Adding lawyers to selection of filter""" |
|||
return [{'name': lawyer.name, |
|||
'id': lawyer.id |
|||
} for lawyer in request.env['hr.employee'].search( |
|||
[('is_lawyer', '=', True)])] |
|||
|
|||
def date_filter(self): |
|||
""" Month filter for dashboard """ |
|||
today_date = fields.Date.today() |
|||
first_day_of_month = date(today_date.year, today_date.month, 1) |
|||
# subtract one day from the first day of the current month to get |
|||
# the last day of the previous month |
|||
last_day_of_last_month = first_day_of_month - timedelta(days=1) |
|||
six_months_ago = today_date - timedelta(days=30 * 6) |
|||
first_day_of_six_months_ago = date(six_months_ago.year, |
|||
six_months_ago.month, 1) |
|||
twelve_months_ago = today_date - timedelta(days=30 * 12) |
|||
first_day_of_twelve_months_ago = date(twelve_months_ago.year, |
|||
twelve_months_ago.month, 1) |
|||
return { |
|||
'first_day_of_last_month': date(last_day_of_last_month.year, |
|||
last_day_of_last_month.month, 1), |
|||
'last_day_of_last_month': last_day_of_last_month, |
|||
'first_day_of_six_months_ago': first_day_of_six_months_ago, |
|||
'first_day_of_twelve_months_ago': first_day_of_twelve_months_ago, |
|||
} |
|||
|
|||
@http.route('/dashboard/without/filter', type='json', auth='user') |
|||
def fetch_dashboard_without_filter_value(self, **kw): |
|||
"""Fetching dashboard values without filter""" |
|||
case_count = request.env['case.registration'].search_count([ |
|||
('company_id', 'in', [int(kw.get('current_company_id')), False]) |
|||
]) |
|||
registration_ids = request.env['case.registration'].search( |
|||
[('state', 'in', ['in_progress','won','invoiced']), |
|||
('company_id', 'in', [int(kw.get('current_company_id')), False])] |
|||
) |
|||
inv_amt = 0 |
|||
for registration_id in registration_ids: |
|||
inv_amt += sum(request.env['account.move'].search( |
|||
[('case_ref', '=', registration_id.name)]).mapped( |
|||
'amount_total')) |
|||
lawyers = request.env['hr.employee'].search_count( |
|||
[('is_lawyer', '=', True),('company_id', 'in', [int(kw.get('current_company_id')), False])]) |
|||
evidences = request.env['legal.evidence'].search_count([]) |
|||
trials = request.env['legal.trial'].search_count([ |
|||
('case_id.company_id', 'in', [int(kw.get('current_company_id')), False]) |
|||
]) |
|||
clients = request.env['res.partner'].search_count([ |
|||
('company_id', 'in', [int(kw.get('current_company_id')), False]) |
|||
]) |
|||
return {'total_case': case_count, |
|||
'total_invoiced': inv_amt, |
|||
'lawyers': lawyers, |
|||
'evidences': evidences, |
|||
'trials': trials, |
|||
'clients': clients |
|||
} |
|||
|
|||
@http.route('/dashboard/filter', type='json', auth='user') |
|||
def fetch_dashboard_filter_value(self, **kw): |
|||
"""Lawyer wise and stage wise filter""" |
|||
trial_list, clients, case_list, evidence_list, lawyer_ids, inv_amt = [], \ |
|||
[], [], [], [], 0 |
|||
data = kw['data'] |
|||
if data['stage'] == 'null': |
|||
stage_list = ['draft', 'in_progress', 'invoiced', 'won', 'lost', |
|||
'cancel'] |
|||
else: |
|||
stage_list = [data['stage']] |
|||
if data['lawyer'] == 'admin': |
|||
lawyer_list = [lawyer.id for lawyer in |
|||
request.env['hr.employee'].search( |
|||
[('is_lawyer', '=', True)])] |
|||
else: |
|||
lawyer = [int(data['lawyer'])] |
|||
lawyer_list = [lawyer.id for lawyer in |
|||
request.env['hr.employee'].search( |
|||
[('id', 'in', lawyer)])] |
|||
if data['month_wise'] != 'null': |
|||
month_wise_list = [data['month_wise']] |
|||
filter_start_date = None |
|||
filter_end_date = self.date_filter() |
|||
filter_end_date = filter_end_date['last_day_of_last_month'] |
|||
if month_wise_list[0] == 'last_month': |
|||
filter_start_date = self.date_filter() |
|||
filter_start_date = filter_start_date['first_day_of_last_month'] |
|||
elif month_wise_list[0] == 'last_6_months': |
|||
filter_start_date = self.date_filter() |
|||
filter_start_date = filter_start_date[ |
|||
'first_day_of_six_months_ago'] |
|||
elif month_wise_list[0] == 'last_12_months': |
|||
filter_start_date = self.date_filter() |
|||
filter_start_date = filter_start_date[ |
|||
'first_day_of_twelve_months_ago'] |
|||
if data['lawyer'] == 'admin': |
|||
registration_ids = request.env['case.registration'].search( |
|||
[('start_date', '>=', filter_start_date), |
|||
('start_date', '<=', filter_end_date), |
|||
('state', 'in', stage_list)]) |
|||
else: |
|||
lawyer_list = data['lawyer'] |
|||
registration_ids = request.env['case.registration'].search( |
|||
[('start_date', '>=', filter_start_date), |
|||
('start_date', '<=', filter_end_date), |
|||
('state', 'in', stage_list), |
|||
('lawyer_id.id', 'in', [lawyer_list])]) |
|||
lawyer_list = [lawyer.id for lawyer in |
|||
request.env['hr.employee'].search( |
|||
[('id', '=', lawyer_list)])] |
|||
else: |
|||
if data['lawyer'] == 'admin': |
|||
registration_ids = request.env['case.registration'].search( |
|||
[('state', 'in', stage_list)]) |
|||
lawyer_list = [lawyer.id for lawyer in |
|||
request.env['hr.employee'].search( |
|||
[('is_lawyer', '=', True)])] |
|||
else: |
|||
registration_ids = request.env['case.registration'].search( |
|||
[('state', 'in', stage_list), |
|||
('lawyer_id.id', 'in', lawyer_list)]) |
|||
for registration_id in registration_ids: |
|||
lawyer_ids.append(registration_id.lawyer_id.id) |
|||
case_list.append(registration_id.id) |
|||
clients.append(request.env['res.partner'].browse( |
|||
registration_id.client_id.id).id) |
|||
inv_amt += sum(request.env['account.move'].search( |
|||
[('case_ref', '=', registration_id.name)]).mapped( |
|||
'amount_total')) |
|||
trial_list = [trial.id for trial in request.env['legal.trial'].search( |
|||
[('case_id.id', 'in', case_list), |
|||
('case_id.lawyer_id.id', 'in', lawyer_list)])] |
|||
evidence_list = [evidence.id for evidence in |
|||
request.env['legal.evidence'].search( |
|||
[('case_id.id', 'in', case_list)])] |
|||
return {'total_case': case_list, |
|||
'total_invoiced': round(inv_amt, 4), |
|||
'lawyers': lawyer_ids, |
|||
'evidences': evidence_list, |
|||
'trials': trial_list, |
|||
'clients': clients |
|||
} |
@ -0,0 +1,7 @@ |
|||
## Module <legal_case_management_dashboard> |
|||
|
|||
#### 12.05.2025 |
|||
#### Version 18.0.1.0.0 |
|||
#### ADD |
|||
|
|||
- Initial commit for Legal Case Management Dashboard |
After Width: | Height: | Size: 628 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 210 KiB |
After Width: | Height: | Size: 209 KiB |
After Width: | Height: | Size: 109 KiB |
After Width: | Height: | Size: 495 B |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 624 B |
After Width: | Height: | Size: 136 KiB |
After Width: | Height: | Size: 214 KiB |
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 310 B |
After Width: | Height: | Size: 929 B |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 17 KiB |
After Width: | Height: | Size: 542 B |
After Width: | Height: | Size: 576 B |
After Width: | Height: | Size: 733 B |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 171 KiB |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 911 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 600 B |
After Width: | Height: | Size: 673 B |
After Width: | Height: | Size: 2.0 KiB |
After Width: | Height: | Size: 462 B |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 926 B |
After Width: | Height: | Size: 9.0 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 7.0 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 878 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 653 B |
After Width: | Height: | Size: 800 B |
After Width: | Height: | Size: 905 B |
After Width: | Height: | Size: 189 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 839 B |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 5.9 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 427 B |
After Width: | Height: | Size: 627 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 988 B |
After Width: | Height: | Size: 3.7 KiB |
After Width: | Height: | Size: 5.0 KiB |
After Width: | Height: | Size: 875 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 80 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 3.2 KiB |
After Width: | Height: | Size: 589 B |
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 565 B |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 967 B |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 43 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 38 KiB |
After Width: | Height: | Size: 5.0 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 126 KiB |
After Width: | Height: | Size: 86 KiB |