fusionar ramas
This commit is contained in:
sinergia 2023-11-06 20:22:37 -05:00
commit 224c2d65e9
30 changed files with 7825 additions and 2662 deletions

View File

@ -1,14 +1,16 @@
# This file is part of Tryton. The COPYRIGHT file at the top level of # This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms. # this repository contains the full copyright notices and license terms.
from trytond.pool import Pool from trytond.pool import Pool
from . import (agended, balance_sale_party, calibration, configuration, contract, diary, from . import (agended, balance_sale_party, calibration, configuration,
equipment, party, product, maintenance, move, purchase, sale) contract, company, diary, equipment, party, product,
maintenance, move, purchase, sale)
__all__ = ['register'] __all__ = ['register']
def register(): def register():
Pool.register( Pool.register(
company.Emplyee,
equipment.OpticalEquipment, equipment.OpticalEquipment,
equipment.EquipmentMaintenance, equipment.EquipmentMaintenance,
equipment.EquipmentContract, equipment.EquipmentContract,

9
company.py Normal file
View File

@ -0,0 +1,9 @@
from trytond.pool import PoolMeta
from trytond.model import fields
class Emplyee(metaclass=PoolMeta):
'Company'
__name__ = 'company.employee'
invima = fields.Char('Invima')

10
company.xml Normal file
View File

@ -0,0 +1,10 @@
<?xml version="1.0"?>
<!--This file file is part of Tryton. The COPYRIGHT file at the top level
of this repository contains the full copyright notices and license terms. -->
<tryton>
<record model="ir.ui.view" id="employee_view_form">
<field name="model">company.employee</field>
<field name="inherit" ref="company.employee_view_form"/>
<field name="name">employee_form</field>
</record>
</tryton>

View File

@ -1,33 +1,51 @@
from trytond.model import ( from trytond.model import (
ModelSingleton, ModelSQL, ModelView, fields) ModelSingleton, ModelSQL, ModelView, fields)
from trytond.pyson import Id from trytond.pyson import Id, Eval
from trytond.modules.company.model import (
CompanyMultiValueMixin, CompanyValueMixin)
class Configuration(ModelSingleton, ModelSQL, ModelView, CompanyMultiValueMixin): class Configuration(ModelSingleton, ModelSQL, ModelView):
'Equipment Configuration' 'Equipment Configuration'
__name__='optical_equipment.configuration' __name__ = 'optical_equipment.configuration'
equipment_sequence = fields.Many2One('ir.sequence', "Equipment Sequence", technician_responsible = fields.Many2One(
domain=[('sequence_type', '=', Id('optical_equipment', 'sequence_type_equipment'))]) 'company.employee', "Technician Responsible")
maintenance_sequence = fields.Many2One('ir.sequence', "Maintenance Sequence", invima = fields.Char('Invima', states={
domain=[('sequence_type', '=', Id('optical_equipment', 'sequence_type_maintenances'))]) 'required': Eval('technician_responsible', True)
agended_sequence = fields.Many2One('ir.sequence', "Agended Sequence", })
domain=[('sequence_type', '=', Id('optical_equipment', 'sequence_type_agended'))]) equipment_sequence = fields.Many2One(
contract_sequence = fields.Many2One('ir.sequence', "Contract Sequence", 'ir.sequence', "Equipment Sequence", domain=[
domain=[('sequence_type', '=', Id('optical_equipment', 'sequence_type_contract'))]) ('sequence_type', '=',
Id('optical_equipment', 'sequence_type_equipment'))])
maintenance_sequence = fields.Many2One(
'ir.sequence', "Maintenance Sequence",
domain=[('sequence_type', '=',
Id('optical_equipment', 'sequence_type_maintenances'))])
agended_sequence = fields.Many2One(
'ir.sequence', "Agended Sequence",
domain=[('sequence_type', '=',
Id('optical_equipment', 'sequence_type_agended'))])
contract_sequence = fields.Many2One(
'ir.sequence', "Contract Sequence", domain=[
('sequence_type', '=',
Id('optical_equipment', 'sequence_type_contract'))])
temperature_min = fields.Float("Temp Min") temperature_min = fields.Float("Temp Min")
temperature_max = fields.Float("Temp Max") temperature_max = fields.Float("Temp Max")
temperature_uom = fields.Many2One('product.uom', 'Temperature UOM', temperature_uom = fields.Many2One(
domain=[('category', '=', Id('optical_equipment', "uom_cat_temperature"))], 'product.uom', 'Temperature UOM',
depends={'itemperature_min'}) domain=[
('category', '=', Id(
'optical_equipment', "uom_cat_temperature"))],
depends={'itemperature_min'})
moisture_min = fields.Float("Moisture Min") moisture_min = fields.Float("Moisture Min")
moisture_max = fields.Float("Moisture Max") moisture_max = fields.Float("Moisture Max")
moisture_uom = fields.Many2One('product.uom', "Moisture UOM", moisture_uom = fields.Many2One(
domain=[('category', '=', Id('optical_equipment', 'uom_cat_relative_humedity'))], 'product.uom', "Moisture UOM",
depends={'moisture_min'}) domain=[
('category', '=', Id(
'optical_equipment', 'uom_cat_relative_humedity'))],
depends={'moisture_min'})
sale_quote_number = fields.Many2One('ir.sequence', "Sale Quote Number", sale_quote_number = fields.Many2One('ir.sequence', "Sale Quote Number",
domain=[ domain=[
('sequence_type', '=', Id('sale','sequence_type_sale')) ('sequence_type', '=', Id(
'sale', 'sequence_type_sale'))
]) ])

View File

@ -53,6 +53,7 @@ class Contract(Workflow, ModelSQL, ModelView):
states={ states={
'readonly': (Eval('state') != 'draft') | Eval('party', True), 'readonly': (Eval('state') != 'draft') | Eval('party', True),
},help="The party who subscribes.") },help="The party who subscribes.")
equipment = fields.Many2One('optical_equipment.equipment', "Equipment")
contact = fields.Many2One('party.contact_mechanism', "Contact", required=True) contact = fields.Many2One('party.contact_mechanism', "Contact", required=True)
invoice_address = fields.Many2One('party.address', 'Invoice Address', invoice_address = fields.Many2One('party.address', 'Invoice Address',
required=True, domain=[('party', '=', Eval('party'))], required=True, domain=[('party', '=', Eval('party'))],
@ -71,10 +72,16 @@ class Contract(Workflow, ModelSQL, ModelView):
states={ states={
'readonly': Eval('state') != 'draft', 'readonly': Eval('state') != 'draft',
}) })
maintenance_services = fields.Many2Many('optical_equipment_maintenance.service-equipment.contract', maintenance_services = fields.Many2Many('optical_equipment_maintenance.service-equipment.contract',
'contract', 'maintenance_services', "Prorogues", 'contract', 'maintenance_services', "Prorogues",
states={'readonly': Eval('state') != 'draft'}) states={'readonly': Eval('state') != 'draft'})
equipments = fields.One2Many('optical_equipment.equipment', 'contract', "Equipments",
current_equipments = fields.Many2Many('optical_equipment.contract-optical_equipment.equipment',
'contract', 'equipment', "Current Equipments",
states={'readonly': Eval('state') != 'draft'})
history_equipments = fields.One2Many('optical_equipment.equipment', 'contract', "Equipments",
states={'readonly': Eval('state') != 'draft'}) states={'readonly': Eval('state') != 'draft'})
price_contract = Monetary("Price Contract", digits=price_digits, currency='currency', required=True, price_contract = Monetary("Price Contract", digits=price_digits, currency='currency', required=True,
states={'readonly': Eval('state') != 'draft'}) states={'readonly': Eval('state') != 'draft'})
@ -99,11 +106,12 @@ class Contract(Workflow, ModelSQL, ModelView):
('running', 'draft'), ('running', 'draft'),
('running', 'closed'), ('running', 'closed'),
('running', 'cancelled'), ('running', 'cancelled'),
('cancelled', 'draft')
}) })
cls._buttons.update({ cls._buttons.update({
'draft': {'invisible': Eval('state').in_(['draft','closed'])}, 'draft': {'invisible': Eval('state').in_(['draft','closed'])},
'running': {'invisible': Eval('state').in_(['cancelled', 'running'])}, 'running': {'invisible': Eval('state').in_(['cancelled', 'running'])},
'closed': {'invisible': True}, 'closed': {'invisible': Eval('state').in_(['draft','cancelled'])},
'cancelled': {'invisible': Eval('state').in_(['draft', 'cancelled'])} 'cancelled': {'invisible': Eval('state').in_(['draft', 'cancelled'])}
}) })
@ -149,8 +157,7 @@ class Contract(Workflow, ModelSQL, ModelView):
@Workflow.transition('draft') @Workflow.transition('draft')
def draft(cls, contracts): def draft(cls, contracts):
contract = contracts[0] contract = contracts[0]
contract.state = 'closed' for equipment in contract.current_equipments:
for equipment in contract.equipments:
equipment.state = "uncontrated" equipment.state = "uncontrated"
equipment.contract_history += (contract.id,) equipment.contract_history += (contract.id,)
equipment.save() equipment.save()
@ -161,7 +168,7 @@ class Contract(Workflow, ModelSQL, ModelView):
@Workflow.transition('closed') @Workflow.transition('closed')
def closed(cls, contracts): def closed(cls, contracts):
contract = contracts[0] contract = contracts[0]
for equipment in contract.equipments: for equipment in contract.current_equipments:
equipment.state = "uncontrated" equipment.state = "uncontrated"
equipment.save() equipment.save()
@ -171,7 +178,7 @@ class Contract(Workflow, ModelSQL, ModelView):
@Workflow.transition('running') @Workflow.transition('running')
def running(cls, contracts): def running(cls, contracts):
contract = contracts[0] contract = contracts[0]
for equipment in contract.equipments: for equipment in contract.current_equipments:
equipment.state = "contrated" equipment.state = "contrated"
equipment.contract_history += (contract.id,) equipment.contract_history += (contract.id,)
equipment.save() equipment.save()
@ -185,7 +192,7 @@ class Contract(Workflow, ModelSQL, ModelView):
@Workflow.transition('cancelled') @Workflow.transition('cancelled')
def cancelled(cls, contracts): def cancelled(cls, contracts):
contract = contracts[0] contract = contracts[0]
for equipment in contract.equipments: for equipment in contract.current_equipments:
equipment.state = "uncontrated" equipment.state = "uncontrated"
equipment.save() equipment.save()
@ -331,19 +338,18 @@ class CreateContract(Wizard):
equipments = [] equipments = []
for line in maintenance_service.lines: for line in maintenance_service.lines:
equipments.append(line.equipment.id) equipments.append(line.equipment.id)
if maintenance_service.contract_origin: if maintenance_service.contract_origin:
contract=maintenance_service.contract_origin contract=maintenance_service.contract_origin
contract.history_equipments+=tuple(equipments)
contract.current_equipments=equipments
contract.invoice_address=dates['invoice_address'] contract.invoice_address=dates['invoice_address']
contract.contact=dates['contact'] contract.contact=dates['contact']
contract.start_date=dates['start_date'] contract.start_date=dates['start_date']
contract.end_date=dates['end_date'] contract.end_date=dates['end_date']
contract.maintenance_services+=prorogues contract.maintenance_services+=prorogues
contract.equipments=equipments
contract.state='draft' contract.state='draft'
contract.price_contract=dates['unit_price'] contract.price_contract=dates['unit_price']
#contract.price_contract=maintenance_service.sale_origin.sale.total_amount
contract.save()
else: else:
contract = Contract(party=dates['party'], contract = Contract(party=dates['party'],
invoice_address=dates['invoice_address'], invoice_address=dates['invoice_address'],
@ -351,8 +357,9 @@ class CreateContract(Wizard):
start_date=dates['start_date'], start_date=dates['start_date'],
end_date=dates['end_date'], end_date=dates['end_date'],
maintenance_services=prorogues, maintenance_services=prorogues,
equipments=equipments, current_equipments=equipments,
state='draft', state='draft',
price_contract=dates['unit_price'] price_contract=dates['unit_price']
) )
contract.save()
contract.save()

View File

@ -1,23 +1,27 @@
from trytond.model import ( from trytond.model import (
ModelSQL, ModelView, fields) ModelSQL, ModelView, fields)
class Diary(ModelSQL, ModelView): class Diary(ModelSQL, ModelView):
'Diary' 'Diary'
__name__ = 'optical_equipment_maintenance.diary' __name__ = 'optical_equipment_maintenance.diary'
_rec_name = 'code' _rec_name = 'code'
code = fields.Char("Code", select=True,states={'readonly': True }) code = fields.Char("Code", select=True, states={'readonly': True})
date_expected = fields.DateTime("Expected Date", required=True) date_expected = fields.DateTime("Expected Date", required=True)
date_estimated = fields.DateTime("Estimated Date") date_estimated = fields.DateTime("Estimated Date")
date_end = fields.DateTime("Date End") date_end = fields.DateTime("Date End")
maintenance_service = fields.Many2One('optical_equipment_maintenance.service', 'Maintenance Service', required=True) maintenance_service = fields.Many2One(
'optical_equipment_maintenance.service', 'Maintenance Service',
required=True)
technical = fields.Many2One('company.employee', "Technical", required=True) technical = fields.Many2One('company.employee', "Technical", required=True)
state = fields.Selection([('draft', "Draft"), state = fields.Selection([('draft', "Draft"),
('agended', "Agended"), ('agended', "Agended"),
('in_progress', "In Progress"), ('in_progress', "In Progress"),
('failed', "Failed"), ('failed', "Failed"),
('finished', "Finished") ('finished', "Finished")
], "State", required=True, readonly=True, sort=True) ], "State",
required=True, readonly=True, sort=True)
@classmethod @classmethod
def default_state(self): def default_state(self):

View File

@ -6,7 +6,7 @@ from trytond.pool import Pool
from trytond.model import ( from trytond.model import (
DeactivableMixin, Workflow, ModelSQL, ModelView, Unique, fields) DeactivableMixin, Workflow, ModelSQL, ModelView, Unique, fields)
from trytond.pyson import Eval, If from trytond.pyson import Eval, If
from trytond.transaction import Transaction from trytond.transaction import Transaction
from trytond.i18n import gettext from trytond.i18n import gettext
from trytond.exceptions import UserError from trytond.exceptions import UserError
from trytond.model.exceptions import AccessError from trytond.model.exceptions import AccessError
@ -26,36 +26,41 @@ class OpticalEquipment(DeactivableMixin, Workflow, ModelSQL, ModelView):
_rec_name = 'rec_name' _rec_name = 'rec_name'
_order_name = 'code' _order_name = 'code'
_states={ _states = {
'readonly': Eval('state') != 'draft', 'readonly': Eval('state') != 'draft',
} }
_depends = ['state'] _depends = ['state']
_states_serial={ _states_serial = {
'readonly': Eval('state') != 'draft', 'readonly': Eval('state') != 'draft',
} }
code = fields.Char( code = fields.Char(
"Code", select=True,states={'readonly': True }) "Code", select=True, states={'readonly': True})
state = fields.Selection([('draft', "Draft"), state = fields.Selection([('draft', "Draft"),
('registred', "Registred"), ('registred', "Registred"),
('uncontrated', "UnContrated"), ('uncontrated', "UnContrated"),
('contrated', "Contrated") ('contrated', "Contrated")
], "State", ], "State",
required=True, readonly=True, sort=False) required=True, readonly=True, sort=False)
contract = fields.Many2One('optical_equipment.contract', "Contract", ondelete='CASCADE')
company = fields.Many2One('company.company', "Company", readonly=True) company = fields.Many2One('company.company', "Company", readonly=True)
contract = fields.Many2One('optical_equipment.contract', "Contract", ondelete='CASCADE')
location = fields.Many2One('stock.location', "Location", location = fields.Many2One('stock.location', "Location",
states=_states,) states=_states,)
propietary = fields.Many2One('party.party',"Propietary", required=True, propietary = fields.Many2One('party.party', "Propietary", required=True,
states=_states,) states=_states,)
propietary_address = fields.Many2One('party.address', "Propietary Address", required=True, propietary_address = fields.Many2One('party.address', "Propietary Address", required=True,
domain=[('party', '=', Eval('propietary'))], domain=[('party', '=', Eval('propietary'))],
states=_states states=_states
) )
propietarys = fields.Many2Many('optical_equipment.equipment-party.party', 'equipment', 'party', "Propietarys") propietarys = fields.Many2Many(
'optical_equipment.equipment-party.party',
'equipment',
'party',
"Propietarys")
product = fields.Many2One('product.product', "Product", product = fields.Many2One('product.product', "Product",
domain=[('equipment', '=', True)], domain=[('equipment', '=', True)],
states=_states, states=_states,
@ -64,8 +69,8 @@ class OpticalEquipment(DeactivableMixin, Workflow, ModelSQL, ModelView):
refurbish = fields.Boolean("Refurbish", refurbish = fields.Boolean("Refurbish",
states=_states,) states=_states,)
equipment_type = fields.Char('type', states={'readonly': If('product', True)}) equipment_type = fields.Char('type', states={'readonly': If('product', True)})
risk = fields.Char('Type risk',states={'readonly': If('product', True)}) risk = fields.Char('Type risk', states={'readonly': If('product', True)})
use = fields.Char('Use', states={'readonly': If('product', True)}) use = fields.Char('Use', states={'readonly': If('product', True)})
biomedical_class = fields.Char('Biomedical Class', states={'readonly': If('product', True)}) biomedical_class = fields.Char('Biomedical Class', states={'readonly': If('product', True)})
main_tecnology = fields.Char('Main tecnology', states={'readonly': If('product', True)}) main_tecnology = fields.Char('Main tecnology', states={'readonly': If('product', True)})
calibration = fields.Boolean("Apply calibration", states={'readonly': If('product', True)}) calibration = fields.Boolean("Apply calibration", states={'readonly': If('product', True)})
@ -74,18 +79,18 @@ class OpticalEquipment(DeactivableMixin, Workflow, ModelSQL, ModelView):
('accounting', '=', False)], ('accounting', '=', False)],
states=_states states=_states
) )
model_category = fields.Many2One('product.category', "Model", required=True, model_category = fields.Many2One('product.category', "Model", required=True,
domain=[('parent', '=', Eval('mark_category')), domain=[('parent', '=', Eval('mark_category')),
('accounting', '=', False)], ('accounting', '=', False)],
states=_states,) states=_states,)
reference_category = fields.Many2One('product.category', "Reference", reference_category = fields.Many2One('product.category', "Reference",
domain=[('parent', '=', Eval('model_category'))], domain=[('parent', '=', Eval('model_category'))],
states=_states, states=_states,
depends=['model_category'] depends=['model_category']
) )
origin_country = fields.Many2One('country.country',"Origin Country", origin_country = fields.Many2One('country.country', "Origin Country",
states=_states,) states=_states,)
software_version = fields.Char("Software version", size=None, software_version = fields.Char("Software version", size=None,
states=_states,) states=_states,)
useful_life = fields.Integer("Useful life", useful_life = fields.Integer("Useful life",
@ -97,33 +102,59 @@ class OpticalEquipment(DeactivableMixin, Workflow, ModelSQL, ModelView):
depends=_depends) depends=_depends)
health_register = fields.Char("Health Register", size=None, health_register = fields.Char("Health Register", size=None,
states=_states,) states=_states,)
contract_history = fields.Many2Many('optical_equipment.contract-optical_equipment.equipment', 'equipment','contract', "Contracts", states={'readonly': True}) # contract_history =
# fields.Many2Many('optical_equipment.contract-optical_equipment.equipment',
# 'equipment','contract', "Contracts", states={'readonly': True})
contract_history = fields.Function(
fields.One2Many(
'optical_equipment.contract',
'equipment',
"Contracts"),
'get_contracts_of_equipment')
maintenance_history = fields.Function( maintenance_history = fields.Function(
fields.Many2Many('optical_equipment.maintenance-optical_equipment.equipment', fields.Many2Many('optical_equipment.maintenance-optical_equipment.equipment',
'equipment', 'maintenance',"Maintenances"), 'get_maintenances_of_equipment') 'equipment', 'maintenance', "Maintenances"), 'get_maintenances_of_equipment')
software_version = fields.Char("Software version", size=None, software_version = fields.Char("Software version", size=None,
states=_states,) states=_states,)
maintenance_frequency = fields.Selection(_MAINTENANCE_FREQUENCY, "Maintenance Frequency", maintenance_frequency = fields.Selection(_MAINTENANCE_FREQUENCY, "Maintenance Frequency",
depends=['propietary']) depends=['propietary'])
purchase_origin = fields.Reference("Purchase Origin", selection='get_origin',select=True, purchase_origin = fields.Reference("Purchase Origin", selection='get_origin', select=True,
states={'readonly': True}) states={'readonly': True})
sale_destination = fields.Reference("Sale Destination", selection='get_destination',select=True, sale_destination = fields.Reference("Sale Destination", selection='get_destination', select=True,
states={'readonly': True}) states={'readonly': True})
shipment_destination = fields.Reference("Stock Move", selection='get_shipment', select=True, shipment_destination = fields.Reference("Stock Move", selection='get_shipment', select=True,
states={'readonly': True}) states={'readonly': True})
rec_name = fields.Function(fields.Char("rec_name"), 'get_rec_name') rec_name = fields.Function(fields.Char("rec_name"), 'get_rec_name')
technician_responsible = fields.Function(fields.Char('Technician Responsible'), 'get_technical')
invima = fields.Function(fields.Char('Invima'), 'get_invima')
del _states_serial, _states, _depends del _states_serial, _states, _depends
def get_technical(self, name):
@fields.depends('product', 'serial', 'code') pool = Pool()
ConfigurationEquipment = pool.get('optical_equipment.configuration')
config = ConfigurationEquipment(1)
if config.technician_responsible:
technician_responsible = config.technician_responsible
return technician_responsible.party.name
def get_invima(self, name):
pool = Pool()
ConfigurationEquipment = pool.get('optical_equipment.configuration')
config = ConfigurationEquipment(1)
if config.technician_responsible.invima:
return config.technician_responsible.invima
@ fields.depends('product', 'serial', 'code')
def get_rec_name(self, name): def get_rec_name(self, name):
name = str(self.product.name) + '@' + str(self.serial) + '/' + str(self.code) name = str(self.product.name) + '@' + str(self.serial) + '/' + str(self.code)
return name return name
@staticmethod @ staticmethod
def _get_shipment(): def _get_shipment():
'Return list of Model names for shipment Reference' 'Return list of Model names for shipment Reference'
return [ return [
@ -132,9 +163,9 @@ class OpticalEquipment(DeactivableMixin, Workflow, ModelSQL, ModelView):
'stock.shipment.out.return', 'stock.shipment.out.return',
'stock.shipment.in.return', 'stock.shipment.in.return',
'stock.shipment.internal', 'stock.shipment.internal',
] ]
@classmethod @ classmethod
def get_shipment(cls): def get_shipment(cls):
IrModel = Pool().get('ir.model') IrModel = Pool().get('ir.model')
get_name = IrModel.get_name get_name = IrModel.get_name
@ -142,7 +173,7 @@ class OpticalEquipment(DeactivableMixin, Workflow, ModelSQL, ModelView):
return [(None, '')] + [(m, get_name(m)) for m in models] return [(None, '')] + [(m, get_name(m)) for m in models]
@classmethod @ classmethod
def _get_origin(cls): def _get_origin(cls):
'Return list of Model names for origin Reference' 'Return list of Model names for origin Reference'
pool = Pool() pool = Pool()
@ -150,7 +181,7 @@ class OpticalEquipment(DeactivableMixin, Workflow, ModelSQL, ModelView):
return [Purchase.__name__] return [Purchase.__name__]
@classmethod @ classmethod
def get_origin(cls): def get_origin(cls):
Model = Pool().get('ir.model') Model = Pool().get('ir.model')
get_name = Model.get_name get_name = Model.get_name
@ -158,7 +189,7 @@ class OpticalEquipment(DeactivableMixin, Workflow, ModelSQL, ModelView):
return [(None, '')] + [(m, get_name(m)) for m in models] return [(None, '')] + [(m, get_name(m)) for m in models]
@classmethod @ classmethod
def _get_destination(cls): def _get_destination(cls):
'Return list of Model names for origin Reference' 'Return list of Model names for origin Reference'
pool = Pool() pool = Pool()
@ -166,8 +197,7 @@ class OpticalEquipment(DeactivableMixin, Workflow, ModelSQL, ModelView):
return [Sale.__name__] return [Sale.__name__]
@ classmethod
@classmethod
def get_destination(cls): def get_destination(cls):
Model = Pool().get('ir.model') Model = Pool().get('ir.model')
get_name = Model.get_name get_name = Model.get_name
@ -175,31 +205,30 @@ class OpticalEquipment(DeactivableMixin, Workflow, ModelSQL, ModelView):
return [(None, '')] + [(m, get_name(m)) for m in models] return [(None, '')] + [(m, get_name(m)) for m in models]
@ classmethod
@classmethod
def __setup__(cls): def __setup__(cls):
super(OpticalEquipment, cls).__setup__() super(OpticalEquipment, cls).__setup__()
cls._transitions = ({ cls._transitions = ({
('draft', 'registred'), ('draft', 'registred'),
('registred', 'draft'), ('registred', 'draft'),
('registred', 'uncontrated'), ('registred', 'uncontrated'),
('uncontrated', 'contrated'), ('uncontrated', 'contrated'),
}) })
cls._buttons.update({ cls._buttons.update({
'draft': { 'draft': {
'invisible': Eval('state') != 'registred'}, 'invisible': Eval('state') != 'registred'},
'registred': { 'registred': {
'invisible': Eval('state').in_(['registred', 'uncontrated', 'contrated'])}} 'invisible': Eval('state').in_(['registred', 'uncontrated', 'contrated'])}}
) )
@classmethod @ classmethod
def set_code(cls, equipments): def set_code(cls, equipments):
pool = Pool() pool = Pool()
Config = pool.get('optical_equipment.configuration') Config = pool.get('optical_equipment.configuration')
config = Config(1) config = Config(1)
for equipment in equipments: for equipment in equipments:
if config.equipment_sequence != None: if config.equipment_sequence is not None:
if not equipment.code: if not equipment.code:
try: try:
equipment.code = config.equipment_sequence.get() equipment.code = config.equipment_sequence.get()
@ -209,6 +238,20 @@ class OpticalEquipment(DeactivableMixin, Workflow, ModelSQL, ModelView):
else: else:
raise UserError(gettext('optical_equipment.msg_not_sequence_equipment')) raise UserError(gettext('optical_equipment.msg_not_sequence_equipment'))
def get_contracts_of_equipment(self, records):
pool = Pool()
ContractsEquipment = pool.get('optical_equipment.contract')
contractsEquipment = set()
contractsEquipment = ContractsEquipment.search(
[('party', '=', self.propietary), ('history_equipments', 'in', [self.id])])
contracts = []
for key in contractsEquipment:
contracts.append(key.id)
return contracts
def get_maintenances_of_equipment(self, records): def get_maintenances_of_equipment(self, records):
pool = Pool() pool = Pool()
MaintenancesEquipment = pool.get('optical_equipment.maintenance') MaintenancesEquipment = pool.get('optical_equipment.maintenance')
@ -216,105 +259,105 @@ class OpticalEquipment(DeactivableMixin, Workflow, ModelSQL, ModelView):
maintenancesEquipment = MaintenancesEquipment.search(['equipment', '=', self.id]) maintenancesEquipment = MaintenancesEquipment.search(['equipment', '=', self.id])
maintenances = [] maintenances = []
for key in maintenancesEquipment: for key in maintenancesEquipment:
maintenances.append(key.id) maintenances.append(key.id)
return maintenances return maintenances
@classmethod
def default_state(cls):
return 'draft'
@staticmethod @ classmethod
def default_state(cls):
return 'draft'
@ staticmethod
def default_company(): def default_company():
return Transaction().context.get('company') return Transaction().context.get('company')
@fields.depends('propietary', 'maintenance_frequency') @ fields.depends('propietary', 'maintenance_frequency')
def on_change_propietary(self): def on_change_propietary(self):
if self.propietary: if self.propietary:
if self.propietary.customer_type == 'ips': if self.propietary.customer_type == 'ips':
self.maintenance_frequency = "6" self.maintenance_frequency = "6"
else: else:
self.maintenance_frequency = "12" self.maintenance_frequency = "12"
else: else:
self.maintenance_frequency = "none" self.maintenance_frequency = "none"
@fields.depends('product', 'equipment_type','use', @ fields.depends('product', 'equipment_type', 'use',
'biomedical_class', 'calibration', 'biomedical_class', 'calibration',
'mark_category', 'model_category') 'mark_category', 'model_category')
def on_change_product(self): def on_change_product(self):
if self.product: if self.product:
self.equipment_type=self.product.equipment_type self.equipment_type = self.product.equipment_type
self.use=self.product.use self.use = self.product.use
self.biomedical_class=self.product.biomedical_class self.biomedical_class = self.product.biomedical_class
self.calibration=self.product.calibration self.calibration = self.product.calibration
self.mark_category=self.product.mark_category self.mark_category = self.product.mark_category
self.model_category=self.product.model_category self.model_category = self.product.model_category
self.reference_category=self.product.reference_category self.reference_category = self.product.reference_category
self.useful_life=self.product.useful_life if self.product.useful_life else int(0) self.useful_life = self.product.useful_life if self.product.useful_life else int(0)
self.calibration=True if self.product.calibration else False self.calibration = True if self.product.calibration else False
self.warranty=self.product.warranty if self.product.warranty else int(0) self.warranty = self.product.warranty if self.product.warranty else int(0)
self.risk=self.product.risk self.risk = self.product.risk
self.origin_country=self.product.origin_country self.origin_country = self.product.origin_country
self.use=self.product.use self.use = self.product.use
self.biomedical_class=self.product.biomedical_class self.biomedical_class = self.product.biomedical_class
else: else:
self.equipment_type=None self.equipment_type = None
self.use=None self.use = None
self.biomedical_class=None self.biomedical_class = None
self.calibration=None self.calibration = None
self.mark_category=None self.mark_category = None
self.model_category=None self.model_category = None
self.reference_category=None self.reference_category = None
self.useful_life=None self.useful_life = None
self.calibration=False self.calibration = False
self.warranty=None self.warranty = None
self.risk=None self.risk = None
self.origin_country=None self.origin_country = None
self.use=None self.use = None
self.biomedical_class=None self.biomedical_class = None
self.refurbish=None self.refurbish = None
self.serial=None self.serial = None
self.health_register=None self.health_register = None
self.software_version=None self.software_version = None
@classmethod @ classmethod
def delete(cls, equipments): def delete(cls, equipments):
for equipment in equipments: for equipment in equipments:
if equipment.purchase_origin: if equipment.purchase_origin:
raise AccessError( raise AccessError(
gettext('estos equipos no se pueden borrar')) gettext('estos equipos no se pueden borrar'))
elif equipment.state != 'draft' and equipment.serial != None: elif equipment.state != 'draft' and equipment.serial is not None:
raise AccessError( raise AccessError(
gettext('estos equipos no se pueden borrar')) gettext('estos equipos no se pueden borrar'))
super(OpticalEquipment, cls).delete(equipments) super(OpticalEquipment, cls).delete(equipments)
@classmethod @ classmethod
@ModelView.button @ ModelView.button
@Workflow.transition('draft') @ Workflow.transition('draft')
def draft(cls, equipments): def draft(cls, equipments):
pass pass
@classmethod @ classmethod
@ModelView.button @ ModelView.button
@Workflow.transition('registred') @ Workflow.transition('registred')
def registred(cls, equipments): def registred(cls, equipments):
for i in equipments: for i in equipments:
if i.serial == None: if i.serial is None:
raise UserError(str("El Equipo no cuenta con un Serial")) raise UserError(str("El Equipo no cuenta con un Serial"))
else: else:
cls.set_code(equipments) cls.set_code(equipments)
class EquipmentMaintenance(ModelSQL, ModelView): class EquipmentMaintenance(ModelSQL, ModelView):
'Optical Equipment - Equipment - Maintenance' 'Optical Equipment - Equipment - Maintenance'
__name__ ='optical_equipment.maintenance-optical_equipment.equipment' __name__ = 'optical_equipment.maintenance-optical_equipment.equipment'
equipment = fields.Many2One('optical_equipment.equipment', 'Equipment', select=True) equipment = fields.Many2One('optical_equipment.equipment', 'Equipment', select=True)
maintenance = fields.Many2One('optical_equipment.maintenance', 'Maintenances', select=True) maintenance = fields.Many2One('optical_equipment.maintenance', 'Maintenances', select=True)
class EquipmentContract(ModelSQL, ModelView): class EquipmentContract(ModelSQL, ModelView):
'Optical Equipment - Contracs Equipment' 'Optical Equipment - Contracs Equipment'
__name__ = 'optical_equipment.contract-optical_equipment.equipment' __name__ = 'optical_equipment.contract-optical_equipment.equipment'
@ -322,6 +365,7 @@ class EquipmentContract(ModelSQL, ModelView):
equipment = fields.Many2One('optical_equipment.equipment', 'Equipment', select=True) equipment = fields.Many2One('optical_equipment.equipment', 'Equipment', select=True)
contract = fields.Many2One('optical_equipment.contract', 'Contract', select=True) contract = fields.Many2One('optical_equipment.contract', 'Contract', select=True)
class EquipmentParty(ModelSQL, ModelView): class EquipmentParty(ModelSQL, ModelView):
'Optical Equipment - Party' 'Optical Equipment - Party'
__name__ = 'optical_equipment.equipment-party.party' __name__ = 'optical_equipment.equipment-party.party'
@ -346,7 +390,7 @@ class ChangePropietary(ModelView):
states={'required': True}) states={'required': True})
change_date = fields.Date("Change Date", readonly=True) change_date = fields.Date("Change Date", readonly=True)
@classmethod @ classmethod
def default_change_date(cls): def default_change_date(cls):
pool = Pool() pool = Pool()
Date = pool.get('ir.date') Date = pool.get('ir.date')
@ -358,12 +402,12 @@ class NewPropietary(Wizard):
__name__ = 'optical_equipment.change_propietary' __name__ = 'optical_equipment.change_propietary'
start = StateView('optical_equipment.change_propietary.form', start = StateView('optical_equipment.change_propietary.form',
'optical_equipment.change_propietary_view_form',[ 'optical_equipment.change_propietary_view_form', [
Button('Cancel', 'end', 'tryton-cancel'), Button('Cancel', 'end', 'tryton-cancel'),
Button('Create', 'change_propietary', 'tryton-ok', default=True), Button('Create', 'change_propietary', 'tryton-ok', default=True),
]) ])
change_propietary = StateAction('optical_equipment.act_optical_equipment_form') change_propietary = StateAction('optical_equipment.act_optical_equipment_form')
def do_change_propietary(self, action): def do_change_propietary(self, action):
old_propietary = self.start.old_propietary old_propietary = self.start.old_propietary
equipments = self.start.equipments equipments = self.start.equipments
@ -380,22 +424,24 @@ class NewPropietary(Wizard):
class ChangeEquipment(ModelSQL): class ChangeEquipment(ModelSQL):
'Change Equipment' 'Change Equipment'
__name__ = 'optical_equipment.equipment-change_propietary.form' __name__ = 'optical_equipment.equipment-change_propietary.form'
maintenance_service = fields.Many2One('optical_equipment_maintenance.service', "Maintenance Service") maintenance_service = fields.Many2One(
'optical_equipment_maintenance.service',
"Maintenance Service")
equipment = fields.Many2One('optical_equipment.equipment', 'Equipment') equipment = fields.Many2One('optical_equipment.equipment', 'Equipment')
change = fields.Many2One('optical_equipment.change_propietary.form', 'Change') change = fields.Many2One('optical_equipment.change_propietary.form', 'Change')
class EquipmentReport(CompanyReport): class EquipmentReport(CompanyReport):
__name__ = 'optical_equipment.equipment' __name__ = 'optical_equipment.equipment'
@classmethod @ classmethod
def execute(cls, ids, data): def execute(cls, ids, data):
with Transaction().set_context(address_with_party=True): with Transaction().set_context(address_with_party=True):
return super(EquipmentReport, cls).execute(ids, data) return super(EquipmentReport, cls).execute(ids, data)
@classmethod @ classmethod
def get_context(cls, records, header, data): def get_context(cls, records, header, data):
pool = Pool() pool = Pool()
Date = pool.get('ir.date') Date = pool.get('ir.date')

View File

@ -710,6 +710,50 @@ msgctxt "field:optical_equipment.maintenance,moisture_uom:"
msgid "Moisture UOM" msgid "Moisture UOM"
msgstr "Humedad UOM" msgstr "Humedad UOM"
msgctxt "field:optical_equipment.maintenance.line,line_replace:"
msgid "Replace"
msgstr "Repuesto"
msgctxt "field:optical_equipment.maintenance.line,line_maintenance_activity:"
msgid "Maintenance Activity"
msgstr "Actividad de Mantenimiento"
msgctxt "field:optical_equipment.maintenance.line,maintenance:"
msgid "Maintenance"
msgstr "Mantenimiento"
msgctxt "field:optical_equipment.maintenance.line,replacement:"
msgid "Replacement"
msgstr "Reemplazo"
msgctxt "field:optical_equipment.maintenance.line,maintenance_activity:"
msgid "Maintenance activity"
msgstr "Actividad de Mantenimiento"
msgctxt "field:optical_equipment.maintenance.line,quantity:"
msgid "Quantity"
msgstr "Cantidad"
msgctxt "field:optical_equipment.maintenance.line,actual_quantity:"
msgid "Actual Quantity"
msgstr "Cantidad Actual"
msgctxt "field:optical_equipment.maintenance.line,unit:"
msgid "Unit"
msgstr "Unidad"
msgctxt "field:optical_equipment.maintenance.line,product_uom_category:"
msgid "Product Uom Category"
msgstr "Categoría de unidad de producto"
msgctxt "field:optical_equipment.maintenance.line,description:"
msgid "Description"
msgstr "Detalles"
msgctxt "field:optical_equipment.maintenance.line,company:"
msgid "Company"
msgstr "Empresa"
msgctxt "field:optical_equipment.maintenance,temperature_uom:" msgctxt "field:optical_equipment.maintenance,temperature_uom:"
msgid "Temperature UOM" msgid "Temperature UOM"
msgstr "Temperatura UOM" msgstr "Temperatura UOM"
@ -726,6 +770,10 @@ msgctxt "field:sale.sale,quote_number:"
msgid "Quote Number" msgid "Quote Number"
msgstr "Cotización #" msgstr "Cotización #"
msgctxt "field:sale.sale,payment_term_description:"
msgid "Payment Term"
msgstr "Plazo de Pago"
msgctxt "field:sale.sale,description:sale." msgctxt "field:sale.sale,description:sale."
msgid "Description" msgid "Description"
msgstr "Tiempo de Entrega" msgstr "Tiempo de Entrega"

View File

@ -5,7 +5,7 @@ from trytond.model import (
from trytond.wizard import ( from trytond.wizard import (
Button, StateAction, StateTransition, StateView, Wizard) Button, StateAction, StateTransition, StateView, Wizard)
from trytond.modules.company import CompanyReport from trytond.modules.company import CompanyReport
from trytond.transaction import Transaction from trytond.transaction import Transaction
from trytond.pyson import Bool, Eval, If, Id, Equal from trytond.pyson import Bool, Eval, If, Id, Equal
from trytond.pool import Pool from trytond.pool import Pool
from trytond.modules.currency.fields import Monetary from trytond.modules.currency.fields import Monetary
@ -19,10 +19,10 @@ import matplotlib.pyplot as plt
import numpy as np import numpy as np
import math as mt import math as mt
from io import BytesIO from io import BytesIO
from trytond.exceptions import UserError from trytond.exceptions import UserError
_digits = (16, 2) _digits = (16, 2)
class MaintenanceService(Workflow, ModelSQL, ModelView): class MaintenanceService(Workflow, ModelSQL, ModelView):
@ -31,32 +31,38 @@ class MaintenanceService(Workflow, ModelSQL, ModelView):
_rec_name = 'rec_name' _rec_name = 'rec_name'
_order_name = 'code' _order_name = 'code'
_states = {'readonly': If(Eval('state') != 'draft', True)} _states = {'readonly': If(Eval('state') != 'draft', True)}
code = fields.Char("Code", readonly=True, select=True) code = fields.Char("Code", readonly=True, select=True)
reference = fields.Char("Reference", select=True, reference = fields.Char("Reference", select=True,
help="The identification of an external origin.") help="The identification of an external origin.")
description = fields.Char("Description",states=_states) description = fields.Char("Description", states=_states)
sale_date = fields.Char("Sale Date") sale_date = fields.Char("Sale Date")
contract_origin = fields.Reference("Contract Base", selection='get_origin_contract', select=True, contract_origin = fields.Reference(
states={'readonly': True}) "Contract Base", selection='get_origin_contract', select=True,
sale_origin = fields.Reference("Sale Origin", selection='get_origin', select=True, states={'readonly': If(Eval('state') == 'finished', True)})
states={'readonly': True}) sale_origin = fields.Reference(
"Sale Origin", selection='get_origin', select=True,
states={'readonly': True})
company = fields.Many2One('company.company', "Company", readonly=True) company = fields.Many2One('company.company', "Company", readonly=True)
maintenance_type = fields.Selection([('initial','Initial'), maintenance_type = fields.Selection([('initial', 'Initial'),
('preventive', 'Preventive'), ('preventive', 'Preventive'),
('corrective', 'Corrective') ('corrective', 'Corrective')
], "Maintenance Type", states=_states) ], "Maintenance Type", states=_states)
propietary = fields.Many2One('party.party', "Propietary", required=True, states=_states) propietary = fields.Many2One('party.party', "Propietary", required=True,
propietary_address = fields.Many2One('party.address', "Propietary Address", required=True, states=_states)
domain=[('party', '=', Eval('propietary'))], propietary_address = fields.Many2One(
states=_states) 'party.address', "Propietary Address", required=True,
lines = fields.One2Many('optical_equipment.maintenance', 'service_maintenance', "Lines") domain=[('party', '=', Eval('propietary'))],
states=_states)
lines = fields.One2Many(
'optical_equipment.maintenance', 'service_maintenance', "Lines")
estimated_agended = fields.DateTime("Date Maintenance", readonly=True) estimated_agended = fields.DateTime("Date Maintenance", readonly=True)
current_agended = fields.Many2One('optical_equipment_maintenance.diary', "Current Agended", current_agended = fields.Many2One(
states=_states) 'optical_equipment_maintenance.diary', "Current Agended",
history_agended = fields.Many2Many('optical_equipment_maintenance.service-maintenance.diary', 'maintenance_service', 'agended', "History Agended", readonly=True) states=_states)
history_agended = fields.Many2Many(
'optical_equipment_maintenance.service-maintenance.diary', 'maintenance_service', 'agended', "History Agended", readonly=True)
state_agended = fields.Selection([('no_agenda', "No agenda"), state_agended = fields.Selection([('no_agenda', "No agenda"),
('agended', "Agended"), ('agended', "Agended"),
('in_progress', "In progress"), ('in_progress', "In progress"),
@ -73,33 +79,37 @@ class MaintenanceService(Workflow, ModelSQL, ModelView):
temperature_min = fields.Float("Temp Min", states={ temperature_min = fields.Float("Temp Min", states={
'readonly': If(Eval('state') == 'finished', True), 'readonly': If(Eval('state') == 'finished', True),
'required': If(Eval('state') == 'in_progress', True)}) 'required': If(Eval('state') == 'in_progress', True)})
temperature_max = fields.Float("Temp Max", states={ temperature_max = fields.Float("Temp Max", states={
'readonly': If(Eval('state') == 'finished', True), 'readonly': If(Eval('state') == 'finished', True),
'required': If(Eval('state') == 'in_progress', True)}) 'required': If(Eval('state') == 'in_progress', True)})
temperature_uom = fields.Many2One('product.uom', 'Temperature UOM', temperature_uom = fields.Many2One('product.uom', 'Temperature UOM',
domain=[('category', '=', Id('optical_equipment', "uom_cat_temperature"))], domain=[
states={'invisible': If(Eval('temperature_min') == None, True), ('category', '=', Id(
'readonly' : (Eval('state') == 'finished'), 'optical_equipment', "uom_cat_temperature"))],
'required': If(Eval('state') == 'in_progress', True)},) states={'invisible': If(Eval('temperature_min') is None, True),
moisture_min = fields.Float("Moisture Min", states={ 'readonly': (Eval('state') == 'finished'),
'required': If(Eval('state') == 'in_progress', True)},)
moisture_min = fields.Float("Moisture Min", states={
'readonly': If(Eval('state') == 'finished', True), 'readonly': If(Eval('state') == 'finished', True),
'required': If(Eval('state') == 'in_progress', True)}) 'required': If(Eval('state') == 'in_progress', True)})
moisture_max = fields.Float("Moisture Max", states={ moisture_max = fields.Float("Moisture Max", states={
'readonly': If(Eval('state') == 'finished', True), 'readonly': If(Eval('state') == 'finished', True),
'required': If(Eval('state') == 'in_progress', True)}) 'required': If(Eval('state') == 'in_progress', True)})
moisture_uom = fields.Many2One('product.uom', "Moisture UOM", moisture_uom = fields.Many2One('product.uom', "Moisture UOM",
domain=[('category', '=', Id('optical_equipment', 'uom_cat_relative_humedity'))], domain=[
states={'invisible' : If(Eval('moisture_min') == None, True), ('category', '=', Id(
'readonly': Eval('state') == 'finished', 'optical_equipment', 'uom_cat_relative_humedity'))],
'required': If(Eval('state') == 'in_progress', True)},) states={'invisible': If(Eval('moisture_min') is None, True),
'readonly': Eval('state') == 'finished',
'required': If(Eval('state') == 'in_progress', True)},)
@fields.depends('maintenance_type', 'code') @fields.depends('maintenance_type', 'code')
def get_rec_name(self, name): def get_rec_name(self, name):
if self.maintenance_type and self.code: if self.maintenance_type and self.code:
name = str(self.maintenance_type) + '@' + str(self.code) name = str(self.maintenance_type) + '@' + str(self.code)
else: else:
name = str(self.maintenance_type) + '@' + 'Borrador' name = str(self.maintenance_type) + '@' + 'Borrador'
return name return name
@classmethod @classmethod
@ -123,7 +133,7 @@ class MaintenanceService(Workflow, ModelSQL, ModelView):
@staticmethod @staticmethod
def default_company(): def default_company():
return Transaction().context.get('company') return Transaction().context.get('company')
@staticmethod @staticmethod
def default_temperature_min(): def default_temperature_min():
pool = Pool() pool = Pool()
@ -141,7 +151,7 @@ class MaintenanceService(Workflow, ModelSQL, ModelView):
temperature_max = config.temperature_max temperature_max = config.temperature_max
return temperature_max return temperature_max
@staticmethod @staticmethod
def default_moisture_min(): def default_moisture_min():
pool = Pool() pool = Pool()
@ -159,7 +169,7 @@ class MaintenanceService(Workflow, ModelSQL, ModelView):
temperature_uom = config.temperature_uom.id temperature_uom = config.temperature_uom.id
return temperature_uom return temperature_uom
@staticmethod @staticmethod
def default_moisture_uom(): def default_moisture_uom():
pool = Pool() pool = Pool()
@ -168,7 +178,7 @@ class MaintenanceService(Workflow, ModelSQL, ModelView):
moisture_uom = config.moisture_uom.id moisture_uom = config.moisture_uom.id
return moisture_uom return moisture_uom
@staticmethod @staticmethod
def default_moisture_max(): def default_moisture_max():
pool = Pool() pool = Pool()
@ -177,7 +187,7 @@ class MaintenanceService(Workflow, ModelSQL, ModelView):
moisture_max = config.moisture_max moisture_max = config.moisture_max
return moisture_max return moisture_max
@classmethod @classmethod
def default_maintenance_type(self): def default_maintenance_type(self):
return 'preventive' return 'preventive'
@ -198,7 +208,7 @@ class MaintenanceService(Workflow, ModelSQL, ModelView):
SaleLine = pool.get('sale.line') SaleLine = pool.get('sale.line')
return [Sale.__name__, SaleLine.__name__] return [Sale.__name__, SaleLine.__name__]
@classmethod @classmethod
def get_origin(cls): def get_origin(cls):
Model = Pool().get('ir.model') Model = Pool().get('ir.model')
@ -215,7 +225,6 @@ class MaintenanceService(Workflow, ModelSQL, ModelView):
return [Contract.__name__] return [Contract.__name__]
@classmethod @classmethod
def get_origin_contract(cls): def get_origin_contract(cls):
Model = Pool().get('ir.model') Model = Pool().get('ir.model')
@ -229,16 +238,15 @@ class MaintenanceService(Workflow, ModelSQL, ModelView):
pool = Pool() pool = Pool()
Config = pool.get('optical_equipment.configuration') Config = pool.get('optical_equipment.configuration')
config = Config(2) config = Config(2)
if config.maintenance_sequence != None: if config.maintenance_sequence is not None:
if not maintenance.code: if not maintenance.code:
try: try:
maintenance.code = config.maintenance_sequence.get() maintenance.code = config.maintenance_sequence.get()
maintenance.save() maintenance.save()
except UserError: except UserError:
raise UserError(str('Validation Error')) raise UserError(str('Validation Error'))
else: else:
raise UserError(gettext('optical_equipment.msg_not_sequence_equipment')) raise UserError(gettext('optical_equipment.msg_not_sequence_equipment'))
@classmethod @classmethod
@ModelView.button_action( @ModelView.button_action(
@ -260,7 +268,6 @@ class MaintenanceService(Workflow, ModelSQL, ModelView):
maintenance.current_agended.state = 'in_progress' maintenance.current_agended.state = 'in_progress'
maintenance.current_agended.save() maintenance.current_agended.save()
@classmethod @classmethod
@ModelView.button @ModelView.button
@Workflow.transition('finished') @Workflow.transition('finished')
@ -270,21 +277,20 @@ class MaintenanceService(Workflow, ModelSQL, ModelView):
maintenance.current_agended.save() maintenance.current_agended.save()
class MaintenanceServiceLine(Workflow, ModelSQL, ModelView): class MaintenanceServiceLine(Workflow, ModelSQL, ModelView):
'Equipment Maintenance Line' 'Equipment Maintenance Line'
__name__ = 'optical_equipment.maintenance' __name__ = 'optical_equipment.maintenance'
#_rec_name = 'rec_name' # _rec_name = 'rec_name'
_states={'required': True, _states = {'required': True,
'readonly': Eval('state').in_(['finished'])} 'readonly': Eval('state').in_(['finished'])}
service_maintenance = fields.Many2One('optical_equipment_maintenance.service', "Maintenance Service", service_maintenance = fields.Many2One('optical_equipment_maintenance.service', "Maintenance Service",
ondelete='CASCADE', select=True, ondelete='CASCADE', select=True,
domain=[('state', 'in', ['draft','in_progress', 'finished']), domain=[('state', 'in', ['draft', 'in_progress', 'finished']),
('propietary', '=', Eval('propietary'))], ('propietary', '=', Eval('propietary'))],
states=_states) states=_states)
code = fields.Char( code = fields.Char(
"Code", select=True,states={'readonly': True }) "Code", select=True, states={'readonly': True})
maintenance_type = fields.Selection([('initial', 'Initial'), maintenance_type = fields.Selection([('initial', 'Initial'),
('preventive', 'Preventive'), ('preventive', 'Preventive'),
('corrective', 'Corrective')], "Maintenance Type", states=_states) ('corrective', 'Corrective')], "Maintenance Type", states=_states)
@ -298,68 +304,88 @@ class MaintenanceServiceLine(Workflow, ModelSQL, ModelView):
states=_states, states=_states,
domain=[('party', '=', Eval('propietary'))],) domain=[('party', '=', Eval('propietary'))],)
equipment = fields.Many2One('optical_equipment.equipment', "Equipment", equipment = fields.Many2One('optical_equipment.equipment', "Equipment",
domain=[('state', 'in', ['registred', 'uncontrated']), domain=[('state', 'in', ['registred', 'uncontrated', 'contrated']),
('propietary', '=', Eval('propietary')), ('propietary', '=', Eval('propietary')),
('propietary_address', '=', Eval('propietary_address'))], ('propietary_address', '=', Eval('propietary_address'))],
states=_states,) states=_states,)
equipment_calibrate = fields.Boolean("Calibrate Equipment", states={'readonly': True}) equipment_calibrate = fields.Boolean("Calibrate Equipment", states={'readonly': True})
#when the maintenance is in agended status # when the maintenance is in agended status
diary = fields.One2Many('optical_equipment_maintenance.diary', 'diary') diary = fields.One2Many('optical_equipment_maintenance.diary', 'diary')
#Preventive maintenance # Preventive maintenance
initial_operation = fields.Boolean("Verificación inicial de funcionamiento") initial_operation = fields.Boolean("Verificación inicial de funcionamiento")
check_equipment = fields.Boolean("Revisión del Equipo") check_equipment = fields.Boolean("Revisión del Equipo")
check_electric_system = fields.Boolean("Revisión del sistema electríco") check_electric_system = fields.Boolean("Revisión del sistema electríco")
clean_int_ext = fields.Boolean("Limpieza interior y exterior") clean_int_ext = fields.Boolean("Limpieza interior y exterior")
clean_eyes = fields.Boolean("Limpieza de lentes y espejos") clean_eyes = fields.Boolean("Limpieza de lentes y espejos")
check_calibration = fields.Boolean("Verificar Calibración") check_calibration = fields.Boolean("Verificar Calibración")
maintenance_activity = fields.One2Many('optical_equipment_maintenance.activity', 'maintenance', "Maintenance Activitys") maintenance_activity = fields.One2Many(
#Calibration 'optical_equipment_maintenance.activity',
'maintenance',
"Maintenance Activitys")
# Calibration
patterns_equipments = fields.Char("K Pattern", states={'readonly': True},) patterns_equipments = fields.Char("K Pattern", states={'readonly': True},)
lines_calibration = fields.One2Many('optical_equipment.maintenance.calibration_sample', 'maintenance', "Lines of Calibration", lines_calibration = fields.One2Many('optical_equipment.maintenance.calibration_sample', 'maintenance', "Lines of Calibration",
states={'readonly': Eval('state') == 'finished'}) states={'readonly': Eval('state') == 'finished'})
calibration_total = fields.One2Many('optical_equipment.maintenance.calibration', 'maintenance', "Calibration Total", calibration_total = fields.One2Many('optical_equipment.maintenance.calibration', 'maintenance', "Calibration Total",
states={'readonly': Eval('state') == 'finished'}) states={'readonly': Eval('state') == 'finished'})
maintenance_lines = fields.One2Many('optical_equipment.maintenance.line', 'maintenance', 'Lines') maintenance_lines = fields.One2Many(
'optical_equipment.maintenance.line', 'maintenance', 'Lines')
description_activity = fields.Char('Activity') description_activity = fields.Char('Activity')
next_maintenance = fields.Function(fields.Date('Next Maintenance'), 'get_next_maintenance') next_maintenance = fields.Function(fields.Date('Next Maintenance'), 'get_next_maintenance')
temperature_min = fields.Float("Temp Min") temperature_min = fields.Float("Temp Min")
temperature_max = fields.Float("Temp Max") temperature_max = fields.Float("Temp Max")
temperature_uom = fields.Many2One('product.uom', 'Temperature UOM', temperature_uom = fields.Many2One('product.uom', 'Temperature UOM',
domain=[('category', '=', Id('optical_equipment', "uom_cat_temperature"))], domain=[
states={'invisible': If(Eval('temperature_min') == None, True), ('category', '=', Id(
'readonly' : (Eval('state') == 'finished')},) 'optical_equipment', "uom_cat_temperature"))],
states={'invisible': If(Eval('temperature_min') is None, True),
'readonly': (Eval('state') == 'finished')},)
moisture_min = fields.Float("Moisture Min") moisture_min = fields.Float("Moisture Min")
moisture_max = fields.Float("Moisture Max") moisture_max = fields.Float("Moisture Max")
moisture_uom = fields.Many2One('product.uom', "Moisture UOM", moisture_uom = fields.Many2One('product.uom', "Moisture UOM",
domain=[('category', '=', Id('optical_equipment', 'uom_cat_relative_humedity'))], domain=[
states={'invisible' : If(Eval('moisture_min') == None, True), ('category', '=', Id(
'readonly': Eval('state') == 'finished'},) 'optical_equipment', 'uom_cat_relative_humedity'))],
states={'invisible': If(Eval('moisture_min') is None, True),
'readonly': Eval('state') == 'finished'},)
graph_calibration = fields.Binary('Graphs') graph_calibration = fields.Binary('Graphs')
rec_name = fields.Function(fields.Char('rec_name'), 'get_rec_name') rec_name = fields.Function(fields.Char('rec_name'), 'get_rec_name')
# @fields.depends('maintenance_type', 'code') technician_responsible = fields.Char('Technician Responsible')
# def get_rec_name(self, name): invima = fields.Char('Invima')
# if self.maintenance_type and self.code:
# name = str(self.maintenance_type) + '@' + str(self.code) @classmethod
# else: def default_technician_responsible(cls):
# name = str(self.maintenance_type) + '@' + 'Borrador' pool = Pool()
ConfigurationEquipment = pool.get('optical_equipment.configuration')
# return name config = ConfigurationEquipment(1)
if config.technician_responsible:
technician_responsible = config.technician_responsible
return technician_responsible.party.name
@classmethod
def default_invima(cls):
pool = Pool()
ConfigurationEquipment = pool.get('optical_equipment.configuration')
config = ConfigurationEquipment(1)
if config.technician_responsible:
return config.technician_responsible.invima
@classmethod @classmethod
def __setup__(cls): def __setup__(cls):
super(MaintenanceServiceLine, cls).__setup__() super(MaintenanceServiceLine, cls).__setup__()
cls._transitions.update({ cls._transitions.update({
('draft', 'finished') ('draft', 'finished')
}) })
cls._buttons.update({ cls._buttons.update({
'in_progress': {'invisible': Eval('state').in_(['draft', 'in_progress', 'finished'])}, 'in_progress': {'invisible': Eval('state').in_(['draft', 'in_progress', 'finished'])},
'finished': {'invisible': (Eval('state').in_(['finished'])) | 'finished': {'invisible': (Eval('state').in_(['finished'])) |
((Eval('maintenance_type') == 'corrective') & (Eval('maintenance_lines') == ()))}, ((Eval('maintenance_type') == 'corrective') & (Eval('maintenance_lines') == ()))},
'samples': {'invisible': (Eval('state').in_(['finished'])) | (Eval('lines_calibration') != ()) | (~Eval('equipment_calibrate'))}, 'samples': {'invisible': (Eval('state').in_(['finished'])) | (Eval('lines_calibration') != ()) | (~Eval('equipment_calibrate'))},
'calibrate': {'invisible': (Eval('lines_calibration') == ()) | (Eval('state').in_(['finished'])), 'calibrate': {'invisible': (Eval('lines_calibration') == ()) | (Eval('state').in_(['finished'])),
'depends': ['state'],} 'depends': ['state'], }
}) })
@classmethod @classmethod
def view_attributes(cls): def view_attributes(cls):
@ -367,49 +393,46 @@ class MaintenanceServiceLine(Workflow, ModelSQL, ModelView):
('//page[@id="preventive"]', 'states', { ('//page[@id="preventive"]', 'states', {
'invisible': If(Eval('maintenance_type') == 'corrective', True), 'invisible': If(Eval('maintenance_type') == 'corrective', True),
}), }),
('//page[@id="corrective"]', 'states',{ ('//page[@id="corrective"]', 'states', {
'invisible': If(Eval('maintenance_type') != 'corrective', True), 'invisible': If(Eval('maintenance_type') != 'corrective', True),
}), }),
('//page[@id="calibration"]', 'states',{ ('//page[@id="calibration"]', 'states', {
'invisible': ~Eval('equipment_calibrate'), 'invisible': ~Eval('equipment_calibrate'),
}), }),
('//page[@id="graph"]', 'states',{ ('//page[@id="graph"]', 'states', {
'invisible': ~Eval('equipment_calibrate'), 'invisible': ~Eval('equipment_calibrate'),
}) })
] ]
@staticmethod @staticmethod
def default_company(): def default_company():
return Transaction().context.get('company') return Transaction().context.get('company')
@classmethod @classmethod
def default_state(cls): def default_state(cls):
return 'draft' return 'draft'
@classmethod @classmethod
def default_maintenance_type(cls): def default_maintenance_type(cls):
return 'preventive' return 'preventive'
@classmethod @classmethod
def default_state_agended(cls): def default_state_agended(cls):
return 'no_agenda' return 'no_agenda'
@fields.depends('temperature_min', 'temperature_uom') @fields.depends('temperature_min', 'temperature_uom')
def on_change_temperature_min(self): def on_change_temperature_min(self):
if self.temperature_min: if self.temperature_min:
pool = Pool() pool = Pool()
Measurements = pool.get('product.uom') Measurements = pool.get('product.uom')
self.temperature_uom = Measurements.search(['name', '=', 'Celsius'])[0].id self.temperature_uom = Measurements.search(['name', '=', 'Celsius'])[0].id
@fields.depends('moisture_min', 'moisture_uom') @fields.depends('moisture_min', 'moisture_uom')
def on_change_moisture_min(self): def on_change_moisture_min(self):
pool = Pool() pool = Pool()
Measurements = pool.get('product.uom') Measurements = pool.get('product.uom')
self.moisture_uom = Measurements.search(['name', '=', 'Relative Humedity'])[0].id self.moisture_uom = Measurements.search(['name', '=', 'Relative Humedity'])[0].id
@fields.depends('service_maintenance') @fields.depends('service_maintenance')
def on_change_service_maintenance(self): def on_change_service_maintenance(self):
if self.service_maintenance: if self.service_maintenance:
@ -424,20 +447,20 @@ class MaintenanceServiceLine(Workflow, ModelSQL, ModelView):
self.moisture_uom = service.moisture_uom self.moisture_uom = service.moisture_uom
else: else:
self.propietary = None self.propietary = None
self.propietary_address = None self.propietary_address = None
self.temperature_min = None self.temperature_min = None
self.temperature_max = None self.temperature_max = None
self.temperature_uom = None self.temperature_uom = None
self.moisture_min = None self.moisture_min = None
self.moisture_max = None self.moisture_max = None
self.moisture_uom = None self.moisture_uom = None
@fields.depends('equipment', 'patterns_equipments') @fields.depends('equipment', 'patterns_equipments')
def on_change_equipment(self): def on_change_equipment(self):
if self.equipment: if self.equipment:
self.patterns_equipments = self.equipment.product.k_pattern self.patterns_equipments = self.equipment.product.k_pattern
self.equipment_calibrate = self.equipment.product.calibration self.equipment_calibrate = self.equipment.product.calibration
self.initial_operation = self.equipment.product.initial_operation self.initial_operation = self.equipment.product.initial_operation
self.check_equipment = self.equipment.product.check_equipment self.check_equipment = self.equipment.product.check_equipment
self.check_electric_system = self.equipment.product.check_electric_system self.check_electric_system = self.equipment.product.check_electric_system
self.clean_int_ext = self.equipment.product.clean_int_ext self.clean_int_ext = self.equipment.product.clean_int_ext
@ -452,7 +475,7 @@ class MaintenanceServiceLine(Workflow, ModelSQL, ModelView):
self.clean_int_ext = False self.clean_int_ext = False
self.clean_eyes = False self.clean_eyes = False
self.check_calibration = False self.check_calibration = False
def get_next_maintenance(self, action): def get_next_maintenance(self, action):
next_maintenance = None next_maintenance = None
if self.service_maintenance.estimated_agended: if self.service_maintenance.estimated_agended:
@ -470,7 +493,7 @@ class MaintenanceServiceLine(Workflow, ModelSQL, ModelView):
sum_samples = sum(samples) sum_samples = sum(samples)
n_samples = len(samples) n_samples = len(samples)
mean = sum_samples / n_samples mean = sum_samples / n_samples
dev_std_square = sum((l-mean)**2 for l in samples) / (n_samples -1) dev_std_square = sum((l - mean)**2 for l in samples) / (n_samples - 1)
dev_std = mt.sqrt(dev_std_square) dev_std = mt.sqrt(dev_std_square)
return dev_std return dev_std
@ -481,7 +504,7 @@ class MaintenanceServiceLine(Workflow, ModelSQL, ModelView):
uncertain type A uncertain type A
""" """
n_samples = len(samples) n_samples = len(samples)
uncertain_type_A = dev_std /mt.sqrt(n_samples) uncertain_type_A = dev_std / mt.sqrt(n_samples)
return uncertain_type_A return uncertain_type_A
@ -495,7 +518,7 @@ class MaintenanceServiceLine(Workflow, ModelSQL, ModelView):
def get_k_certificated_calibration(self): def get_k_certificated_calibration(self):
k_certificated_calibration = 2 k_certificated_calibration = 2
return k_certicated_calibration return k_certicated_calibration
def get_uncertain_U_b1(self): def get_uncertain_U_b1(self):
@ -508,16 +531,16 @@ class MaintenanceServiceLine(Workflow, ModelSQL, ModelView):
return d return d
def get_uncertain_b2_digital(self): def get_uncertain_b2_digital(self):
uncertain_b2 = d/2*mt.sqrt(3) uncertain_b2 = d / 2 * mt.sqrt(3)
return uncertain_b2 return uncertain_b2
def get_uncertain_b2_analog(self): def get_uncertain_b2_analog(self):
""" """
Incertidumbre por resolución Análoga Incertidumbre por resolución Análoga
a contante que viene del equipo a contante que viene del equipo
""" """
uncertain_b2_analog = d/a * math.sqrt(3) uncertain_b2_analog = d / a * math.sqrt(3)
return uncertain_b2_analog return uncertain_b2_analog
@ -534,24 +557,26 @@ class MaintenanceServiceLine(Workflow, ModelSQL, ModelView):
""" """
Grados Efectivos de libertad Grados Efectivos de libertad
""" """
uncertain_eff = uncertain_c**4/((uncertain_type_A**4)/(len(sample)-1)+(uncertain_b1**4/U_subi)+(uncertain_b2**4/U_subi)) uncertain_eff = uncertain_c**4 / \
((uncertain_type_A**4) / (len(sample) - 1) +
(uncertain_b1**4 / U_subi) + (uncertain_b2**4 / U_subi))
return uncertain_eff return uncertain_eff
def get_create_graph(matrix, patterns, resolution, equipment_risk): def get_create_graph(matrix, patterns, resolution, equipment_risk):
image = BytesIO() image = BytesIO()
errors = [] errors = []
yerr = [] yerr = []
upresolution = resolution if resolution >=0 else (resolution*-1) upresolution = resolution if resolution >= 0 else (resolution * -1)
lowresolution = resolution if resolution < 0 else (resolution*-1) lowresolution = resolution if resolution < 0 else (resolution * -1)
count = 0 count = 0
for pattern in patterns: for pattern in patterns:
error = pattern - matrix[count][0] error = pattern - matrix[count][0]
yerr.append(matrix[count][1]) yerr.append(matrix[count][1])
errors.append(error) errors.append(error)
count+=1 count += 1
labels = list(patterns) labels = list(patterns)
@ -572,11 +597,11 @@ class MaintenanceServiceLine(Workflow, ModelSQL, ModelView):
ls = 'dotted' ls = 'dotted'
fig, ax1 = plt.subplots(nrows=1, ncols=1) fig, ax1 = plt.subplots(nrows=1, ncols=1)
## Límites del Eje Y # Límites del Eje Y
ax1.set_ylim(bottom, top) ax1.set_ylim(bottom, top)
## Límites del Eje X # Límites del Eje X
ax1.set_xlim((min(labels)-1, max(labels)+1)) ax1.set_xlim((min(labels) - 1, max(labels) + 1))
ax1.yaxis.grid(True) ax1.yaxis.grid(True)
ax1.xaxis.grid(True) ax1.xaxis.grid(True)
@ -584,8 +609,8 @@ class MaintenanceServiceLine(Workflow, ModelSQL, ModelView):
ax1.set_xlabel('Patrones') ax1.set_xlabel('Patrones')
ax1.set_ylabel('Valores Observados') ax1.set_ylabel('Valores Observados')
ax1.set_yticks([lowresolution,0.0,upresolution]) ax1.set_yticks([lowresolution, 0.0, upresolution])
#ax1.set_xticks([-10.0,-5.0,0.0,5.0,10.0]) # ax1.set_xticks([-10.0,-5.0,0.0,5.0,10.0])
ax1.errorbar(x, y, yerr=yerr, marker='D', markersize=10, linestyle=ls) ax1.errorbar(x, y, yerr=yerr, marker='D', markersize=10, linestyle=ls)
@ -599,7 +624,7 @@ class MaintenanceServiceLine(Workflow, ModelSQL, ModelView):
@Workflow.transition('in_progress') @Workflow.transition('in_progress')
def in_progress(cls, maintenances): def in_progress(cls, maintenances):
pass pass
@classmethod @classmethod
@ModelView.button @ModelView.button
@Workflow.transition('finished') @Workflow.transition('finished')
@ -622,16 +647,16 @@ class MaintenanceServiceLine(Workflow, ModelSQL, ModelView):
for pattern in patterns: for pattern in patterns:
samples = [] samples = []
calibrationSample = CalibrationSample( calibrationSample = CalibrationSample(
maintenance=maintenance.id, maintenance=maintenance.id,
product=maintenance.equipment.product.template.id, product=maintenance.equipment.product.template.id,
value_patterns=pattern.id, value_patterns=pattern.id,
value_equipment=pattern.pattern, value_equipment=pattern.pattern,
mistake=0, mistake=0,
mistake_rate=0) mistake_rate=0)
samples = [calibrationSample]*5 samples = [calibrationSample] * 5
maintenance.lines_calibration+=tuple(samples) maintenance.lines_calibration += tuple(samples)
maintenance.save() maintenance.save()
@classmethod @classmethod
@ModelView.button @ModelView.button
def calibrate(cls, maintenances): def calibrate(cls, maintenances):
@ -652,39 +677,45 @@ class MaintenanceServiceLine(Workflow, ModelSQL, ModelView):
dates[line.value_patterns.pattern] = [line.value_equipment] dates[line.value_patterns.pattern] = [line.value_equipment]
else: else:
dates[line.value_patterns.pattern].append(line.value_equipment) dates[line.value_patterns.pattern].append(line.value_equipment)
for pattern in patterns: for pattern in patterns:
samples = dates[pattern] samples = dates[pattern]
mean = sum(samples)/len(samples) mean = sum(samples) / len(samples)
U_subi = maintenance.equipment.product.Usubi U_subi = maintenance.equipment.product.Usubi
uncertain_pattern = maintenance.equipment.product.uncertainy_pattern uncertain_pattern = maintenance.equipment.product.uncertainy_pattern
MEP = maintenance.equipment.product.MEP MEP = maintenance.equipment.product.MEP
dev_std = cls.get_standard_deviation(samples) dev_std = cls.get_standard_deviation(samples)
uncertain_type_A = cls.get_uncertain_type_A(samples, dev_std) uncertain_type_A = cls.get_uncertain_type_A(samples, dev_std)
k_certificated_calibration = 2 k_certificated_calibration = 2
uncertain_b1 = MEP / mt.sqrt(3) #Ub1_patron a 2 Decimales uncertain_b1 = MEP / mt.sqrt(3) # Ub1_patron a 2 Decimales
uncertain_b1a = uncertain_pattern / k_certificated_calibration #Ub1_MEP uncertain_b1a = uncertain_pattern / k_certificated_calibration # Ub1_MEP
if maintenance.equipment.product.resolution_type == "analoga": if maintenance.equipment.product.resolution_type == "analoga":
a_resolution = maintenance.equipment.product.analog_resolution a_resolution = maintenance.equipment.product.analog_resolution
resolution = a_resolution resolution = a_resolution
factor_a = maintenance.equipment.product.a_factor_resolution factor_a = maintenance.equipment.product.a_factor_resolution
uncertain_b2_analog = (a_resolution) / (factor_a*mt.sqrt(3)) uncertain_b2_analog = (a_resolution) / (factor_a * mt.sqrt(3))
sum_uncertain_c = (uncertain_type_A**2) + (uncertain_b1**2) + (uncertain_b2_analog**2) sum_uncertain_c = (uncertain_type_A**2) + \
(uncertain_b1**2) + (uncertain_b2_analog**2)
uncertain_c = mt.sqrt(sum_uncertain_c) uncertain_c = mt.sqrt(sum_uncertain_c)
uncertain_eff = uncertain_c**4/((uncertain_type_A**4)/(len(samples)-1)+(uncertain_b1**4/U_subi)+(uncertain_b2_analog**4/U_subi)) uncertain_eff = uncertain_c**4 / \
((uncertain_type_A**4) / (len(samples) - 1) +
(uncertain_b1**4 / U_subi) + (uncertain_b2_analog**4 / U_subi))
elif maintenance.equipment.product.resolution_type == "digital": elif maintenance.equipment.product.resolution_type == "digital":
d_resolution = maintenance.equipment.product.d_resolution d_resolution = maintenance.equipment.product.d_resolution
resolution = d_resolution resolution = d_resolution
uncertain_b2_digital = (d_resolution) / (2*mt.sqrt(3)) uncertain_b2_digital = (d_resolution) / (2 * mt.sqrt(3))
sum_uncertain_c = (uncertain_type_A**2) + (uncertain_b1**2) + (uncertain_b2_digital**2) sum_uncertain_c = (uncertain_type_A**2) + \
(uncertain_b1**2) + (uncertain_b2_digital**2)
uncertain_c = mt.sqrt(sum_uncertain_c) uncertain_c = mt.sqrt(sum_uncertain_c)
uncertain_eff = uncertain_c**4/((uncertain_type_A**4)/(len(samples)-1)+(uncertain_b1**4/U_subi)+(uncertain_b2_digital**4/U_subi)) uncertain_eff = uncertain_c**4 / \
((uncertain_type_A**4) / (len(samples) - 1) +
t_student = t.ppf(1-0.025, uncertain_eff) (uncertain_b1**4 / U_subi) + (uncertain_b2_digital**4 / U_subi))
uncertain_expanded = round((t_student * uncertain_c),2)
dates_mistake_pattern.append([mean,uncertain_expanded]) t_student = t.ppf(1 - 0.025, uncertain_eff)
uncertain_expanded = round((t_student * uncertain_c), 2)
dates_mistake_pattern.append([mean, uncertain_expanded])
if maintenance.equipment.product.resolution_type == "analoga": if maintenance.equipment.product.resolution_type == "analoga":
calibrationLineTotal = CalibrationLineTotal( calibrationLineTotal = CalibrationLineTotal(
diopter=pattern, diopter=pattern,
@ -727,45 +758,66 @@ class MaintenanceServiceLine(Workflow, ModelSQL, ModelView):
maintenance.save() maintenance.save()
equipment_risk = maintenance.equipment.product.risk equipment_risk = maintenance.equipment.product.risk
image = cls.get_create_graph(dates_mistake_pattern, patterns, resolution, equipment_risk) image = cls.get_create_graph(
dates_mistake_pattern, patterns, resolution, equipment_risk)
maintenance.graph_calibration = image maintenance.graph_calibration = image
maintenance.save() maintenance.save()
class MaintenanceLine(ModelSQL, ModelView): class MaintenanceLine(ModelSQL, ModelView):
'Maintenance Line' 'Maintenance Line'
__name__ = 'optical_equipment.maintenance.line' __name__ = 'optical_equipment.maintenance.line'
line_replace = fields.Boolean("Replace", states={'readonly': If(Eval('line_maintenance_activity') == True, True)}) line_replace = fields.Boolean(
line_maintenance_activity = fields.Boolean("Maintenance Activity", states={'readonly': If(Eval('line_replace') == True, True)}) "Replace",
maintenance = fields.Many2One('optical_equipment.maintenance', 'Maintenance', ondelete='CASCADE', select=True) states={
'readonly': If(
Eval('line_maintenance_activity') == True,
True)})
line_maintenance_activity = fields.Boolean(
"Maintenance Activity", states={
'readonly': If(
Eval('line_replace') == True, True)})
maintenance = fields.Many2One(
'optical_equipment.maintenance',
'Maintenance',
ondelete='CASCADE',
select=True)
replacement = fields.Many2One('product.product', 'Replacement', ondelete='RESTRICT', replacement = fields.Many2One('product.product', 'Replacement', ondelete='RESTRICT',
domain=[('replacement', '=', True)], domain=[('replacement', '=', True)],
states={'invisible': (If(Eval('line_maintenance_activity') == True, True)) | (If(Eval('line_replace') == False, True)), states={'invisible': (If(Eval('line_maintenance_activity') == True, True)) | (If(Eval('line_replace') == False, True)),
'required': If(Eval('line_replace') == True, True)}, 'required': If(Eval('line_replace') == True, True)},
depends={'line_replace'}) depends={'line_replace'})
maintenance_activity = fields.Many2One('product.product', 'Maintenance activity', maintenance_activity = fields.Many2One('product.product', 'Maintenance activity',
domain=[('maintenance_activity', '=', True)], domain=[('maintenance_activity', '=', True)],
states={'invisible': If(Eval('line_replace') == True, True) | states={'invisible': If(Eval('line_replace') == True, True) |
(If(Eval('line_maintenance_activity') == False, True)), (If(Eval('line_maintenance_activity') == False, True)),
'required': If(Eval('line_maintenance_actitvity') == True, True)}, 'required': If(Eval('line_maintenance_actitvity') == True, True)},
depends={'line_maintenance_activity'}) depends={'line_maintenance_activity'})
quantity = fields.Float("Quantity", required=True, digits='unit') quantity = fields.Float("Quantity", required=True, digits='unit')
actual_quantity = fields.Float( actual_quantity = fields.Float(
"Actual Quantity", digits='unit', readonly=True, "Actual Quantity", digits='unit', readonly=True,
states={ states={
'invisible': Eval('type') != 'line', 'invisible': Eval('type') != 'line',
}) })
unit = fields.Many2One('product.uom', 'Unit', ondelete='RESTRICT', unit = fields.Many2One('product.uom', 'Unit', ondelete='RESTRICT',
states={ states={
'readonly': Eval('_parent_maintenance.state') != 'draft', 'readonly': Eval('_parent_maintenance.state') != 'draft',
},domain=[If(Bool(Eval('product_uom_category')), }, domain=[If(Bool(Eval('product_uom_category')),
('category', '=', Eval('product_uom_category')), ('category', '=', Eval('product_uom_category')),
('category', '!=', -1)), ('category', '!=', -1)),
]) ])
product_uom_category = fields.Function(fields.Many2One('product.uom.category', 'Product Uom Category'), product_uom_category = fields.Function(fields.Many2One('product.uom.category', 'Product Uom Category'),
'on_change_with_product_uom_category') 'on_change_with_product_uom_category')
company = fields.Function(fields.Many2One('company.company', "Company"),'on_change_with_company') description = fields.Text("Description", states={
'readonly': Eval('_parent_maintenance.state') != 'draft',
})
company = fields.Function(
fields.Many2One(
'company.company',
"Company"),
'on_change_with_company')
@fields.depends('maintenance', '_parent_maintenance.company') @fields.depends('maintenance', '_parent_maintenance.company')
def on_change_with_company(self, name=None): def on_change_with_company(self, name=None):
@ -775,19 +827,19 @@ class MaintenanceLine(ModelSQL, ModelView):
@fields.depends('line_replace', 'replacement') @fields.depends('line_replace', 'replacement')
def on_change_line_replace(self, name=None): def on_change_line_replace(self, name=None):
if self.line_replace == False: if self.line_replace == False:
self.replacement = None self.replacement = None
@fields.depends('line_maintenance_activity', 'maintenance_activity') @fields.depends('line_maintenance_activity', 'maintenance_activity')
def on_change_line_maintenance_activity(self, name=None): def on_change_line_maintenance_activity(self, name=None):
if self.line_maintenance_activity == False: if self.line_maintenance_activity == False:
self.maintenance_activity = None self.maintenance_activity = None
@fields.depends('replacement', 'maintenance', 'unit', 'maintenance') @fields.depends('replacement', 'maintenance', 'unit', 'maintenance')
def on_change_replacement(self): def on_change_replacement(self):
if not self.replacement: if not self.replacement:
self.unit = None self.unit = None
return return
if not self.unit or self.unit.category != category: if not self.unit or self.unit.category != category:
self.unit = self.replacement.sale_uom self.unit = self.replacement.sale_uom
@ -802,8 +854,8 @@ class MaintenanceLine(ModelSQL, ModelView):
self.quantity = 1 self.quantity = 1
if not self.unit or self.unit.category != category: if not self.unit or self.unit.category != category:
self.unit = self.maintenance_activity.sale_uom self.unit = self.maintenance_activity.sale_uom
class MaintenanceActivity(ModelView, ModelSQL): class MaintenanceActivity(ModelView, ModelSQL):
'Maintenance Activitys' 'Maintenance Activitys'
__name__ = 'optical_equipment_maintenance.activity' __name__ = 'optical_equipment_maintenance.activity'
@ -820,8 +872,8 @@ class ChangePropietaryMaintenance(ModelView):
old_propietary = fields.Many2One('party.party', 'Old Propietary', old_propietary = fields.Many2One('party.party', 'Old Propietary',
states={'required': True}) states={'required': True})
maintenance_service = fields.Many2Many('optical_equipment_maintenance.service', None, None, "Maintenance Service", maintenance_service = fields.Many2Many('optical_equipment_maintenance.service', None, None, "Maintenance Service",
domain=[('propietary', '=', Eval('old_propietary'))], domain=[('propietary', '=', Eval('old_propietary'))],
depends=['old_propietary']) depends=['old_propietary'])
new_propietary = fields.Many2One('party.party', "New Propietary", new_propietary = fields.Many2One('party.party', "New Propietary",
states={'required': True}) states={'required': True})
new_address = fields.Many2One('party.address', "New Address", required=True, new_address = fields.Many2One('party.address', "New Address", required=True,
@ -841,12 +893,12 @@ class NewPropietaryMaintenance(Wizard):
__name__ = 'optical_equipment.change_propietary_maintenance' __name__ = 'optical_equipment.change_propietary_maintenance'
start = StateView('optical_equipment.change_propietary_maintenance.form', start = StateView('optical_equipment.change_propietary_maintenance.form',
'optical_equipment.change_propietary_maintenance_view_form',[ 'optical_equipment.change_propietary_maintenance_view_form', [
Button('Cancel', 'end', 'tryton-cancel'), Button('Cancel', 'end', 'tryton-cancel'),
Button('Create', 'change_propietary', 'tryton-ok', default=True), Button('Create', 'change_propietary', 'tryton-ok', default=True),
]) ])
change_propietary = StateAction('optical_equipment.act_optical_equipment_form') change_propietary = StateAction('optical_equipment.act_optical_equipment_form')
def do_change_propietary(self, action): def do_change_propietary(self, action):
old_propietary = self.start.old_propietary old_propietary = self.start.old_propietary
services = self.start.maintenance_service services = self.start.maintenance_service
@ -861,7 +913,7 @@ class NewPropietaryMaintenance(Wizard):
maintenance.propietary = new_propietary maintenance.propietary = new_propietary
maintenance.propietary_address = new_address maintenance.propietary_address = new_address
maintenance.save() maintenance.save()
class MaintenanceServiceReport(CompanyReport): class MaintenanceServiceReport(CompanyReport):
__name__ = 'optical_equipment_maintenance.service' __name__ = 'optical_equipment_maintenance.service'

View File

@ -35,7 +35,7 @@ class Move(metaclass=PoolMeta):
@classmethod @classmethod
def __setup__(cls): def __setup__(cls):
super(Move, cls).__setup__() super(Move, cls).__setup__()
cls.origin.states['required']=True cls.origin.states['required']=False
@fields.depends('product') @fields.depends('product')
def get_product_equipment(self, product): def get_product_equipment(self, product):
@ -159,7 +159,9 @@ class ShipmentOut(metaclass=PoolMeta):
serial = False serial = False
if number_equipments < 1 or maintenance_required < 1: if number_equipments < 1 or maintenance_required < 1:
raise UserError(str("No se generó un mantenimiento inicial dado que los equipos no requiren mantenimiento, ó no se encontró ningún producto de tipo equipo en este envío.")) shipment.service_maintenance_initial = True
shipment.save()
#raise UserError(str("No se generó un mantenimiento inicial dado que los equipos no requiren mantenimiento, ó no se encontró ningún producto de tipo equipo en este envío."))
break break
sale_origin = shipment.outgoing_moves[0].origin.sale sale_origin = shipment.outgoing_moves[0].origin.sale

View File

@ -1,142 +1,144 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text"> <office:document xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:creation-date>2022-10-25T06:02:43.829301281</meta:creation-date><dc:date>2023-05-25T14:10:40.120108554</dc:date><meta:editing-duration>PT7H31M23S</meta:editing-duration><meta:editing-cycles>116</meta:editing-cycles><meta:generator>LibreOffice/7.4.6.2$Linux_X86_64 LibreOffice_project/40$Build-2</meta:generator><meta:document-statistic meta:table-count="5" meta:image-count="1" meta:object-count="0" meta:page-count="4" meta:paragraph-count="118" meta:word-count="385" meta:character-count="4725" meta:non-whitespace-character-count="4452"/></office:meta> <office:meta><meta:creation-date>2022-10-25T06:02:43.829301281</meta:creation-date><dc:date>2023-09-24T21:44:32.432879655</dc:date><meta:editing-duration>PT7H36M53S</meta:editing-duration><meta:editing-cycles>117</meta:editing-cycles><meta:generator>LibreOffice/7.5.6.2$Linux_X86_64 LibreOffice_project/50$Build-2</meta:generator><meta:document-statistic meta:table-count="5" meta:image-count="1" meta:object-count="0" meta:page-count="4" meta:paragraph-count="117" meta:word-count="378" meta:character-count="4670" meta:non-whitespace-character-count="4401"/></office:meta>
<office:settings> <office:settings>
<config:config-item-set config:name="ooo:view-settings"> <config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">0</config:config-item> <config:config-item config:name="ViewAreaTop" config:type="long">66063</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item> <config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">24343</config:config-item> <config:config-item config:name="ViewAreaWidth" config:type="long">35003</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">10869</config:config-item> <config:config-item config:name="ViewAreaHeight" config:type="long">16425</config:config-item>
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item> <config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item> <config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="Views"> <config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry> <config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item> <config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">2177</config:config-item> <config:config-item config:name="ViewLeft" config:type="long">7507</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">9176</config:config-item> <config:config-item config:name="ViewTop" config:type="long">74096</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item> <config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">0</config:config-item> <config:config-item config:name="VisibleTop" config:type="long">66063</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">24342</config:config-item> <config:config-item config:name="VisibleRight" config:type="long">35001</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">10867</config:config-item> <config:config-item config:name="VisibleBottom" config:type="long">82487</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item> <config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns" config:type="short">1</config:config-item> <config:config-item config:name="ViewLayoutColumns" config:type="short">1</config:config-item>
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item> <config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">140</config:config-item> <config:config-item config:name="ZoomFactor" config:type="short">140</config:config-item>
<config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item> <config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item>
<config:config-item config:name="KeepRatio" config:type="boolean">false</config:config-item> <config:config-item config:name="KeepRatio" config:type="boolean">false</config:config-item>
<config:config-item config:name="HideWhitespace" config:type="boolean">false</config:config-item>
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item> <config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
<config:config-item config:name="LegacySingleLineFontwork" config:type="boolean">false</config:config-item>
<config:config-item config:name="ConnectorUseSnapRect" config:type="boolean">false</config:config-item>
</config:config-item-map-entry> </config:config-item-map-entry>
</config:config-item-map-indexed> </config:config-item-map-indexed>
</config:config-item-set> </config:config-item-set>
<config:config-item-set config:name="ooo:configuration-settings"> <config:config-item-set config:name="ooo:configuration-settings">
<config:config-item config:name="PrintProspect" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintReversed" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintProspectRTL" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintSingleJobs" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintLeftPages" config:type="boolean">true</config:config-item> <config:config-item config:name="PrintLeftPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintTables" config:type="boolean">true</config:config-item> <config:config-item config:name="PrintPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintControls" config:type="boolean">true</config:config-item> <config:config-item config:name="PrintControls" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintPageBackground" config:type="boolean">true</config:config-item> <config:config-item config:name="PrintProspect" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintDrawings" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintBlackFonts" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintBlackFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintAnnotationMode" config:type="short">0</config:config-item> <config:config-item config:name="PrintAnnotationMode" config:type="short">0</config:config-item>
<config:config-item config:name="PrintTextPlaceholder" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintEmptyPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="ProtectFields" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintSingleJobs" config:type="boolean">false</config:config-item>
<config:config-item config:name="AutoFirstLineIndentDisregardLineSpace" config:type="boolean">false</config:config-item>
<config:config-item config:name="HeaderSpacingBelowLastPara" config:type="boolean">true</config:config-item>
<config:config-item config:name="ProtectBookmarks" config:type="boolean">false</config:config-item> <config:config-item config:name="ProtectBookmarks" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmptyDbFieldHidesPara" config:type="boolean">true</config:config-item> <config:config-item config:name="ContinuousEndnotes" config:type="boolean">false</config:config-item>
<config:config-item config:name="DisableOffPagePositioning" config:type="boolean">false</config:config-item> <config:config-item config:name="DisableOffPagePositioning" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintTables" config:type="boolean">true</config:config-item>
<config:config-item config:name="SubtractFlysAnchoredAtFlys" config:type="boolean">false</config:config-item> <config:config-item config:name="SubtractFlysAnchoredAtFlys" config:type="boolean">false</config:config-item>
<config:config-item config:name="PropLineSpacingShrinksFirstLine" config:type="boolean">true</config:config-item>
<config:config-item config:name="ApplyParagraphMarkFormatToNumbering" config:type="boolean">true</config:config-item> <config:config-item config:name="ApplyParagraphMarkFormatToNumbering" config:type="boolean">true</config:config-item>
<config:config-item config:name="GutterAtTop" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintFaxName" config:type="string"/>
<config:config-item config:name="SurroundTextWrapSmall" config:type="boolean">true</config:config-item>
<config:config-item config:name="TreatSingleColumnBreakAsPageBreak" config:type="boolean">false</config:config-item> <config:config-item config:name="TreatSingleColumnBreakAsPageBreak" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedSystemFonts" config:type="boolean">false</config:config-item> <config:config-item config:name="PropLineSpacingShrinksFirstLine" config:type="boolean">true</config:config-item>
<config:config-item config:name="TabOverSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabOverMargin" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedComplexScriptFonts" config:type="boolean">true</config:config-item> <config:config-item config:name="EmbedComplexScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedAsianScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedLatinScriptFonts" config:type="boolean">true</config:config-item> <config:config-item config:name="EmbedLatinScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedOnlyUsedFonts" config:type="boolean">false</config:config-item> <config:config-item config:name="EmbedOnlyUsedFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="WordLikeWrapForAsCharFlys" config:type="boolean">false</config:config-item>
<config:config-item config:name="ContinuousEndnotes" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item> <config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="ClippedPictures" config:type="boolean">false</config:config-item> <config:config-item config:name="ClippedPictures" config:type="boolean">false</config:config-item>
<config:config-item config:name="FrameAutowidthWithMorePara" config:type="boolean">true</config:config-item>
<config:config-item config:name="FloattableNomargins" config:type="boolean">false</config:config-item> <config:config-item config:name="FloattableNomargins" config:type="boolean">false</config:config-item>
<config:config-item config:name="UnbreakableNumberings" config:type="boolean">false</config:config-item> <config:config-item config:name="UnbreakableNumberings" config:type="boolean">false</config:config-item>
<config:config-item config:name="HeaderSpacingBelowLastPara" config:type="boolean">true</config:config-item>
<config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</config:config-item> <config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseOldPrinterMetrics" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabOverMargin" config:type="boolean">true</config:config-item>
<config:config-item config:name="TabsRelativeToIndent" config:type="boolean">false</config:config-item>
<config:config-item config:name="UseOldNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
<config:config-item config:name="CurrentDatabaseCommandType" config:type="int">0</config:config-item>
<config:config-item config:name="LinkUpdateMode" config:type="short">1</config:config-item>
<config:config-item config:name="AddParaSpacingToTableCells" config:type="boolean">true</config:config-item>
<config:config-item config:name="FrameAutowidthWithMorePara" config:type="boolean">true</config:config-item>
<config:config-item config:name="CurrentDatabaseCommand" config:type="string"/>
<config:config-item config:name="PrinterIndependentLayout" config:type="string">high-resolution</config:config-item>
<config:config-item config:name="ApplyUserData" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintFaxName" config:type="string"/>
<config:config-item config:name="CurrentDatabaseDataSource" config:type="string"/>
<config:config-item config:name="ClipAsCharacterAnchoredWriterFlyFrames" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item>
<config:config-item config:name="SaveThumbnail" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseFormerTextWrapping" config:type="boolean">false</config:config-item>
<config:config-item config:name="AutoFirstLineIndentDisregardLineSpace" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddExternalLeading" config:type="boolean">true</config:config-item>
<config:config-item config:name="AddParaTableSpacing" config:type="boolean">true</config:config-item>
<config:config-item config:name="StylesNoDefault" config:type="boolean">false</config:config-item>
<config:config-item config:name="ChartAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrinterSetup" config:type="base64Binary"/>
<config:config-item config:name="AddParaTableSpacingAtStart" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">2871016</config:config-item>
<config:config-item config:name="EmbeddedDatabaseName" config:type="string"/>
<config:config-item config:name="FieldAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="OutlineLevelYieldsNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="FootnoteInColumnToPageEnd" config:type="boolean">true</config:config-item>
<config:config-item config:name="AlignTabStopPosition" config:type="boolean">true</config:config-item>
<config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
<config:config-item config:name="PrinterName" config:type="string"/>
<config:config-item config:name="SaveGlobalDocumentLinks" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="UseFormerLineSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddParaLineSpacingToTableCells" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseFormerObjectPositioning" config:type="boolean">false</config:config-item> <config:config-item config:name="UseFormerObjectPositioning" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintGraphics" config:type="boolean">true</config:config-item> <config:config-item config:name="UseOldNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="ImagePreferredDPI" config:type="int">0</config:config-item>
<config:config-item config:name="SurroundTextWrapSmall" config:type="boolean">true</config:config-item>
<config:config-item config:name="ConsiderTextWrapOnObjPos" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">true</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="TabOverSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="IgnoreFirstLineIndentInNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="NoNumberingShowFollowBy" config:type="boolean">false</config:config-item>
<config:config-item config:name="RedlineProtectionKey" config:type="base64Binary"/>
<config:config-item config:name="DoNotJustifyLinesWithManualBreak" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintProspectRTL" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintEmptyPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="DoNotResetParaAttrsForNumFont" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddFrameOffsets" config:type="boolean">true</config:config-item>
<config:config-item config:name="IgnoreTabsAndBlanksForLineCalculation" config:type="boolean">false</config:config-item>
<config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
<config:config-item config:name="DoNotCaptureDrawObjsOnPage" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddVerticalFrameOffsets" config:type="boolean">false</config:config-item>
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsLabelDocument" config:type="boolean">false</config:config-item>
<config:config-item config:name="TableRowKeep" config:type="boolean">true</config:config-item>
<config:config-item config:name="RsidRoot" config:type="int">398114</config:config-item> <config:config-item config:name="RsidRoot" config:type="int">398114</config:config-item>
<config:config-item config:name="PrintHiddenText" config:type="boolean">false</config:config-item> <config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="ProtectForm" config:type="boolean">false</config:config-item> <config:config-item config:name="CurrentDatabaseDataSource" config:type="string"/>
<config:config-item config:name="MsWordCompMinLineHeightByFly" config:type="boolean">true</config:config-item> <config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
<config:config-item config:name="BackgroundParaOverDrawings" config:type="boolean">false</config:config-item> <config:config-item config:name="AddFrameOffsets" config:type="boolean">true</config:config-item>
<config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
<config:config-item config:name="Rsid" config:type="int">2916995</config:config-item>
<config:config-item config:name="FootnoteInColumnToPageEnd" config:type="boolean">true</config:config-item>
<config:config-item config:name="ProtectFields" config:type="boolean">false</config:config-item>
<config:config-item config:name="SaveGlobalDocumentLinks" config:type="boolean">false</config:config-item>
<config:config-item config:name="ClipAsCharacterAnchoredWriterFlyFrames" config:type="boolean">false</config:config-item>
<config:config-item config:name="LinkUpdateMode" config:type="short">1</config:config-item>
<config:config-item config:name="AddExternalLeading" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintGraphics" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedSystemFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsLabelDocument" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddParaLineSpacingToTableCells" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseFormerTextWrapping" config:type="boolean">false</config:config-item>
<config:config-item config:name="HyphenateURLs" config:type="boolean">true</config:config-item>
<config:config-item config:name="AddParaTableSpacingAtStart" config:type="boolean">true</config:config-item>
<config:config-item config:name="TabsRelativeToIndent" config:type="boolean">false</config:config-item>
<config:config-item config:name="FieldAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item> <config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">true</config:config-item> <config:config-item config:name="ChartAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="ImagePreferredDPI" config:type="int">0</config:config-item>
<config:config-item config:name="PrinterSetup" config:type="base64Binary"/>
<config:config-item config:name="SmallCapsPercentage66" config:type="boolean">false</config:config-item> <config:config-item config:name="SmallCapsPercentage66" config:type="boolean">false</config:config-item>
<config:config-item config:name="CollapseEmptyCellPara" config:type="boolean">true</config:config-item> <config:config-item config:name="AlignTabStopPosition" config:type="boolean">true</config:config-item>
<config:config-item config:name="DropCapPunctuation" config:type="boolean">false</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrinterName" config:type="string"/>
<config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
<config:config-item config:name="AddParaTableSpacing" config:type="boolean">true</config:config-item>
<config:config-item config:name="DoNotJustifyLinesWithManualBreak" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintHiddenText" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrinterIndependentLayout" config:type="string">high-resolution</config:config-item>
<config:config-item config:name="TabOverflow" config:type="boolean">true</config:config-item> <config:config-item config:name="TabOverflow" config:type="boolean">true</config:config-item>
<config:config-item config:name="AddParaSpacingToTableCells" config:type="boolean">true</config:config-item>
<config:config-item config:name="AddVerticalFrameOffsets" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">true</config:config-item>
<config:config-item config:name="ApplyUserData" config:type="boolean">true</config:config-item>
<config:config-item config:name="MsWordCompMinLineHeightByFly" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintTextPlaceholder" config:type="boolean">false</config:config-item>
<config:config-item config:name="IgnoreFirstLineIndentInNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="UseFormerLineSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintPageBackground" config:type="boolean">true</config:config-item>
<config:config-item config:name="RedlineProtectionKey" config:type="base64Binary"/>
<config:config-item config:name="EmbedAsianScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="BackgroundParaOverDrawings" config:type="boolean">false</config:config-item>
<config:config-item config:name="SaveThumbnail" config:type="boolean">true</config:config-item>
<config:config-item config:name="ConsiderTextWrapOnObjPos" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbeddedDatabaseName" config:type="string"/>
<config:config-item config:name="ProtectForm" config:type="boolean">false</config:config-item>
<config:config-item config:name="DoNotResetParaAttrsForNumFont" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmptyDbFieldHidesPara" config:type="boolean">true</config:config-item>
<config:config-item config:name="TableRowKeep" config:type="boolean">true</config:config-item>
<config:config-item config:name="NoNumberingShowFollowBy" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="IgnoreTabsAndBlanksForLineCalculation" config:type="boolean">false</config:config-item>
<config:config-item config:name="DoNotCaptureDrawObjsOnPage" config:type="boolean">false</config:config-item>
<config:config-item config:name="GutterAtTop" config:type="boolean">false</config:config-item>
<config:config-item config:name="StylesNoDefault" config:type="boolean">false</config:config-item>
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintReversed" config:type="boolean">false</config:config-item>
<config:config-item config:name="UseOldPrinterMetrics" config:type="boolean">false</config:config-item>
<config:config-item config:name="CurrentDatabaseCommandType" config:type="int">0</config:config-item>
<config:config-item config:name="PrintDrawings" config:type="boolean">true</config:config-item>
<config:config-item config:name="OutlineLevelYieldsNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="CurrentDatabaseCommand" config:type="string"/>
<config:config-item config:name="CollapseEmptyCellPara" config:type="boolean">true</config:config-item>
</config:config-item-set> </config:config-item-set>
</office:settings> </office:settings>
<office:scripts> <office:scripts>
@ -158,14 +160,14 @@
</office:font-face-decls> </office:font-face-decls>
<office:styles> <office:styles>
<style:default-style style:family="graphic"> <style:default-style style:family="graphic">
<style:graphic-properties svg:stroke-color="#3465a4" draw:fill-color="#729fcf" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.3cm" draw:shadow-offset-y="0.3cm" draw:start-line-spacing-horizontal="0.283cm" draw:start-line-spacing-vertical="0.283cm" draw:end-line-spacing-horizontal="0.283cm" draw:end-line-spacing-vertical="0.283cm" style:flow-with-text="false"/> <style:graphic-properties svg:stroke-color="#3465a4" draw:fill-color="#729fcf" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.1181in" draw:shadow-offset-y="0.1181in" draw:start-line-spacing-horizontal="0.1114in" draw:start-line-spacing-vertical="0.1114in" draw:end-line-spacing-horizontal="0.1114in" draw:end-line-spacing-vertical="0.1114in" style:writing-mode="lr-tb" style:flow-with-text="false"/>
<style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" style:writing-mode="lr-tb" style:font-independent-line-spacing="false"> <style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" style:font-independent-line-spacing="false">
<style:tab-stops/> <style:tab-stops/>
</style:paragraph-properties> </style:paragraph-properties>
<style:text-properties style:use-window-font-color="true" loext:opacity="0%" loext:color-lum-mod="100%" loext:color-lum-off="0%" style:font-name="DejaVu Serif" fo:font-size="12pt" fo:language="es" fo:country="CO" style:letter-kerning="true" style:font-name-asian="DejaVu Sans1" style:font-size-asian="10.5pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="DejaVu Sans1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN"/> <style:text-properties style:use-window-font-color="true" loext:opacity="0%" loext:color-lum-mod="100%" loext:color-lum-off="0%" style:font-name="DejaVu Serif" fo:font-size="12pt" fo:language="es" fo:country="CO" style:letter-kerning="true" style:font-name-asian="DejaVu Sans1" style:font-size-asian="10.5pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="DejaVu Sans1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN"/>
</style:default-style> </style:default-style>
<style:default-style style:family="paragraph"> <style:default-style style:family="paragraph">
<style:paragraph-properties fo:orphans="2" fo:widows="2" fo:hyphenation-ladder-count="no-limit" style:text-autospace="ideograph-alpha" style:punctuation-wrap="hanging" style:line-break="strict" style:tab-stop-distance="1.251cm" style:writing-mode="lr-tb"/> <style:paragraph-properties fo:orphans="2" fo:widows="2" fo:hyphenation-ladder-count="no-limit" style:text-autospace="ideograph-alpha" style:punctuation-wrap="hanging" style:line-break="strict" style:tab-stop-distance="0.4925in" style:writing-mode="lr-tb"/>
<style:text-properties style:use-window-font-color="true" loext:opacity="0%" style:font-name="DejaVu Serif" fo:font-size="12pt" fo:language="es" fo:country="CO" style:letter-kerning="true" style:font-name-asian="DejaVu Sans1" style:font-size-asian="10.5pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="DejaVu Sans1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN" fo:hyphenate="false" fo:hyphenation-remain-char-count="2" fo:hyphenation-push-char-count="2" loext:hyphenation-no-caps="false" loext:hyphenation-no-last-word="false" loext:hyphenation-word-char-count="5" loext:hyphenation-zone="no-limit"/> <style:text-properties style:use-window-font-color="true" loext:opacity="0%" style:font-name="DejaVu Serif" fo:font-size="12pt" fo:language="es" fo:country="CO" style:letter-kerning="true" style:font-name-asian="DejaVu Sans1" style:font-size-asian="10.5pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="DejaVu Sans1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN" fo:hyphenate="false" fo:hyphenation-remain-char-count="2" fo:hyphenation-push-char-count="2" loext:hyphenation-no-caps="false" loext:hyphenation-no-last-word="false" loext:hyphenation-word-char-count="5" loext:hyphenation-zone="no-limit"/>
</style:default-style> </style:default-style>
<style:default-style style:family="table"> <style:default-style style:family="table">
@ -176,17 +178,17 @@
</style:default-style> </style:default-style>
<style:style style:name="Standard" style:family="paragraph" style:class="text"/> <style:style style:name="Standard" style:family="paragraph" style:class="text"/>
<style:style style:name="Heading" style:family="paragraph" style:parent-style-name="Standard" style:next-style-name="Text_20_body" style:class="text"> <style:style style:name="Heading" style:family="paragraph" style:parent-style-name="Standard" style:next-style-name="Text_20_body" style:class="text">
<style:paragraph-properties fo:margin-top="0.423cm" fo:margin-bottom="0.212cm" style:contextual-spacing="false" fo:keep-with-next="always"/> <style:paragraph-properties fo:margin-top="0.1665in" fo:margin-bottom="0.0835in" style:contextual-spacing="false" fo:keep-with-next="always"/>
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="&apos;DejaVu Sans&apos;" style:font-family-generic="swiss" style:font-pitch="variable" fo:font-size="14pt" style:font-name-asian="DejaVu Sans1" style:font-family-asian="&apos;DejaVu Sans&apos;" style:font-family-generic-asian="system" style:font-pitch-asian="variable" style:font-size-asian="14pt" style:font-name-complex="DejaVu Sans1" style:font-family-complex="&apos;DejaVu Sans&apos;" style:font-family-generic-complex="system" style:font-pitch-complex="variable" style:font-size-complex="14pt"/> <style:text-properties style:font-name="DejaVu Sans" fo:font-family="&apos;DejaVu Sans&apos;" style:font-family-generic="swiss" style:font-pitch="variable" fo:font-size="14pt" style:font-name-asian="DejaVu Sans1" style:font-family-asian="&apos;DejaVu Sans&apos;" style:font-family-generic-asian="system" style:font-pitch-asian="variable" style:font-size-asian="14pt" style:font-name-complex="DejaVu Sans1" style:font-family-complex="&apos;DejaVu Sans&apos;" style:font-family-generic-complex="system" style:font-pitch-complex="variable" style:font-size-complex="14pt"/>
</style:style> </style:style>
<style:style style:name="Text_20_body" style:display-name="Text body" style:family="paragraph" style:parent-style-name="Standard" style:class="text"> <style:style style:name="Text_20_body" style:display-name="Text body" style:family="paragraph" style:parent-style-name="Standard" style:class="text">
<style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0cm" style:contextual-spacing="false" fo:line-height="100%"/> <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0in" style:contextual-spacing="false" fo:line-height="100%"/>
</style:style> </style:style>
<style:style style:name="List" style:family="paragraph" style:parent-style-name="Text_20_body" style:class="list"> <style:style style:name="List" style:family="paragraph" style:parent-style-name="Text_20_body" style:class="list">
<style:text-properties style:font-size-asian="12pt"/> <style:text-properties style:font-size-asian="12pt"/>
</style:style> </style:style>
<style:style style:name="Caption" style:family="paragraph" style:parent-style-name="Standard" style:class="extra"> <style:style style:name="Caption" style:family="paragraph" style:parent-style-name="Standard" style:class="extra">
<style:paragraph-properties fo:margin-top="0.212cm" fo:margin-bottom="0.212cm" style:contextual-spacing="false" text:number-lines="false" text:line-number="0"/> <style:paragraph-properties fo:margin-top="0.0835in" fo:margin-bottom="0.0835in" style:contextual-spacing="false" text:number-lines="false" text:line-number="0"/>
<style:text-properties fo:font-size="12pt" fo:font-style="italic" style:font-size-asian="12pt" style:font-style-asian="italic" style:font-size-complex="12pt" style:font-style-complex="italic"/> <style:text-properties fo:font-size="12pt" fo:font-style="italic" style:font-size-asian="12pt" style:font-style-asian="italic" style:font-size-complex="12pt" style:font-style-complex="italic"/>
</style:style> </style:style>
<style:style style:name="Index" style:family="paragraph" style:parent-style-name="Standard" style:class="index"> <style:style style:name="Index" style:family="paragraph" style:parent-style-name="Standard" style:class="index">
@ -196,16 +198,16 @@
<style:style style:name="Header_20_and_20_Footer" style:display-name="Header and Footer" style:family="paragraph" style:parent-style-name="Standard" style:class="extra"> <style:style style:name="Header_20_and_20_Footer" style:display-name="Header and Footer" style:family="paragraph" style:parent-style-name="Standard" style:class="extra">
<style:paragraph-properties text:number-lines="false" text:line-number="0"> <style:paragraph-properties text:number-lines="false" text:line-number="0">
<style:tab-stops> <style:tab-stops>
<style:tab-stop style:position="8.795cm" style:type="center"/> <style:tab-stop style:position="3.4626in" style:type="center"/>
<style:tab-stop style:position="17.59cm" style:type="right"/> <style:tab-stop style:position="6.9252in" style:type="right"/>
</style:tab-stops> </style:tab-stops>
</style:paragraph-properties> </style:paragraph-properties>
</style:style> </style:style>
<style:style style:name="Header" style:family="paragraph" style:parent-style-name="Header_20_and_20_Footer" style:class="extra"> <style:style style:name="Header" style:family="paragraph" style:parent-style-name="Header_20_and_20_Footer" style:class="extra">
<style:paragraph-properties text:number-lines="false" text:line-number="0"> <style:paragraph-properties text:number-lines="false" text:line-number="0">
<style:tab-stops> <style:tab-stops>
<style:tab-stop style:position="8.795cm" style:type="center"/> <style:tab-stop style:position="3.4626in" style:type="center"/>
<style:tab-stop style:position="17.59cm" style:type="right"/> <style:tab-stop style:position="6.9252in" style:type="right"/>
</style:tab-stops> </style:tab-stops>
</style:paragraph-properties> </style:paragraph-properties>
</style:style> </style:style>
@ -220,8 +222,8 @@
<style:style style:name="Footer" style:family="paragraph" style:parent-style-name="Standard" style:class="extra"> <style:style style:name="Footer" style:family="paragraph" style:parent-style-name="Standard" style:class="extra">
<style:paragraph-properties text:number-lines="false" text:line-number="0"> <style:paragraph-properties text:number-lines="false" text:line-number="0">
<style:tab-stops> <style:tab-stops>
<style:tab-stop style:position="8.795cm" style:type="center"/> <style:tab-stop style:position="3.4626in" style:type="center"/>
<style:tab-stop style:position="17.59cm" style:type="right"/> <style:tab-stop style:position="6.9252in" style:type="right"/>
</style:tab-stops> </style:tab-stops>
</style:paragraph-properties> </style:paragraph-properties>
<style:text-properties fo:font-size="9pt" style:font-size-asian="10.5pt"/> <style:text-properties fo:font-size="9pt" style:font-size-asian="10.5pt"/>
@ -234,7 +236,7 @@
<style:text-properties fo:font-size="14pt" fo:font-style="italic" fo:font-weight="bold" style:font-size-asian="14pt" style:font-style-asian="italic" style:font-weight-asian="bold" style:font-size-complex="14pt" style:font-style-complex="italic" style:font-weight-complex="bold"/> <style:text-properties fo:font-size="14pt" fo:font-style="italic" fo:font-weight="bold" style:font-size-asian="14pt" style:font-style-asian="italic" style:font-weight-asian="bold" style:font-size-complex="14pt" style:font-style-complex="italic" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="Subtitle" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="chapter"> <style:style style:name="Subtitle" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="chapter">
<style:paragraph-properties fo:margin-top="0.106cm" fo:margin-bottom="0.212cm" style:contextual-spacing="false" fo:text-align="center" style:justify-single-word="false"/> <style:paragraph-properties fo:margin-top="0.0417in" fo:margin-bottom="0.0835in" style:contextual-spacing="false" fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties fo:font-size="18pt" style:font-size-asian="18pt" style:font-size-complex="18pt"/> <style:text-properties fo:font-size="18pt" style:font-size-asian="18pt" style:font-size-complex="18pt"/>
</style:style> </style:style>
<style:style style:name="Title" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="chapter"> <style:style style:name="Title" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="chapter">
@ -242,10 +244,10 @@
<style:text-properties fo:font-size="28pt" fo:font-weight="bold" style:font-size-asian="28pt" style:font-weight-asian="bold" style:font-size-complex="28pt" style:font-weight-complex="bold"/> <style:text-properties fo:font-size="28pt" fo:font-weight="bold" style:font-size-asian="28pt" style:font-weight-asian="bold" style:font-size-complex="28pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="Quotations" style:family="paragraph" style:parent-style-name="Standard" style:class="html"> <style:style style:name="Quotations" style:family="paragraph" style:parent-style-name="Standard" style:class="html">
<style:paragraph-properties fo:margin-left="1cm" fo:margin-right="1cm" fo:margin-top="0cm" fo:margin-bottom="0.499cm" style:contextual-spacing="false" fo:text-indent="0cm" style:auto-text-indent="false"/> <style:paragraph-properties fo:margin-left="0.3937in" fo:margin-right="0.3937in" fo:margin-top="0in" fo:margin-bottom="0.1965in" style:contextual-spacing="false" fo:text-indent="0in" style:auto-text-indent="false"/>
</style:style> </style:style>
<style:style style:name="Text_20_body_20_indent" style:display-name="Text body indent" style:family="paragraph" style:parent-style-name="Text_20_body" style:class="text"> <style:style style:name="Text_20_body_20_indent" style:display-name="Text body indent" style:family="paragraph" style:parent-style-name="Text_20_body" style:class="text">
<style:paragraph-properties fo:margin-left="0.499cm" fo:margin-right="0cm" fo:text-indent="0cm" style:auto-text-indent="false"/> <style:paragraph-properties fo:margin-left="0.1965in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
</style:style> </style:style>
<style:style style:name="Heading_20_3" style:display-name="Heading 3" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="text"> <style:style style:name="Heading_20_3" style:display-name="Heading 3" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="text">
<style:text-properties fo:font-size="14pt" fo:font-weight="bold" style:font-size-asian="14pt" style:font-weight-asian="bold" style:font-size-complex="14pt" style:font-weight-complex="bold"/> <style:text-properties fo:font-size="14pt" fo:font-weight="bold" style:font-size-asian="14pt" style:font-weight-asian="bold" style:font-size-complex="14pt" style:font-weight-complex="bold"/>
@ -260,10 +262,10 @@
<style:text-properties style:font-name="StarSymbol" fo:font-family="StarSymbol" fo:font-size="9pt" style:font-name-asian="StarSymbol" style:font-family-asian="StarSymbol" style:font-size-asian="9pt" style:font-name-complex="StarSymbol" style:font-family-complex="StarSymbol" style:font-size-complex="9pt"/> <style:text-properties style:font-name="StarSymbol" fo:font-family="StarSymbol" fo:font-size="9pt" style:font-name-asian="StarSymbol" style:font-family-asian="StarSymbol" style:font-size-asian="9pt" style:font-name-complex="StarSymbol" style:font-family-complex="StarSymbol" style:font-size-complex="9pt"/>
</style:style> </style:style>
<style:style style:name="Graphics" style:family="graphic"> <style:style style:name="Graphics" style:family="graphic">
<style:graphic-properties text:anchor-type="paragraph" svg:x="0cm" svg:y="0cm" style:wrap="dynamic" style:number-wrapped-paragraphs="no-limit" style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph" style:horizontal-pos="center" style:horizontal-rel="paragraph"/> <style:graphic-properties text:anchor-type="paragraph" svg:x="0in" svg:y="0in" style:wrap="dynamic" style:number-wrapped-paragraphs="no-limit" style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph" style:horizontal-pos="center" style:horizontal-rel="paragraph" draw:fill="none"/>
</style:style> </style:style>
<style:style style:name="Frame" style:family="graphic"> <style:style style:name="Frame" style:family="graphic">
<style:graphic-properties text:anchor-type="paragraph" svg:x="0cm" svg:y="0cm" fo:margin-left="0.201cm" fo:margin-right="0.201cm" fo:margin-top="0.201cm" fo:margin-bottom="0.201cm" style:wrap="parallel" style:number-wrapped-paragraphs="no-limit" style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph-content" style:horizontal-pos="center" style:horizontal-rel="paragraph-content" fo:padding="0.15cm" fo:border="0.06pt solid #000000"/> <style:graphic-properties text:anchor-type="paragraph" svg:x="0in" svg:y="0in" fo:margin-left="0.0791in" fo:margin-right="0.0791in" fo:margin-top="0.0791in" fo:margin-bottom="0.0791in" style:wrap="parallel" style:number-wrapped-paragraphs="no-limit" style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph-content" style:horizontal-pos="center" style:horizontal-rel="paragraph-content" draw:fill="none" fo:padding="0.0591in" fo:border="0.06pt solid #000000"/>
</style:style> </style:style>
<text:outline-style style:name="Outline"> <text:outline-style style:name="Outline">
<text:outline-level-style text:level="1" loext:num-list-format="%1%" style:num-format=""> <text:outline-level-style text:level="1" loext:num-list-format="%1%" style:num-format="">
@ -319,17 +321,17 @@
</text:outline-style> </text:outline-style>
<text:notes-configuration text:note-class="footnote" style:num-format="1" text:start-value="0" text:footnotes-position="page" text:start-numbering-at="document"/> <text:notes-configuration text:note-class="footnote" style:num-format="1" text:start-value="0" text:footnotes-position="page" text:start-numbering-at="document"/>
<text:notes-configuration text:note-class="endnote" style:num-format="i" text:start-value="0"/> <text:notes-configuration text:note-class="endnote" style:num-format="i" text:start-value="0"/>
<text:linenumbering-configuration text:number-lines="false" text:offset="0.499cm" style:num-format="1" text:number-position="left" text:increment="5"/> <text:linenumbering-configuration text:number-lines="false" text:offset="0.1965in" style:num-format="1" text:number-position="left" text:increment="5"/>
<number:currency-style style:name="N108P0" style:volatile="true"> <number:currency-style style:name="N130P0" style:volatile="true">
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol> <number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> <number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
</number:currency-style> </number:currency-style>
<number:currency-style style:name="N108"> <number:currency-style style:name="N130">
<style:text-properties fo:color="#ff0000"/> <style:text-properties fo:color="#ff0000"/>
<number:text>-</number:text> <number:text>-</number:text>
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol> <number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> <number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
<style:map style:condition="value()&gt;=0" style:apply-style-name="N108P0"/> <style:map style:condition="value()&gt;=0" style:apply-style-name="N130P0"/>
</number:currency-style> </number:currency-style>
<style:default-page-layout> <style:default-page-layout>
<style:page-layout-properties style:writing-mode="lr-tb" style:layout-grid-standard-mode="true"/> <style:page-layout-properties style:writing-mode="lr-tb" style:layout-grid-standard-mode="true"/>
@ -337,99 +339,99 @@
</office:styles> </office:styles>
<office:automatic-styles> <office:automatic-styles>
<style:style style:name="Tabla1" style:family="table"> <style:style style:name="Tabla1" style:family="table">
<style:table-properties style:width="19.988cm" table:align="margins"/> <style:table-properties style:width="7.8694in" table:align="margins"/>
</style:style> </style:style>
<style:style style:name="Tabla1.A" style:family="table-column"> <style:style style:name="Tabla1.A" style:family="table-column">
<style:table-column-properties style:column-width="9.994cm" style:rel-column-width="32767*"/> <style:table-column-properties style:column-width="3.9347in" style:rel-column-width="32767*"/>
</style:style> </style:style>
<style:style style:name="Tabla1.B" style:family="table-column"> <style:style style:name="Tabla1.B" style:family="table-column">
<style:table-column-properties style:column-width="9.994cm" style:rel-column-width="32768*"/> <style:table-column-properties style:column-width="3.9347in" style:rel-column-width="32768*"/>
</style:style> </style:style>
<style:style style:name="Tabla1.1" style:family="table-row"> <style:style style:name="Tabla1.1" style:family="table-row">
<style:table-row-properties style:min-row-height="2.101cm"/> <style:table-row-properties style:min-row-height="0.8271in"/>
</style:style> </style:style>
<style:style style:name="Tabla1.A1" style:family="table-cell"> <style:style style:name="Tabla1.A1" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border="none"/> <style:table-cell-properties fo:padding="0.0382in" fo:border="none"/>
</style:style> </style:style>
<style:style style:name="Tabla1.B1" style:family="table-cell"> <style:style style:name="Tabla1.B1" style:family="table-cell">
<style:table-cell-properties style:vertical-align="middle" fo:padding="0.097cm" fo:border="none"/> <style:table-cell-properties style:vertical-align="middle" fo:padding="0.0382in" fo:border="none"/>
</style:style> </style:style>
<style:style style:name="Tabla1" style:family="table"> <style:style style:name="Tabla1" style:family="table">
<style:table-properties style:width="19.988cm" table:align="margins"/> <style:table-properties style:width="7.8694in" table:align="margins"/>
</style:style> </style:style>
<style:style style:name="Tabla1.A" style:family="table-column"> <style:style style:name="Tabla1.A" style:family="table-column">
<style:table-column-properties style:column-width="9.994cm" style:rel-column-width="32767*"/> <style:table-column-properties style:column-width="3.9347in" style:rel-column-width="32767*"/>
</style:style> </style:style>
<style:style style:name="Tabla1.B" style:family="table-column"> <style:style style:name="Tabla1.B" style:family="table-column">
<style:table-column-properties style:column-width="9.994cm" style:rel-column-width="32768*"/> <style:table-column-properties style:column-width="3.9347in" style:rel-column-width="32768*"/>
</style:style> </style:style>
<style:style style:name="Tabla1.1" style:family="table-row"> <style:style style:name="Tabla1.1" style:family="table-row">
<style:table-row-properties style:min-row-height="2.101cm"/> <style:table-row-properties style:min-row-height="0.8271in"/>
</style:style> </style:style>
<style:style style:name="Tabla1.A1" style:family="table-cell"> <style:style style:name="Tabla1.A1" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border="none"/> <style:table-cell-properties fo:padding="0.0382in" fo:border="none"/>
</style:style> </style:style>
<style:style style:name="Tabla1.B1" style:family="table-cell"> <style:style style:name="Tabla1.B1" style:family="table-cell">
<style:table-cell-properties style:vertical-align="middle" fo:padding="0.097cm" fo:border="none"/> <style:table-cell-properties style:vertical-align="middle" fo:padding="0.0382in" fo:border="none"/>
</style:style> </style:style>
<style:style style:name="Tabla5" style:family="table"> <style:style style:name="Tabla5" style:family="table">
<style:table-properties style:width="19.988cm" table:align="margins" style:writing-mode="lr-tb"/> <style:table-properties style:width="7.8694in" table:align="margins" style:writing-mode="lr-tb"/>
</style:style> </style:style>
<style:style style:name="Tabla5.A" style:family="table-column"> <style:style style:name="Tabla5.A" style:family="table-column">
<style:table-column-properties style:column-width="9.994cm" style:rel-column-width="32767*"/> <style:table-column-properties style:column-width="3.9347in" style:rel-column-width="32767*"/>
</style:style> </style:style>
<style:style style:name="Tabla5.B" style:family="table-column"> <style:style style:name="Tabla5.B" style:family="table-column">
<style:table-column-properties style:column-width="9.994cm" style:rel-column-width="32768*"/> <style:table-column-properties style:column-width="3.9347in" style:rel-column-width="32768*"/>
</style:style> </style:style>
<style:style style:name="Tabla5.A1" style:family="table-cell"> <style:style style:name="Tabla5.A1" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border="none"/> <style:table-cell-properties fo:padding="0.0382in" fo:border="none"/>
</style:style> </style:style>
<style:style style:name="Tabla4" style:family="table"> <style:style style:name="Tabla4" style:family="table">
<style:table-properties style:width="19.988cm" table:align="margins" style:writing-mode="lr-tb"/> <style:table-properties style:width="7.8694in" table:align="margins" style:writing-mode="lr-tb"/>
</style:style> </style:style>
<style:style style:name="Tabla4.A" style:family="table-column"> <style:style style:name="Tabla4.A" style:family="table-column">
<style:table-column-properties style:column-width="9.994cm" style:rel-column-width="32767*"/> <style:table-column-properties style:column-width="3.9347in" style:rel-column-width="32767*"/>
</style:style> </style:style>
<style:style style:name="Tabla4.B" style:family="table-column"> <style:style style:name="Tabla4.B" style:family="table-column">
<style:table-column-properties style:column-width="9.994cm" style:rel-column-width="32768*"/> <style:table-column-properties style:column-width="3.9347in" style:rel-column-width="32768*"/>
</style:style> </style:style>
<style:style style:name="Tabla4.A1" style:family="table-cell"> <style:style style:name="Tabla4.A1" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border="none"/> <style:table-cell-properties fo:padding="0.0382in" fo:border="none"/>
</style:style> </style:style>
<style:style style:name="Tabla3" style:family="table"> <style:style style:name="Tabla3" style:family="table">
<style:table-properties style:width="19.988cm" table:align="margins" style:writing-mode="lr-tb"/> <style:table-properties style:width="7.8694in" table:align="margins" style:writing-mode="lr-tb"/>
</style:style> </style:style>
<style:style style:name="Tabla3.A" style:family="table-column"> <style:style style:name="Tabla3.A" style:family="table-column">
<style:table-column-properties style:column-width="9.994cm" style:rel-column-width="32767*"/> <style:table-column-properties style:column-width="3.9347in" style:rel-column-width="32767*"/>
</style:style> </style:style>
<style:style style:name="Tabla3.B" style:family="table-column"> <style:style style:name="Tabla3.B" style:family="table-column">
<style:table-column-properties style:column-width="9.994cm" style:rel-column-width="32768*"/> <style:table-column-properties style:column-width="3.9347in" style:rel-column-width="32768*"/>
</style:style> </style:style>
<style:style style:name="Tabla3.A1" style:family="table-cell"> <style:style style:name="Tabla3.A1" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border="none"/> <style:table-cell-properties fo:padding="0.0382in" fo:border="none"/>
</style:style> </style:style>
<style:style style:name="Table1" style:family="table"> <style:style style:name="Table1" style:family="table">
<style:table-properties style:width="19.988cm" fo:break-before="auto" fo:break-after="auto" table:align="margins" fo:background-color="transparent" fo:keep-with-next="auto" style:may-break-between-rows="true" style:writing-mode="lr-tb"> <style:table-properties style:width="7.8694in" fo:break-before="auto" fo:break-after="auto" table:align="margins" fo:background-color="transparent" fo:keep-with-next="auto" style:may-break-between-rows="true" style:writing-mode="lr-tb">
<style:background-image/> <style:background-image/>
</style:table-properties> </style:table-properties>
</style:style> </style:style>
<style:style style:name="Table1.A" style:family="table-column"> <style:style style:name="Table1.A" style:family="table-column">
<style:table-column-properties style:column-width="6.662cm" style:rel-column-width="21845*"/> <style:table-column-properties style:column-width="2.6229in" style:rel-column-width="21845*"/>
</style:style> </style:style>
<style:style style:name="Table1.B" style:family="table-column"> <style:style style:name="Table1.B" style:family="table-column">
<style:table-column-properties style:column-width="3.332cm" style:rel-column-width="10922*"/> <style:table-column-properties style:column-width="1.3118in" style:rel-column-width="10922*"/>
</style:style> </style:style>
<style:style style:name="Table1.C" style:family="table-column"> <style:style style:name="Table1.C" style:family="table-column">
<style:table-column-properties style:column-width="9.994cm" style:rel-column-width="32768*"/> <style:table-column-properties style:column-width="3.9347in" style:rel-column-width="32768*"/>
</style:style> </style:style>
<style:style style:name="Table1.A1" style:family="table-cell"> <style:style style:name="Table1.A1" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border="0.5pt solid #000000"/> <style:table-cell-properties fo:padding="0.0382in" fo:border="0.5pt solid #000000"/>
</style:style> </style:style>
<style:style style:name="Table1.A2" style:family="table-cell"> <style:style style:name="Table1.A2" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.5pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/> <style:table-cell-properties fo:padding="0.0382in" fo:border-left="0.5pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/>
</style:style> </style:style>
<style:style style:name="Table1.C2" style:family="table-cell"> <style:style style:name="Table1.C2" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.5pt solid #000000" fo:border-right="0.5pt solid #000000" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/> <style:table-cell-properties fo:padding="0.0382in" fo:border-left="0.5pt solid #000000" fo:border-right="0.5pt solid #000000" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/>
</style:style> </style:style>
<style:style style:name="Table1.3" style:family="table-row"> <style:style style:name="Table1.3" style:family="table-row">
<style:table-row-properties fo:background-color="transparent" fo:keep-together="auto"> <style:table-row-properties fo:background-color="transparent" fo:keep-together="auto">
@ -437,20 +439,20 @@
</style:table-row-properties> </style:table-row-properties>
</style:style> </style:style>
<style:style style:name="Table1.C3" style:family="table-cell"> <style:style style:name="Table1.C3" style:family="table-cell">
<style:table-cell-properties style:vertical-align="" fo:background-color="transparent" fo:padding="0.097cm" fo:border-left="0.5pt solid #000000" fo:border-right="0.5pt solid #000000" fo:border-top="none" fo:border-bottom="0.5pt solid #000000" style:writing-mode="page"> <style:table-cell-properties style:vertical-align="" fo:background-color="transparent" fo:padding="0.0382in" fo:border-left="0.5pt solid #000000" fo:border-right="0.5pt solid #000000" fo:border-top="none" fo:border-bottom="0.5pt solid #000000" style:writing-mode="page">
<style:background-image/> <style:background-image/>
</style:table-cell-properties> </style:table-cell-properties>
</style:style> </style:style>
<style:style style:name="Table1.11" style:family="table-row"> <style:style style:name="Table1.11" style:family="table-row">
<style:table-row-properties style:min-row-height="0.639cm"/> <style:table-row-properties style:min-row-height="0.2514in"/>
</style:style> </style:style>
<style:style style:name="Table1.12" style:family="table-row"> <style:style style:name="Table1.12" style:family="table-row">
<style:table-row-properties style:min-row-height="0.639cm" fo:background-color="transparent"> <style:table-row-properties style:min-row-height="0.2514in" fo:background-color="transparent">
<style:background-image/> <style:background-image/>
</style:table-row-properties> </style:table-row-properties>
</style:style> </style:style>
<style:style style:name="Table1.A12" style:family="table-cell"> <style:style style:name="Table1.A12" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border="none"/> <style:table-cell-properties fo:padding="0.0382in" fo:border="none"/>
</style:style> </style:style>
<style:style style:name="P1" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P1" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/> <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
@ -469,7 +471,7 @@
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="7pt" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-size-complex="7pt"/> <style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="7pt" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style> </style:style>
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P5" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="7pt" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-size-complex="7pt"/> <style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="7pt" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style> </style:style>
<style:style style:name="P6" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P6" style:family="paragraph" style:parent-style-name="Header">
@ -485,7 +487,7 @@
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-type="double" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/> <style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-type="double" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P9" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P9" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-style-complex="normal" style:font-weight-complex="normal"/> <style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="P10" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P10" style:family="paragraph" style:parent-style-name="Header">
@ -501,7 +503,7 @@
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="7pt" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-size-complex="7pt"/> <style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="7pt" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style> </style:style>
<style:style style:name="P13" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P13" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="7pt" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-size-complex="7pt"/> <style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="7pt" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style> </style:style>
<style:style style:name="P14" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P14" style:family="paragraph" style:parent-style-name="Header">
@ -517,7 +519,7 @@
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-type="double" style:text-underline-width="auto" style:text-underline-color="font-color" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-size-complex="7pt"/> <style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-type="double" style:text-underline-width="auto" style:text-underline-color="font-color" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style> </style:style>
<style:style style:name="P17" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P17" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt"/> <style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt"/>
</style:style> </style:style>
<style:style style:name="P18" style:family="paragraph" style:parent-style-name="Text_20_body"> <style:style style:name="P18" style:family="paragraph" style:parent-style-name="Text_20_body">
@ -681,7 +683,7 @@
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-type="double" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/> <style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-type="double" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P59" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P59" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-style-complex="normal" style:font-weight-complex="normal"/> <style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="P60" style:family="paragraph" style:parent-style-name="Frame_20_contents"> <style:style style:name="P60" style:family="paragraph" style:parent-style-name="Frame_20_contents">
@ -826,6 +828,22 @@
<style:style style:name="P95" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P95" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties officeooo:paragraph-rsid="00259970"/> <style:text-properties officeooo:paragraph-rsid="00259970"/>
</style:style> </style:style>
<style:style style:name="P96" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="002c8283" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P97" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="002c8283" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P98" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00061322" officeooo:paragraph-rsid="0026a44f" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P99" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="0026a44f" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style>
<style:style style:name="T1" style:family="text"> <style:style style:name="T1" style:family="text">
<style:text-properties fo:color="#333333" loext:opacity="100%" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-weight-asian="bold" style:font-weight-complex="bold"/> <style:text-properties fo:color="#333333" loext:opacity="100%" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style> </style:style>
@ -929,19 +947,19 @@
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00061322" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-weight-complex="normal" style:text-emphasize="none"/> <style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00061322" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-weight-complex="normal" style:text-emphasize="none"/>
</style:style> </style:style>
<style:style style:name="T35" style:family="text"> <style:style style:name="T35" style:family="text">
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:letter-spacing="-0.012cm" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" style:font-style-asian="normal" style:text-emphasize="none"/> <style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:letter-spacing="-0.0047in" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" style:font-style-asian="normal" style:text-emphasize="none"/>
</style:style> </style:style>
<style:style style:name="T36" style:family="text"> <style:style style:name="T36" style:family="text">
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:letter-spacing="0.005cm" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" style:font-style-asian="normal" style:text-emphasize="none"/> <style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:letter-spacing="0.002in" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" style:font-style-asian="normal" style:text-emphasize="none"/>
</style:style> </style:style>
<style:style style:name="T37" style:family="text"> <style:style style:name="T37" style:family="text">
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:letter-spacing="-0.018cm" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" style:font-style-asian="normal" style:text-emphasize="none"/> <style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:letter-spacing="-0.0071in" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" style:font-style-asian="normal" style:text-emphasize="none"/>
</style:style> </style:style>
<style:style style:name="T38" style:family="text"> <style:style style:name="T38" style:family="text">
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:letter-spacing="0.011cm" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" style:font-style-asian="normal" style:text-emphasize="none"/> <style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:letter-spacing="0.0043in" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" style:font-style-asian="normal" style:text-emphasize="none"/>
</style:style> </style:style>
<style:style style:name="T39" style:family="text"> <style:style style:name="T39" style:family="text">
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:letter-spacing="-0.019cm" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" style:font-style-asian="normal" style:text-emphasize="none"/> <style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:letter-spacing="-0.0075in" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" style:font-style-asian="normal" style:text-emphasize="none"/>
</style:style> </style:style>
<style:style style:name="T40" style:family="text"> <style:style style:name="T40" style:family="text">
<style:text-properties officeooo:rsid="000669cd"/> <style:text-properties officeooo:rsid="000669cd"/>
@ -986,19 +1004,19 @@
<style:text-properties fo:font-size="10pt" officeooo:rsid="000cde7f" style:font-size-asian="10pt" style:font-size-complex="10pt"/> <style:text-properties fo:font-size="10pt" officeooo:rsid="000cde7f" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style> </style:style>
<style:style style:name="fr1" style:family="graphic" style:parent-style-name="Graphics"> <style:style style:name="fr1" style:family="graphic" style:parent-style-name="Graphics">
<style:graphic-properties style:vertical-pos="from-top" style:horizontal-pos="from-left" style:horizontal-rel="paragraph" style:mirror="none" fo:clip="rect(0cm, 0cm, 0cm, 0cm)" draw:luminance="0%" draw:contrast="0%" draw:red="0%" draw:green="0%" draw:blue="0%" draw:gamma="100%" draw:color-inversion="false" draw:image-opacity="100%" draw:color-mode="standard"/> <style:graphic-properties style:vertical-pos="from-top" style:horizontal-pos="from-left" style:horizontal-rel="paragraph" style:mirror="none" fo:clip="rect(0in, 0in, 0in, 0in)" draw:luminance="0%" draw:contrast="0%" draw:red="0%" draw:green="0%" draw:blue="0%" draw:gamma="100%" draw:color-inversion="false" draw:image-opacity="100%" draw:color-mode="standard"/>
</style:style> </style:style>
<style:style style:name="fr2" style:family="graphic" style:parent-style-name="Frame"> <style:style style:name="fr2" style:family="graphic" style:parent-style-name="Frame">
<style:graphic-properties style:run-through="foreground" style:wrap="parallel" style:number-wrapped-paragraphs="no-limit" style:vertical-pos="middle" style:vertical-rel="baseline" style:horizontal-pos="from-left" style:horizontal-rel="paragraph" fo:padding="0.15cm" fo:border="none" draw:wrap-influence-on-position="once-concurrent" loext:allow-overlap="true"> <style:graphic-properties style:run-through="foreground" style:wrap="parallel" style:number-wrapped-paragraphs="no-limit" style:vertical-pos="middle" style:vertical-rel="baseline" style:horizontal-pos="from-left" style:horizontal-rel="paragraph" fo:padding="0.0591in" fo:border="none" draw:wrap-influence-on-position="once-concurrent" loext:allow-overlap="true">
<style:columns fo:column-count="1" fo:column-gap="0cm"/> <style:columns fo:column-count="1" fo:column-gap="0in"/>
</style:graphic-properties> </style:graphic-properties>
</style:style> </style:style>
<style:page-layout style:name="pm1"> <style:page-layout style:name="pm1">
<style:page-layout-properties fo:page-width="21.59cm" fo:page-height="27.94cm" style:num-format="1" style:print-orientation="portrait" fo:margin-top="0.801cm" fo:margin-bottom="0.801cm" fo:margin-left="0.801cm" fo:margin-right="0.801cm" style:writing-mode="lr-tb" style:layout-grid-color="#c0c0c0" style:layout-grid-lines="44" style:layout-grid-base-height="0.55cm" style:layout-grid-ruby-height="0cm" style:layout-grid-mode="none" style:layout-grid-ruby-below="false" style:layout-grid-print="true" style:layout-grid-display="true" style:layout-grid-base-width="0.37cm" style:layout-grid-snap-to="true" style:footnote-max-height="0cm" loext:margin-gutter="0cm"> <style:page-layout-properties fo:page-width="8.5in" fo:page-height="11in" style:num-format="1" style:print-orientation="portrait" fo:margin-top="0.3154in" fo:margin-bottom="0.3154in" fo:margin-left="0.3154in" fo:margin-right="0.3154in" style:writing-mode="lr-tb" style:layout-grid-color="#c0c0c0" style:layout-grid-lines="44" style:layout-grid-base-height="0.2165in" style:layout-grid-ruby-height="0in" style:layout-grid-mode="none" style:layout-grid-ruby-below="false" style:layout-grid-print="true" style:layout-grid-display="true" style:layout-grid-base-width="0.1457in" style:layout-grid-snap-to="true" style:footnote-max-height="0in" loext:margin-gutter="0in">
<style:footnote-sep style:width="0.018cm" style:distance-before-sep="0.101cm" style:distance-after-sep="0.101cm" style:line-style="solid" style:adjustment="left" style:rel-width="25%" style:color="#000000"/> <style:footnote-sep style:width="0.0071in" style:distance-before-sep="0.0398in" style:distance-after-sep="0.0398in" style:line-style="solid" style:adjustment="left" style:rel-width="25%" style:color="#000000"/>
</style:page-layout-properties> </style:page-layout-properties>
<style:header-style> <style:header-style>
<style:header-footer-properties fo:min-height="0cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-bottom="0.499cm" fo:background-color="transparent" draw:fill="none" draw:fill-color="#729fcf"/> <style:header-footer-properties fo:min-height="0in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-bottom="0.1965in" fo:background-color="transparent" draw:fill="none" draw:fill-color="#729fcf"/>
</style:header-style> </style:header-style>
<style:footer-style/> <style:footer-style/>
</style:page-layout> </style:page-layout>
@ -1014,7 +1032,7 @@
<table:table-column table:style-name="Tabla1.B"/> <table:table-column table:style-name="Tabla1.B"/>
<table:table-row table:style-name="Tabla1.1"> <table:table-row table:style-name="Tabla1.1">
<table:table-cell table:style-name="Tabla1.A1" office:value-type="string"> <table:table-cell table:style-name="Tabla1.A1" office:value-type="string">
<text:p text:style-name="Table_20_Contents"><draw:frame draw:style-name="fr1" draw:name="Imagen1" text:anchor-type="as-char" svg:y="-0.501cm" svg:width="5.445cm" svg:height="1.399cm" draw:z-index="4"><draw:image draw:mime-type="image/jpeg"> <text:p text:style-name="Table_20_Contents"><draw:frame draw:style-name="fr1" draw:name="Imagen1" text:anchor-type="as-char" svg:y="-0.1972in" svg:width="2.1437in" svg:height="0.5508in" draw:z-index="4"><draw:image draw:mime-type="image/jpeg">
<office:binary-data>/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoM <office:binary-data>/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoM
DAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRT/2wBDAQMEBAUEBQkFBQkUDQsN DAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRT/2wBDAQMEBAUEBQkFBQkUDQsN
FBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBT/wAAR FBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBT/wAAR
@ -1659,9 +1677,9 @@
<text:p text:style-name="P50"><text:span text:style-name="T49">Tipo</text:span><text:span text:style-name="T47">: </text:span><text:span text:style-name="T44">n/a</text:span></text:p> <text:p text:style-name="P50"><text:span text:style-name="T49">Tipo</text:span><text:span text:style-name="T47">: </text:span><text:span text:style-name="T44">n/a</text:span></text:p>
<text:p text:style-name="P49"><text:placeholder text:placeholder-type="text">&lt;/otherwise&gt;</text:placeholder></text:p> <text:p text:style-name="P49"><text:placeholder text:placeholder-type="text">&lt;/otherwise&gt;</text:placeholder></text:p>
<text:p text:style-name="P81"><text:placeholder text:placeholder-type="text">&lt;/choose&gt;</text:placeholder></text:p> <text:p text:style-name="P81"><text:placeholder text:placeholder-type="text">&lt;/choose&gt;</text:placeholder></text:p>
<text:p text:style-name="P46"><text:placeholder text:placeholder-type="text">&lt;choose test=&quot;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P46"><text:soft-page-break/><text:placeholder text:placeholder-type="text">&lt;choose test=&quot;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P46"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;equipment.equipment.use == &apos;medico&apos;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P46"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;equipment.equipment.use == &apos;medico&apos;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P45"><text:soft-page-break/><text:span text:style-name="T47">Uso:</text:span> Médico</text:p> <text:p text:style-name="P45"><text:span text:style-name="T47">Uso:</text:span> Médico</text:p>
<text:p text:style-name="P51"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p> <text:p text:style-name="P51"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p>
<text:p text:style-name="P46"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;equipment.equipment.use == &apos;basico&apos;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P46"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;equipment.equipment.use == &apos;basico&apos;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P46"><text:span text:style-name="T47">Uso:</text:span> Básico</text:p> <text:p text:style-name="P46"><text:span text:style-name="T47">Uso:</text:span> Básico</text:p>
@ -1786,18 +1804,19 @@
<text:p text:style-name="P43"><text:span text:style-name="T28"><text:placeholder text:placeholder-type="text">&lt;equipment.equipment.maintenance_frequency&gt;</text:placeholder></text:span><text:span text:style-name="T28"><text:s/></text:span><text:span text:style-name="T29">Meses</text:span></text:p> <text:p text:style-name="P43"><text:span text:style-name="T28"><text:placeholder text:placeholder-type="text">&lt;equipment.equipment.maintenance_frequency&gt;</text:placeholder></text:span><text:span text:style-name="T28"><text:s/></text:span><text:span text:style-name="T29">Meses</text:span></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
<text:soft-page-break/>
<table:table-row table:style-name="Table1.12"> <table:table-row table:style-name="Table1.12">
<table:table-cell table:style-name="Table1.A12" table:number-columns-spanned="3" office:value-type="string"> <table:table-cell table:style-name="Table1.A12" table:number-columns-spanned="3" office:value-type="string">
<text:p text:style-name="P35"><draw:frame draw:style-name="fr2" draw:name="image: (equipment.equipment.product.images[0].image, &apos;image/jpg&apos;)" text:anchor-type="as-char" svg:width="3.501cm" svg:height="3.501cm" draw:z-index="0"> <text:p text:style-name="P35"><draw:frame draw:style-name="fr2" draw:name="image: (equipment.equipment.product.images[0].image, &apos;image/jpg&apos;)" text:anchor-type="as-char" svg:width="1.3783in" svg:height="1.3783in" draw:z-index="0">
<draw:text-box> <draw:text-box>
<text:p text:style-name="P60"/> <text:p text:style-name="P60"/>
<text:p text:style-name="Text">Texto <text:sequence text:ref-name="refText0" text:name="Text" text:formula="ooow:Text+1" style:num-format="1">1</text:sequence>: </text:p> <text:p text:style-name="Text">Texto <text:sequence text:ref-name="refText0" text:name="Text" text:formula="ooow:Text+1" style:num-format="1">1</text:sequence>: </text:p>
</draw:text-box> </draw:text-box>
</draw:frame></text:p> </draw:frame></text:p>
<text:p text:style-name="P73"/>
<text:p text:style-name="P73">El equipo funciona cumpliendo los parámetros establecidos por el fabricante</text:p> <text:p text:style-name="P73">El equipo funciona cumpliendo los parámetros establecidos por el fabricante</text:p>
<text:p text:style-name="P77">ANTHONY STIVEN RODRIGUEZ FONSECA</text:p> <text:p text:style-name="P77"/>
<text:p text:style-name="P76">INVIMA : RH-202208-01301</text:p> <text:p text:style-name="P96"><text:span text:style-name="T51"><text:placeholder text:placeholder-type="text" text:description="equipment.technician_responsible">&lt;equipment.technician_responsible&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P97">INVIMA : <text:span text:style-name="T51"><text:placeholder text:placeholder-type="text" text:description="equipment.invima">&lt;equipment.invima&gt;</text:placeholder></text:span></text:p>
</table:table-cell> </table:table-cell>
<table:covered-table-cell/> <table:covered-table-cell/>
<table:covered-table-cell/> <table:covered-table-cell/>

View File

@ -1,142 +1,144 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text"> <office:document xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:creation-date>2022-10-25T06:02:43.829301281</meta:creation-date><dc:date>2023-05-14T22:57:29.738547886</dc:date><meta:editing-duration>PT6H5M27S</meta:editing-duration><meta:editing-cycles>72</meta:editing-cycles><meta:generator>LibreOffice/7.4.6.2$Linux_X86_64 LibreOffice_project/40$Build-2</meta:generator><meta:document-statistic meta:table-count="5" meta:image-count="1" meta:object-count="0" meta:page-count="3" meta:paragraph-count="129" meta:word-count="411" meta:character-count="4425" meta:non-whitespace-character-count="4138"/></office:meta> <office:meta><meta:creation-date>2022-10-25T06:02:43.829301281</meta:creation-date><dc:date>2023-09-24T21:46:15.542111557</dc:date><meta:editing-duration>PT6H6M29S</meta:editing-duration><meta:editing-cycles>73</meta:editing-cycles><meta:generator>LibreOffice/7.5.6.2$Linux_X86_64 LibreOffice_project/50$Build-2</meta:generator><meta:document-statistic meta:table-count="5" meta:image-count="1" meta:object-count="0" meta:page-count="3" meta:paragraph-count="129" meta:word-count="408" meta:character-count="4444" meta:non-whitespace-character-count="4161"/></office:meta>
<office:settings> <office:settings>
<config:config-item-set config:name="ooo:view-settings"> <config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">7407</config:config-item> <config:config-item config:name="ViewAreaTop" config:type="long">68790</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item> <config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">35003</config:config-item> <config:config-item config:name="ViewAreaWidth" config:type="long">35003</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">15688</config:config-item> <config:config-item config:name="ViewAreaHeight" config:type="long">16425</config:config-item>
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item> <config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item> <config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="Views"> <config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry> <config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item> <config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">21488</config:config-item> <config:config-item config:name="ViewLeft" config:type="long">8948</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">18754</config:config-item> <config:config-item config:name="ViewTop" config:type="long">78482</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item> <config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">7407</config:config-item> <config:config-item config:name="VisibleTop" config:type="long">68790</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">35001</config:config-item> <config:config-item config:name="VisibleRight" config:type="long">35001</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">23093</config:config-item> <config:config-item config:name="VisibleBottom" config:type="long">85213</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item> <config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns" config:type="short">1</config:config-item> <config:config-item config:name="ViewLayoutColumns" config:type="short">1</config:config-item>
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item> <config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">140</config:config-item> <config:config-item config:name="ZoomFactor" config:type="short">140</config:config-item>
<config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item> <config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item>
<config:config-item config:name="KeepRatio" config:type="boolean">false</config:config-item> <config:config-item config:name="KeepRatio" config:type="boolean">false</config:config-item>
<config:config-item config:name="HideWhitespace" config:type="boolean">false</config:config-item>
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item> <config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
<config:config-item config:name="LegacySingleLineFontwork" config:type="boolean">false</config:config-item>
<config:config-item config:name="ConnectorUseSnapRect" config:type="boolean">false</config:config-item>
</config:config-item-map-entry> </config:config-item-map-entry>
</config:config-item-map-indexed> </config:config-item-map-indexed>
</config:config-item-set> </config:config-item-set>
<config:config-item-set config:name="ooo:configuration-settings"> <config:config-item-set config:name="ooo:configuration-settings">
<config:config-item config:name="PrintProspect" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintReversed" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintProspectRTL" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintSingleJobs" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintLeftPages" config:type="boolean">true</config:config-item> <config:config-item config:name="PrintLeftPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintTables" config:type="boolean">true</config:config-item> <config:config-item config:name="PrintPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintControls" config:type="boolean">true</config:config-item> <config:config-item config:name="PrintControls" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintPageBackground" config:type="boolean">true</config:config-item> <config:config-item config:name="PrintProspect" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintDrawings" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintBlackFonts" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintBlackFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintAnnotationMode" config:type="short">0</config:config-item> <config:config-item config:name="PrintAnnotationMode" config:type="short">0</config:config-item>
<config:config-item config:name="PrintTextPlaceholder" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintEmptyPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="ProtectFields" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintSingleJobs" config:type="boolean">false</config:config-item>
<config:config-item config:name="AutoFirstLineIndentDisregardLineSpace" config:type="boolean">false</config:config-item>
<config:config-item config:name="HeaderSpacingBelowLastPara" config:type="boolean">true</config:config-item>
<config:config-item config:name="ProtectBookmarks" config:type="boolean">false</config:config-item> <config:config-item config:name="ProtectBookmarks" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmptyDbFieldHidesPara" config:type="boolean">true</config:config-item> <config:config-item config:name="ContinuousEndnotes" config:type="boolean">false</config:config-item>
<config:config-item config:name="DisableOffPagePositioning" config:type="boolean">false</config:config-item> <config:config-item config:name="DisableOffPagePositioning" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintTables" config:type="boolean">true</config:config-item>
<config:config-item config:name="SubtractFlysAnchoredAtFlys" config:type="boolean">false</config:config-item> <config:config-item config:name="SubtractFlysAnchoredAtFlys" config:type="boolean">false</config:config-item>
<config:config-item config:name="PropLineSpacingShrinksFirstLine" config:type="boolean">true</config:config-item>
<config:config-item config:name="ApplyParagraphMarkFormatToNumbering" config:type="boolean">true</config:config-item> <config:config-item config:name="ApplyParagraphMarkFormatToNumbering" config:type="boolean">true</config:config-item>
<config:config-item config:name="GutterAtTop" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintFaxName" config:type="string"/>
<config:config-item config:name="SurroundTextWrapSmall" config:type="boolean">true</config:config-item>
<config:config-item config:name="TreatSingleColumnBreakAsPageBreak" config:type="boolean">false</config:config-item> <config:config-item config:name="TreatSingleColumnBreakAsPageBreak" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedSystemFonts" config:type="boolean">false</config:config-item> <config:config-item config:name="PropLineSpacingShrinksFirstLine" config:type="boolean">true</config:config-item>
<config:config-item config:name="TabOverSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabOverMargin" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedComplexScriptFonts" config:type="boolean">true</config:config-item> <config:config-item config:name="EmbedComplexScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedAsianScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedLatinScriptFonts" config:type="boolean">true</config:config-item> <config:config-item config:name="EmbedLatinScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedOnlyUsedFonts" config:type="boolean">false</config:config-item> <config:config-item config:name="EmbedOnlyUsedFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="WordLikeWrapForAsCharFlys" config:type="boolean">false</config:config-item>
<config:config-item config:name="ContinuousEndnotes" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item> <config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="ClippedPictures" config:type="boolean">false</config:config-item> <config:config-item config:name="ClippedPictures" config:type="boolean">false</config:config-item>
<config:config-item config:name="FrameAutowidthWithMorePara" config:type="boolean">true</config:config-item>
<config:config-item config:name="FloattableNomargins" config:type="boolean">false</config:config-item> <config:config-item config:name="FloattableNomargins" config:type="boolean">false</config:config-item>
<config:config-item config:name="UnbreakableNumberings" config:type="boolean">false</config:config-item> <config:config-item config:name="UnbreakableNumberings" config:type="boolean">false</config:config-item>
<config:config-item config:name="HeaderSpacingBelowLastPara" config:type="boolean">true</config:config-item>
<config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</config:config-item> <config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseOldPrinterMetrics" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabOverMargin" config:type="boolean">true</config:config-item>
<config:config-item config:name="TabsRelativeToIndent" config:type="boolean">false</config:config-item>
<config:config-item config:name="UseOldNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
<config:config-item config:name="CurrentDatabaseCommandType" config:type="int">0</config:config-item>
<config:config-item config:name="LinkUpdateMode" config:type="short">1</config:config-item>
<config:config-item config:name="AddParaSpacingToTableCells" config:type="boolean">true</config:config-item>
<config:config-item config:name="FrameAutowidthWithMorePara" config:type="boolean">true</config:config-item>
<config:config-item config:name="CurrentDatabaseCommand" config:type="string"/>
<config:config-item config:name="PrinterIndependentLayout" config:type="string">high-resolution</config:config-item>
<config:config-item config:name="ApplyUserData" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintFaxName" config:type="string"/>
<config:config-item config:name="CurrentDatabaseDataSource" config:type="string"/>
<config:config-item config:name="ClipAsCharacterAnchoredWriterFlyFrames" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item>
<config:config-item config:name="SaveThumbnail" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseFormerTextWrapping" config:type="boolean">false</config:config-item>
<config:config-item config:name="AutoFirstLineIndentDisregardLineSpace" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddExternalLeading" config:type="boolean">true</config:config-item>
<config:config-item config:name="AddParaTableSpacing" config:type="boolean">true</config:config-item>
<config:config-item config:name="StylesNoDefault" config:type="boolean">false</config:config-item>
<config:config-item config:name="ChartAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrinterSetup" config:type="base64Binary"/>
<config:config-item config:name="AddParaTableSpacingAtStart" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">2769328</config:config-item>
<config:config-item config:name="EmbeddedDatabaseName" config:type="string"/>
<config:config-item config:name="FieldAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="OutlineLevelYieldsNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="FootnoteInColumnToPageEnd" config:type="boolean">true</config:config-item>
<config:config-item config:name="AlignTabStopPosition" config:type="boolean">true</config:config-item>
<config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
<config:config-item config:name="PrinterName" config:type="string"/>
<config:config-item config:name="SaveGlobalDocumentLinks" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="UseFormerLineSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddParaLineSpacingToTableCells" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseFormerObjectPositioning" config:type="boolean">false</config:config-item> <config:config-item config:name="UseFormerObjectPositioning" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintGraphics" config:type="boolean">true</config:config-item> <config:config-item config:name="UseOldNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="ImagePreferredDPI" config:type="int">0</config:config-item>
<config:config-item config:name="SurroundTextWrapSmall" config:type="boolean">true</config:config-item>
<config:config-item config:name="ConsiderTextWrapOnObjPos" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">true</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="TabOverSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="IgnoreFirstLineIndentInNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="NoNumberingShowFollowBy" config:type="boolean">false</config:config-item>
<config:config-item config:name="RedlineProtectionKey" config:type="base64Binary"/>
<config:config-item config:name="DoNotJustifyLinesWithManualBreak" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintProspectRTL" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintEmptyPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="DoNotResetParaAttrsForNumFont" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddFrameOffsets" config:type="boolean">true</config:config-item>
<config:config-item config:name="IgnoreTabsAndBlanksForLineCalculation" config:type="boolean">false</config:config-item>
<config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
<config:config-item config:name="DoNotCaptureDrawObjsOnPage" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddVerticalFrameOffsets" config:type="boolean">false</config:config-item>
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsLabelDocument" config:type="boolean">false</config:config-item>
<config:config-item config:name="TableRowKeep" config:type="boolean">true</config:config-item>
<config:config-item config:name="RsidRoot" config:type="int">398114</config:config-item> <config:config-item config:name="RsidRoot" config:type="int">398114</config:config-item>
<config:config-item config:name="PrintHiddenText" config:type="boolean">false</config:config-item> <config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="ProtectForm" config:type="boolean">false</config:config-item> <config:config-item config:name="CurrentDatabaseDataSource" config:type="string"/>
<config:config-item config:name="MsWordCompMinLineHeightByFly" config:type="boolean">true</config:config-item> <config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
<config:config-item config:name="BackgroundParaOverDrawings" config:type="boolean">false</config:config-item> <config:config-item config:name="AddFrameOffsets" config:type="boolean">true</config:config-item>
<config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
<config:config-item config:name="Rsid" config:type="int">2788432</config:config-item>
<config:config-item config:name="FootnoteInColumnToPageEnd" config:type="boolean">true</config:config-item>
<config:config-item config:name="ProtectFields" config:type="boolean">false</config:config-item>
<config:config-item config:name="SaveGlobalDocumentLinks" config:type="boolean">false</config:config-item>
<config:config-item config:name="ClipAsCharacterAnchoredWriterFlyFrames" config:type="boolean">false</config:config-item>
<config:config-item config:name="LinkUpdateMode" config:type="short">1</config:config-item>
<config:config-item config:name="AddExternalLeading" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintGraphics" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedSystemFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsLabelDocument" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddParaLineSpacingToTableCells" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseFormerTextWrapping" config:type="boolean">false</config:config-item>
<config:config-item config:name="HyphenateURLs" config:type="boolean">true</config:config-item>
<config:config-item config:name="AddParaTableSpacingAtStart" config:type="boolean">true</config:config-item>
<config:config-item config:name="TabsRelativeToIndent" config:type="boolean">false</config:config-item>
<config:config-item config:name="FieldAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item> <config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">true</config:config-item> <config:config-item config:name="ChartAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="ImagePreferredDPI" config:type="int">0</config:config-item>
<config:config-item config:name="PrinterSetup" config:type="base64Binary"/>
<config:config-item config:name="SmallCapsPercentage66" config:type="boolean">false</config:config-item> <config:config-item config:name="SmallCapsPercentage66" config:type="boolean">false</config:config-item>
<config:config-item config:name="CollapseEmptyCellPara" config:type="boolean">true</config:config-item> <config:config-item config:name="AlignTabStopPosition" config:type="boolean">true</config:config-item>
<config:config-item config:name="DropCapPunctuation" config:type="boolean">false</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrinterName" config:type="string"/>
<config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
<config:config-item config:name="AddParaTableSpacing" config:type="boolean">true</config:config-item>
<config:config-item config:name="DoNotJustifyLinesWithManualBreak" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintHiddenText" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrinterIndependentLayout" config:type="string">high-resolution</config:config-item>
<config:config-item config:name="TabOverflow" config:type="boolean">true</config:config-item> <config:config-item config:name="TabOverflow" config:type="boolean">true</config:config-item>
<config:config-item config:name="AddParaSpacingToTableCells" config:type="boolean">true</config:config-item>
<config:config-item config:name="AddVerticalFrameOffsets" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">true</config:config-item>
<config:config-item config:name="ApplyUserData" config:type="boolean">true</config:config-item>
<config:config-item config:name="MsWordCompMinLineHeightByFly" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintTextPlaceholder" config:type="boolean">false</config:config-item>
<config:config-item config:name="IgnoreFirstLineIndentInNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="UseFormerLineSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintPageBackground" config:type="boolean">true</config:config-item>
<config:config-item config:name="RedlineProtectionKey" config:type="base64Binary"/>
<config:config-item config:name="EmbedAsianScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="BackgroundParaOverDrawings" config:type="boolean">false</config:config-item>
<config:config-item config:name="SaveThumbnail" config:type="boolean">true</config:config-item>
<config:config-item config:name="ConsiderTextWrapOnObjPos" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbeddedDatabaseName" config:type="string"/>
<config:config-item config:name="ProtectForm" config:type="boolean">false</config:config-item>
<config:config-item config:name="DoNotResetParaAttrsForNumFont" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmptyDbFieldHidesPara" config:type="boolean">true</config:config-item>
<config:config-item config:name="TableRowKeep" config:type="boolean">true</config:config-item>
<config:config-item config:name="NoNumberingShowFollowBy" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="IgnoreTabsAndBlanksForLineCalculation" config:type="boolean">false</config:config-item>
<config:config-item config:name="DoNotCaptureDrawObjsOnPage" config:type="boolean">false</config:config-item>
<config:config-item config:name="GutterAtTop" config:type="boolean">false</config:config-item>
<config:config-item config:name="StylesNoDefault" config:type="boolean">false</config:config-item>
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintReversed" config:type="boolean">false</config:config-item>
<config:config-item config:name="UseOldPrinterMetrics" config:type="boolean">false</config:config-item>
<config:config-item config:name="CurrentDatabaseCommandType" config:type="int">0</config:config-item>
<config:config-item config:name="PrintDrawings" config:type="boolean">true</config:config-item>
<config:config-item config:name="OutlineLevelYieldsNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="CurrentDatabaseCommand" config:type="string"/>
<config:config-item config:name="CollapseEmptyCellPara" config:type="boolean">true</config:config-item>
</config:config-item-set> </config:config-item-set>
</office:settings> </office:settings>
<office:scripts> <office:scripts>
@ -158,8 +160,8 @@
</office:font-face-decls> </office:font-face-decls>
<office:styles> <office:styles>
<style:default-style style:family="graphic"> <style:default-style style:family="graphic">
<style:graphic-properties svg:stroke-color="#3465a4" draw:fill-color="#729fcf" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.1181in" draw:shadow-offset-y="0.1181in" draw:start-line-spacing-horizontal="0.1114in" draw:start-line-spacing-vertical="0.1114in" draw:end-line-spacing-horizontal="0.1114in" draw:end-line-spacing-vertical="0.1114in" style:flow-with-text="false"/> <style:graphic-properties svg:stroke-color="#3465a4" draw:fill-color="#729fcf" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.1181in" draw:shadow-offset-y="0.1181in" draw:start-line-spacing-horizontal="0.1114in" draw:start-line-spacing-vertical="0.1114in" draw:end-line-spacing-horizontal="0.1114in" draw:end-line-spacing-vertical="0.1114in" style:writing-mode="lr-tb" style:flow-with-text="false"/>
<style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" style:writing-mode="lr-tb" style:font-independent-line-spacing="false"> <style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" style:font-independent-line-spacing="false">
<style:tab-stops/> <style:tab-stops/>
</style:paragraph-properties> </style:paragraph-properties>
<style:text-properties style:use-window-font-color="true" loext:opacity="0%" loext:color-lum-mod="100%" loext:color-lum-off="0%" style:font-name="DejaVu Serif" fo:font-size="12pt" fo:language="es" fo:country="CO" style:letter-kerning="true" style:font-name-asian="DejaVu Sans1" style:font-size-asian="10.5pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="DejaVu Sans1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN"/> <style:text-properties style:use-window-font-color="true" loext:opacity="0%" loext:color-lum-mod="100%" loext:color-lum-off="0%" style:font-name="DejaVu Serif" fo:font-size="12pt" fo:language="es" fo:country="CO" style:letter-kerning="true" style:font-name-asian="DejaVu Sans1" style:font-size-asian="10.5pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="DejaVu Sans1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN"/>
@ -260,10 +262,10 @@
<style:text-properties style:font-name="StarSymbol" fo:font-family="StarSymbol" fo:font-size="9pt" style:font-name-asian="StarSymbol" style:font-family-asian="StarSymbol" style:font-size-asian="9pt" style:font-name-complex="StarSymbol" style:font-family-complex="StarSymbol" style:font-size-complex="9pt"/> <style:text-properties style:font-name="StarSymbol" fo:font-family="StarSymbol" fo:font-size="9pt" style:font-name-asian="StarSymbol" style:font-family-asian="StarSymbol" style:font-size-asian="9pt" style:font-name-complex="StarSymbol" style:font-family-complex="StarSymbol" style:font-size-complex="9pt"/>
</style:style> </style:style>
<style:style style:name="Graphics" style:family="graphic"> <style:style style:name="Graphics" style:family="graphic">
<style:graphic-properties text:anchor-type="paragraph" svg:x="0in" svg:y="0in" style:wrap="dynamic" style:number-wrapped-paragraphs="no-limit" style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph" style:horizontal-pos="center" style:horizontal-rel="paragraph"/> <style:graphic-properties text:anchor-type="paragraph" svg:x="0in" svg:y="0in" style:wrap="dynamic" style:number-wrapped-paragraphs="no-limit" style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph" style:horizontal-pos="center" style:horizontal-rel="paragraph" draw:fill="none"/>
</style:style> </style:style>
<style:style style:name="Frame" style:family="graphic"> <style:style style:name="Frame" style:family="graphic">
<style:graphic-properties text:anchor-type="paragraph" svg:x="0in" svg:y="0in" fo:margin-left="0.0791in" fo:margin-right="0.0791in" fo:margin-top="0.0791in" fo:margin-bottom="0.0791in" style:wrap="parallel" style:number-wrapped-paragraphs="no-limit" style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph-content" style:horizontal-pos="center" style:horizontal-rel="paragraph-content" fo:padding="0.0591in" fo:border="0.06pt solid #000000"/> <style:graphic-properties text:anchor-type="paragraph" svg:x="0in" svg:y="0in" fo:margin-left="0.0791in" fo:margin-right="0.0791in" fo:margin-top="0.0791in" fo:margin-bottom="0.0791in" style:wrap="parallel" style:number-wrapped-paragraphs="no-limit" style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph-content" style:horizontal-pos="center" style:horizontal-rel="paragraph-content" draw:fill="none" fo:padding="0.0591in" fo:border="0.06pt solid #000000"/>
</style:style> </style:style>
<text:outline-style style:name="Outline"> <text:outline-style style:name="Outline">
<text:outline-level-style text:level="1" loext:num-list-format="%1%" style:num-format=""> <text:outline-level-style text:level="1" loext:num-list-format="%1%" style:num-format="">
@ -320,16 +322,16 @@
<text:notes-configuration text:note-class="footnote" style:num-format="1" text:start-value="0" text:footnotes-position="page" text:start-numbering-at="document"/> <text:notes-configuration text:note-class="footnote" style:num-format="1" text:start-value="0" text:footnotes-position="page" text:start-numbering-at="document"/>
<text:notes-configuration text:note-class="endnote" style:num-format="i" text:start-value="0"/> <text:notes-configuration text:note-class="endnote" style:num-format="i" text:start-value="0"/>
<text:linenumbering-configuration text:number-lines="false" text:offset="0.1965in" style:num-format="1" text:number-position="left" text:increment="5"/> <text:linenumbering-configuration text:number-lines="false" text:offset="0.1965in" style:num-format="1" text:number-position="left" text:increment="5"/>
<number:currency-style style:name="N122P0" style:volatile="true"> <number:currency-style style:name="N130P0" style:volatile="true">
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol> <number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> <number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
</number:currency-style> </number:currency-style>
<number:currency-style style:name="N122"> <number:currency-style style:name="N130">
<style:text-properties fo:color="#ff0000"/> <style:text-properties fo:color="#ff0000"/>
<number:text>-</number:text> <number:text>-</number:text>
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol> <number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> <number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
<style:map style:condition="value()&gt;=0" style:apply-style-name="N122P0"/> <style:map style:condition="value()&gt;=0" style:apply-style-name="N130P0"/>
</number:currency-style> </number:currency-style>
<style:default-page-layout> <style:default-page-layout>
<style:page-layout-properties style:writing-mode="lr-tb" style:layout-grid-standard-mode="true"/> <style:page-layout-properties style:writing-mode="lr-tb" style:layout-grid-standard-mode="true"/>
@ -600,129 +602,137 @@
<style:style style:name="P39" style:family="paragraph" style:parent-style-name="Text_20_body"> <style:style style:name="P39" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="9pt" officeooo:paragraph-rsid="00267450" style:font-size-asian="9pt" style:font-size-complex="9pt"/> <style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="9pt" officeooo:paragraph-rsid="00267450" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style> </style:style>
<style:style style:name="P40" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P40" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="8pt" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P41" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-type="double" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P42" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P43" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans" fo:font-size="7pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P44" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans" fo:font-size="7pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="0014ed01" officeooo:paragraph-rsid="0014ed01" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P45" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00061322" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P46" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="0024f0d3" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P47" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="000f983e" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P48" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00061322" officeooo:paragraph-rsid="0014ed01" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="10pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P49" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00061322" officeooo:paragraph-rsid="0024f0d3" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="10pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P50" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="000669cd" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P51" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00096df7" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P52" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00061322" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P53" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00267450" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P54" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="0014ed01" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P55" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="0024f0d3" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P56" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="00299f0e" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P57" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="00061322" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P58" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="001cde89" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P59" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00267450" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P60" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="9.5pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00061322" style:font-size-asian="9.5pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P61" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000f983e" officeooo:paragraph-rsid="0013e597" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P62" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese" fo:font-size="9.5pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00064e04" style:font-size-asian="9.5pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P63" style:family="paragraph" style:parent-style-name="Frame_20_contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
</style:style>
<style:style style:name="P64" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="000f983e" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P65" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00061322" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P66" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="000f983e" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P67" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="0014ed01" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P68" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="000f983e" officeooo:paragraph-rsid="0010ed64" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P69" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties style:writing-mode="lr-tb"/> <style:paragraph-properties style:writing-mode="lr-tb"/>
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="9pt" officeooo:paragraph-rsid="002a41b0" style:font-size-asian="9pt" style:font-size-complex="9pt"/> <style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="9pt" officeooo:paragraph-rsid="002a41b0" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style> </style:style>
<style:style style:name="P70" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P41" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="8pt" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P42" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-type="double" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P43" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P44" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans" fo:font-size="7pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P45" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans" fo:font-size="7pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="0014ed01" officeooo:paragraph-rsid="0014ed01" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P46" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00061322" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P47" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="0024f0d3" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P48" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00299f0e" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/> <style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00299f0e" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style> </style:style>
<style:style style:name="P49" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="000f983e" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P50" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00061322" officeooo:paragraph-rsid="0014ed01" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="10pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P51" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00061322" officeooo:paragraph-rsid="0024f0d3" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="10pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P52" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="000669cd" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P53" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00096df7" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P54" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00061322" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P55" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00267450" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P56" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="0014ed01" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P57" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="0024f0d3" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P58" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="00299f0e" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P59" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="00061322" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P60" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="001cde89" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P61" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00267450" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P62" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="9.5pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00061322" style:font-size-asian="9.5pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P63" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000f983e" officeooo:paragraph-rsid="0013e597" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P64" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese" fo:font-size="9.5pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00064e04" style:font-size-asian="9.5pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P65" style:family="paragraph" style:parent-style-name="Frame_20_contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
</style:style>
<style:style style:name="P66" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="000f983e" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P67" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00061322" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P68" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="000f983e" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P69" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="0014ed01" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P70" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="000f983e" officeooo:paragraph-rsid="0010ed64" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P71" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="002a8c50" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P72" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="002a8c50" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style>
<style:style style:name="T1" style:family="text"> <style:style style:name="T1" style:family="text">
<style:text-properties fo:color="#333333" loext:opacity="100%" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-weight-asian="bold" style:font-weight-complex="bold"/> <style:text-properties fo:color="#333333" loext:opacity="100%" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style> </style:style>
@ -1467,40 +1477,40 @@
<text:sequence-decl text:display-outline-level="0" text:name="Figure"/> <text:sequence-decl text:display-outline-level="0" text:name="Figure"/>
</text:sequence-decls> </text:sequence-decls>
<text:p text:style-name="P19"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;equipment in records&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P19"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;equipment in records&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P65"><text:span text:style-name="T27">HOJA</text:span><text:span text:style-name="T33"> </text:span><text:span text:style-name="T27">DE</text:span><text:span text:style-name="T34"> </text:span><text:span text:style-name="T27">VIDA</text:span><text:span text:style-name="T35"> </text:span><text:span text:style-name="T27">DISPOSITIVOS</text:span><text:span text:style-name="T36"> </text:span><text:span text:style-name="T27">BIOMEDICOS</text:span></text:p> <text:p text:style-name="P67"><text:span text:style-name="T27">HOJA</text:span><text:span text:style-name="T33"> </text:span><text:span text:style-name="T27">DE</text:span><text:span text:style-name="T34"> </text:span><text:span text:style-name="T27">VIDA</text:span><text:span text:style-name="T35"> </text:span><text:span text:style-name="T27">DISPOSITIVOS</text:span><text:span text:style-name="T36"> </text:span><text:span text:style-name="T27">BIOMEDICOS</text:span></text:p>
<table:table table:name="Tabla5" table:style-name="Tabla5"> <table:table table:name="Tabla5" table:style-name="Tabla5">
<table:table-column table:style-name="Tabla5.A"/> <table:table-column table:style-name="Tabla5.A"/>
<table:table-column table:style-name="Tabla5.B"/> <table:table-column table:style-name="Tabla5.B"/>
<table:table-row> <table:table-row>
<table:table-cell table:style-name="Tabla5.A1" office:value-type="string"> <table:table-cell table:style-name="Tabla5.A1" office:value-type="string">
<text:p text:style-name="P61">Fecha <text:span text:style-name="T39">de generación</text:span>: <text:span text:style-name="T40"><text:placeholder text:placeholder-type="text" text:description="format_datetime(datetime.datetime.now(),user.language, &apos;%25B %25d ,%25Y %25H:%25M%25p&apos;, equipment.company.timezone)">&lt;format_datetime(datetime.datetime.now(),user.language, &apos;%b/%d/%Y&apos;, equipment.company.timezone)&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P63">Fecha <text:span text:style-name="T39">de generación</text:span>: <text:span text:style-name="T40"><text:placeholder text:placeholder-type="text" text:description="format_datetime(datetime.datetime.now(),user.language, &apos;%25B %25d ,%25Y %25H:%25M%25p&apos;, equipment.company.timezone)">&lt;format_datetime(datetime.datetime.now(),user.language, &apos;%b/%d/%Y&apos;, equipment.company.timezone)&gt;</text:placeholder></text:span></text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla5.A1" office:value-type="string"> <table:table-cell table:style-name="Tabla5.A1" office:value-type="string">
<text:p text:style-name="P68"><text:span text:style-name="T28">Código Equipo: </text:span><text:span text:style-name="T32"><text:placeholder text:placeholder-type="text">&lt;equipment.code&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P70"><text:span text:style-name="T28">Código Equipo: </text:span><text:span text:style-name="T32"><text:placeholder text:placeholder-type="text">&lt;equipment.code&gt;</text:placeholder></text:span></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
</table:table> </table:table>
<text:p text:style-name="P52"/> <text:p text:style-name="P54"/>
<text:p text:style-name="P65"><text:span text:style-name="T27">INFORMACIÓN</text:span><text:span text:style-name="T37"> </text:span><text:span text:style-name="T27">DEL</text:span><text:span text:style-name="T35"> </text:span><text:span text:style-name="T27">PROPIETARIO</text:span></text:p> <text:p text:style-name="P67"><text:span text:style-name="T27">INFORMACIÓN</text:span><text:span text:style-name="T37"> </text:span><text:span text:style-name="T27">DEL</text:span><text:span text:style-name="T35"> </text:span><text:span text:style-name="T27">PROPIETARIO</text:span></text:p>
<table:table table:name="Tabla4" table:style-name="Tabla4"> <table:table table:name="Tabla4" table:style-name="Tabla4">
<table:table-column table:style-name="Tabla4.A"/> <table:table-column table:style-name="Tabla4.A"/>
<table:table-column table:style-name="Tabla4.B"/> <table:table-column table:style-name="Tabla4.B"/>
<table:table-row> <table:table-row>
<table:table-cell table:style-name="Tabla4.A1" office:value-type="string"> <table:table-cell table:style-name="Tabla4.A1" office:value-type="string">
<text:p text:style-name="P64"><text:span text:style-name="T27">Nombre / Razón Social: </text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text">&lt;equipment.propietary.name&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P66"><text:span text:style-name="T27">Nombre / Razón Social: </text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text">&lt;equipment.propietary.name&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P64"><text:span text:style-name="T27">Ciudad: </text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text">&lt;equipment.propietary_address.subdivision_municipality.name&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P66"><text:span text:style-name="T27">Ciudad: </text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text">&lt;equipment.propietary_address.subdivision_municipality.name&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P66"><text:span text:style-name="T27">Teléfono:</text:span><text:span text:style-name="T31"> </text:span><text:span text:style-name="T32"><text:placeholder text:placeholder-type="text">&lt;equipment.propietary.phone&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P68"><text:span text:style-name="T27">Teléfono:</text:span><text:span text:style-name="T31"> </text:span><text:span text:style-name="T32"><text:placeholder text:placeholder-type="text">&lt;equipment.propietary.phone&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P67"><text:span text:style-name="T30">Movil</text:span><text:span text:style-name="T28">:</text:span><text:span text:style-name="T32"> </text:span><text:span text:style-name="T32"><text:placeholder text:placeholder-type="text">&lt;equipment.propietary.mobile&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P69"><text:span text:style-name="T30">Movil</text:span><text:span text:style-name="T28">:</text:span><text:span text:style-name="T32"> </text:span><text:span text:style-name="T32"><text:placeholder text:placeholder-type="text">&lt;equipment.propietary.mobile&gt;</text:placeholder></text:span></text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla4.A1" office:value-type="string"> <table:table-cell table:style-name="Tabla4.A1" office:value-type="string">
<text:p text:style-name="P64"><text:span text:style-name="T27">Tipo Documento: </text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text">&lt;&quot;NIT&quot; if equipment.propietary.tax_identifier.type==&quot;31&quot; else &quot;CC&quot;&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P66"><text:span text:style-name="T27">Tipo Documento: </text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text">&lt;&quot;NIT&quot; if equipment.propietary.tax_identifier.type==&quot;31&quot; else &quot;CC&quot;&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P64"><text:span text:style-name="T27">Documento:</text:span><text:span text:style-name="T31"> </text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text">&lt;equipment.propietary.tax_identifier.code&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P66"><text:span text:style-name="T27">Documento:</text:span><text:span text:style-name="T31"> </text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text">&lt;equipment.propietary.tax_identifier.code&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P64"><text:span text:style-name="T27">Dirección:</text:span><text:span text:style-name="T31"> </text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text">&lt;equipment.propietary_address.street&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P66"><text:span text:style-name="T27">Dirección:</text:span><text:span text:style-name="T31"> </text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text">&lt;equipment.propietary_address.street&gt;</text:placeholder></text:span></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
</table:table> </table:table>
<text:p text:style-name="P60"/> <text:p text:style-name="P62"/>
<text:p text:style-name="P57">INFORMACIÓN DEL DISPOSITIVO</text:p> <text:p text:style-name="P59">INFORMACIÓN DEL DISPOSITIVO</text:p>
<table:table table:name="Tabla3" table:style-name="Tabla3"> <table:table table:name="Tabla3" table:style-name="Tabla3">
<table:table-column table:style-name="Tabla3.A"/> <table:table-column table:style-name="Tabla3.A"/>
<table:table-column table:style-name="Tabla3.B"/> <table:table-column table:style-name="Tabla3.B"/>
@ -1528,9 +1538,9 @@
<text:p text:style-name="P37"><text:span text:style-name="T48">Clase de Riesgo: </text:span><text:span text:style-name="T43">IIB</text:span></text:p> <text:p text:style-name="P37"><text:span text:style-name="T48">Clase de Riesgo: </text:span><text:span text:style-name="T43">IIB</text:span></text:p>
<text:p text:style-name="P39"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p> <text:p text:style-name="P39"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p>
<text:p text:style-name="P39"><text:placeholder text:placeholder-type="text">&lt;otherwise test=&quot;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P39"><text:placeholder text:placeholder-type="text">&lt;otherwise test=&quot;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P69"><text:span text:style-name="T48">Clase de Riesgo</text:span><text:span text:style-name="T45">: </text:span><text:span text:style-name="T44">No Aplíca</text:span></text:p> <text:p text:style-name="P40"><text:span text:style-name="T48">Clase de Riesgo</text:span><text:span text:style-name="T45">: </text:span><text:span text:style-name="T44">No Aplíca</text:span></text:p>
<text:p text:style-name="P39"><text:placeholder text:placeholder-type="text">&lt;/otherwise&gt;</text:placeholder></text:p> <text:p text:style-name="P39"><text:placeholder text:placeholder-type="text">&lt;/otherwise&gt;</text:placeholder></text:p>
<text:p text:style-name="P59"><text:placeholder text:placeholder-type="text">&lt;/choose&gt;</text:placeholder></text:p> <text:p text:style-name="P61"><text:placeholder text:placeholder-type="text">&lt;/choose&gt;</text:placeholder></text:p>
<text:p text:style-name="P38"><text:placeholder text:placeholder-type="text">&lt;choose test=&quot;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P38"><text:placeholder text:placeholder-type="text">&lt;choose test=&quot;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P38"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;equipment.use == &apos;medico&apos;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P38"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;equipment.use == &apos;medico&apos;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P37"><text:span text:style-name="T45">Uso:</text:span> Médico</text:p> <text:p text:style-name="P37"><text:span text:style-name="T45">Uso:</text:span> Médico</text:p>
@ -1544,7 +1554,7 @@
<text:p text:style-name="P39"><text:placeholder text:placeholder-type="text">&lt;otherwise test=&quot;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P39"><text:placeholder text:placeholder-type="text">&lt;otherwise test=&quot;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P37"><text:span text:style-name="T45">Uso:</text:span> n/a</text:p> <text:p text:style-name="P37"><text:span text:style-name="T45">Uso:</text:span> n/a</text:p>
<text:p text:style-name="P39"><text:placeholder text:placeholder-type="text">&lt;/otherwise&gt;</text:placeholder></text:p> <text:p text:style-name="P39"><text:placeholder text:placeholder-type="text">&lt;/otherwise&gt;</text:placeholder></text:p>
<text:p text:style-name="P53"><text:placeholder text:placeholder-type="text">&lt;/choose&gt;</text:placeholder></text:p> <text:p text:style-name="P55"><text:placeholder text:placeholder-type="text">&lt;/choose&gt;</text:placeholder></text:p>
<text:p text:style-name="P22"><text:span text:style-name="T28">Clase Biomédica:</text:span><text:span text:style-name="T32"> </text:span><text:span text:style-name="T32"><text:placeholder text:placeholder-type="text">&lt;equipment.biomedical_class&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P22"><text:span text:style-name="T28">Clase Biomédica:</text:span><text:span text:style-name="T32"> </text:span><text:span text:style-name="T32"><text:placeholder text:placeholder-type="text">&lt;equipment.biomedical_class&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P32"><text:placeholder text:placeholder-type="text">&lt;choose test=&quot;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P32"><text:placeholder text:placeholder-type="text">&lt;choose test=&quot;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P32"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;equipment.equipment_type == &apos;mobiliario_optico&apos;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P32"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;equipment.equipment_type == &apos;mobiliario_optico&apos;&quot;&gt;</text:placeholder></text:p>
@ -1562,7 +1572,7 @@
<text:p text:style-name="P33"><text:placeholder text:placeholder-type="text">&lt;otherwise test=&quot;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P33"><text:placeholder text:placeholder-type="text">&lt;otherwise test=&quot;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P34"><text:span text:style-name="T47">Tipo</text:span><text:span text:style-name="T45">: </text:span><text:span text:style-name="T42">n/a</text:span></text:p> <text:p text:style-name="P34"><text:span text:style-name="T47">Tipo</text:span><text:span text:style-name="T45">: </text:span><text:span text:style-name="T42">n/a</text:span></text:p>
<text:p text:style-name="P33"><text:placeholder text:placeholder-type="text">&lt;/otherwise&gt;</text:placeholder></text:p> <text:p text:style-name="P33"><text:placeholder text:placeholder-type="text">&lt;/otherwise&gt;</text:placeholder></text:p>
<text:p text:style-name="P58"><text:placeholder text:placeholder-type="text">&lt;/choose&gt;</text:placeholder></text:p> <text:p text:style-name="P60"><text:placeholder text:placeholder-type="text">&lt;/choose&gt;</text:placeholder></text:p>
<text:p text:style-name="P30"><text:placeholder text:placeholder-type="text">&lt;choose test=&quot;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P30"><text:placeholder text:placeholder-type="text">&lt;choose test=&quot;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P30"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;equipment.use == &apos;medico&apos;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P30"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;equipment.use == &apos;medico&apos;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P29"><text:span text:style-name="T45">Uso:</text:span> Médico</text:p> <text:p text:style-name="P29"><text:span text:style-name="T45">Uso:</text:span> Médico</text:p>
@ -1582,14 +1592,14 @@
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
</table:table> </table:table>
<text:p text:style-name="P47"/> <text:p text:style-name="P49"/>
<table:table table:name="Tabla2" table:style-name="Tabla2"> <table:table table:name="Tabla2" table:style-name="Tabla2">
<table:table-column table:style-name="Tabla2.A"/> <table:table-column table:style-name="Tabla2.A"/>
<table:table-column table:style-name="Tabla2.B"/> <table:table-column table:style-name="Tabla2.B"/>
<table:table-column table:style-name="Tabla2.C"/> <table:table-column table:style-name="Tabla2.C"/>
<table:table-row> <table:table-row>
<table:table-cell table:style-name="Tabla2.A1" table:number-columns-spanned="3" office:value-type="string"> <table:table-cell table:style-name="Tabla2.A1" table:number-columns-spanned="3" office:value-type="string">
<text:p text:style-name="P62">CARACTERÍSTICAS TÉCNICAS</text:p> <text:p text:style-name="P64">CARACTERÍSTICAS TÉCNICAS</text:p>
</table:table-cell> </table:table-cell>
<table:covered-table-cell/> <table:covered-table-cell/>
<table:covered-table-cell/> <table:covered-table-cell/>
@ -1602,7 +1612,7 @@
<text:p text:style-name="P24">Peso</text:p> <text:p text:style-name="P24">Peso</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla2.C2" office:value-type="string"> <table:table-cell table:style-name="Tabla2.C2" office:value-type="string">
<text:p text:style-name="P50"><text:placeholder text:placeholder-type="text">&lt;str(equipment.product.weight) + &quot; &quot;+ equipment.product.weight_uom.symbol if equipment.product.weight else &quot;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P52"><text:placeholder text:placeholder-type="text">&lt;str(equipment.product.weight) + &quot; &quot;+ equipment.product.weight_uom.symbol if equipment.product.weight else &quot;&quot;&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
<table:table-row table:style-name="Tabla2.3"> <table:table-row table:style-name="Tabla2.3">
@ -1611,7 +1621,7 @@
<text:p text:style-name="P24">Medidas</text:p> <text:p text:style-name="P24">Medidas</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla2.C3" office:value-type="string"> <table:table-cell table:style-name="Tabla2.C3" office:value-type="string">
<text:p text:style-name="P50"><text:placeholder text:placeholder-type="text">&lt;&quot;Longitud:&quot; +str(equipment.product.length) + &quot; &quot;+ equipment.product.length_uom.symbol+&quot; Altura: &quot;+str(equipment.product.height) + &quot; &quot;+ equipment.product.height_uom.symbol + &quot; Ancho: &quot;+str(equipment.product.width) + &quot; &quot;+ equipment.product.width_uom.symbol if equipment.product.width else &quot;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P52"><text:placeholder text:placeholder-type="text">&lt;&quot;Longitud:&quot; +str(equipment.product.length) + &quot; &quot;+ equipment.product.length_uom.symbol+&quot; Altura: &quot;+str(equipment.product.height) + &quot; &quot;+ equipment.product.height_uom.symbol + &quot; Ancho: &quot;+str(equipment.product.width) + &quot; &quot;+ equipment.product.width_uom.symbol if equipment.product.width else &quot;&quot;&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
<table:table-row> <table:table-row>
@ -1622,7 +1632,7 @@
<text:p text:style-name="P24">Voltaje (VAC)</text:p> <text:p text:style-name="P24">Voltaje (VAC)</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla2.C2" office:value-type="string"> <table:table-cell table:style-name="Tabla2.C2" office:value-type="string">
<text:p text:style-name="P50"><text:placeholder text:placeholder-type="text">&lt;str(equipment.product.voltageAC) + &quot; &quot;+ equipment.product.voltageAC_uom.symbol if equipment.product.voltageAC else &quot;No Aplica&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P52"><text:placeholder text:placeholder-type="text">&lt;str(equipment.product.voltageAC) + &quot; &quot;+ equipment.product.voltageAC_uom.symbol if equipment.product.voltageAC else &quot;No Aplica&quot;&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
<table:table-row> <table:table-row>
@ -1631,7 +1641,7 @@
<text:p text:style-name="P24">Voltaje (VDC)</text:p> <text:p text:style-name="P24">Voltaje (VDC)</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla2.C2" office:value-type="string"> <table:table-cell table:style-name="Tabla2.C2" office:value-type="string">
<text:p text:style-name="P50"><text:placeholder text:placeholder-type="text">&lt;str(equipment.product.voltageDC) + &quot; &quot;+ equipment.product.voltageDC_uom.symbol if equipment.product.voltageDC else &quot;No Aplica&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P52"><text:placeholder text:placeholder-type="text">&lt;str(equipment.product.voltageDC) + &quot; &quot;+ equipment.product.voltageDC_uom.symbol if equipment.product.voltageDC else &quot;No Aplica&quot;&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
<table:table-row> <table:table-row>
@ -1642,7 +1652,7 @@
<text:p text:style-name="P24">Te<text:span text:style-name="T38">m </text:span>Min Uso</text:p> <text:p text:style-name="P24">Te<text:span text:style-name="T38">m </text:span>Min Uso</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla2.C2" office:value-type="string"> <table:table-cell table:style-name="Tabla2.C2" office:value-type="string">
<text:p text:style-name="P50"><text:placeholder text:placeholder-type="text">&lt;str(equipment.product.temperature_min) + &quot; &quot;+ equipment.product.temperature_uom.symbol if equipment.product.temperature_min else &quot;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P52"><text:placeholder text:placeholder-type="text">&lt;str(equipment.product.temperature_min) + &quot; &quot;+ equipment.product.temperature_uom.symbol if equipment.product.temperature_min else &quot;&quot;&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
<table:table-row> <table:table-row>
@ -1651,7 +1661,7 @@
<text:p text:style-name="P24">Tem Max Uso</text:p> <text:p text:style-name="P24">Tem Max Uso</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla2.C2" office:value-type="string"> <table:table-cell table:style-name="Tabla2.C2" office:value-type="string">
<text:p text:style-name="P50"><text:placeholder text:placeholder-type="text">&lt;str(equipment.product.temperature_max) + &quot; &quot;+ equipment.product.temperature_uom.symbol if equipment.product.temperature_max else &quot;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P52"><text:placeholder text:placeholder-type="text">&lt;str(equipment.product.temperature_max) + &quot; &quot;+ equipment.product.temperature_uom.symbol if equipment.product.temperature_max else &quot;&quot;&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
<table:table-row> <table:table-row>
@ -1660,7 +1670,7 @@
<text:p text:style-name="P24">Hum Min Uso</text:p> <text:p text:style-name="P24">Hum Min Uso</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla2.C2" office:value-type="string"> <table:table-cell table:style-name="Tabla2.C2" office:value-type="string">
<text:p text:style-name="P50"><text:placeholder text:placeholder-type="text">&lt;str(equipment.product.moisture_min) + &quot; &quot;+ equipment.product.moisture_uom.symbol if equipment.product.moisture_min else &quot;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P52"><text:placeholder text:placeholder-type="text">&lt;str(equipment.product.moisture_min) + &quot; &quot;+ equipment.product.moisture_uom.symbol if equipment.product.moisture_min else &quot;&quot;&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
<table:table-row> <table:table-row>
@ -1669,7 +1679,7 @@
<text:p text:style-name="P24">Hum Max Uso</text:p> <text:p text:style-name="P24">Hum Max Uso</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla2.C2" office:value-type="string"> <table:table-cell table:style-name="Tabla2.C2" office:value-type="string">
<text:p text:style-name="P50"><text:placeholder text:placeholder-type="text">&lt;str(equipment.product.moisture_max) + &quot; &quot;+ equipment.product.moisture_uom.symbol if equipment.product.moisture_max else &quot;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P52"><text:placeholder text:placeholder-type="text">&lt;str(equipment.product.moisture_max) + &quot; &quot;+ equipment.product.moisture_uom.symbol if equipment.product.moisture_max else &quot;&quot;&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
<table:table-row> <table:table-row>
@ -1678,7 +1688,7 @@
</table:table-cell> </table:table-cell>
<table:covered-table-cell/> <table:covered-table-cell/>
<table:table-cell table:style-name="Tabla2.C2" office:value-type="string"> <table:table-cell table:style-name="Tabla2.C2" office:value-type="string">
<text:p text:style-name="P51"><text:placeholder text:placeholder-type="text">&lt;&quot;SI&quot; if equipment.calibration else &quot;NO&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P53"><text:placeholder text:placeholder-type="text">&lt;&quot;SI&quot; if equipment.calibration else &quot;NO&quot;&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
<table:table-row table:style-name="Tabla2.11"> <table:table-row table:style-name="Tabla2.11">
@ -1694,27 +1704,27 @@
<table:table-cell table:style-name="Tabla2.A12" table:number-columns-spanned="3" office:value-type="string"> <table:table-cell table:style-name="Tabla2.A12" table:number-columns-spanned="3" office:value-type="string">
<text:p text:style-name="P27"><draw:frame draw:style-name="fr2" draw:name="image: (equipment.product.images[0].image, &apos;image/jpg&apos;)" text:anchor-type="paragraph" svg:y="0.0409in" svg:width="1.5547in" svg:height="1.5547in" draw:z-index="0"> <text:p text:style-name="P27"><draw:frame draw:style-name="fr2" draw:name="image: (equipment.product.images[0].image, &apos;image/jpg&apos;)" text:anchor-type="paragraph" svg:y="0.0409in" svg:width="1.5547in" svg:height="1.5547in" draw:z-index="0">
<draw:text-box> <draw:text-box>
<text:p text:style-name="P63"/> <text:p text:style-name="P65"/>
<text:p text:style-name="Text">Texto <text:sequence text:ref-name="refText0" text:name="Text" text:formula="ooow:Text+1" style:num-format="1">1</text:sequence>: </text:p> <text:p text:style-name="Text">Texto <text:sequence text:ref-name="refText0" text:name="Text" text:formula="ooow:Text+1" style:num-format="1">1</text:sequence>: </text:p>
</draw:text-box> </draw:text-box>
</draw:frame></text:p> </draw:frame></text:p>
<text:p text:style-name="P49"/> <text:p text:style-name="P51"/>
<text:p text:style-name="P49"/> <text:p text:style-name="P51"/>
<text:p text:style-name="P49"/> <text:p text:style-name="P51"/>
<text:p text:style-name="P49"/> <text:p text:style-name="P51"/>
<text:p text:style-name="P49"/> <text:p text:style-name="P51"/>
<text:p text:style-name="P49"/> <text:p text:style-name="P51"/>
<text:p text:style-name="P49"/> <text:p text:style-name="P51"/>
<text:p text:style-name="P49"/> <text:p text:style-name="P51"/>
<text:p text:style-name="P49">El equipo funciona cumpliendo los parámetros establecidos por el fabricante</text:p> <text:p text:style-name="P51">El equipo funciona cumpliendo los parámetros establecidos por el fabricante</text:p>
</table:table-cell> </table:table-cell>
<table:covered-table-cell/> <table:covered-table-cell/>
<table:covered-table-cell/> <table:covered-table-cell/>
</table:table-row> </table:table-row>
</table:table> </table:table>
<text:p text:style-name="P56">ANTHONY STIVEN RODRIGUEZ FONSECA</text:p> <text:p text:style-name="P71"><text:span text:style-name="T49"><text:placeholder text:placeholder-type="text" text:description="equipment.technician_responsible">&lt;equipment.technician_responsible&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P56">INVIMA : RH-202208-01301 </text:p> <text:p text:style-name="P72">INVIMA : <text:span text:style-name="T51"><text:placeholder text:placeholder-type="text" text:description="equipment.invima">&lt;equipment.invima&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P70"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p> <text:p text:style-name="P48"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
</office:text> </office:text>
</office:body> </office:body>
</office:document> </office:document>

View File

@ -1,142 +1,144 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text"> <office:document xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:creation-date>2022-10-11T16:28:51.101948480</meta:creation-date><dc:date>2023-04-10T01:14:19.059312624</dc:date><meta:editing-duration>PT4H59M56S</meta:editing-duration><meta:editing-cycles>66</meta:editing-cycles><meta:generator>LibreOffice/7.4.6.2$Linux_X86_64 LibreOffice_project/40$Build-2</meta:generator><meta:document-statistic meta:table-count="8" meta:image-count="1" meta:object-count="0" meta:page-count="4" meta:paragraph-count="103" meta:word-count="360" meta:character-count="3954" meta:non-whitespace-character-count="3691"/></office:meta> <office:meta><meta:creation-date>2022-10-11T16:28:51.101948480</meta:creation-date><dc:date>2023-09-24T21:21:08.221447105</dc:date><meta:editing-duration>PT5H1M34S</meta:editing-duration><meta:editing-cycles>67</meta:editing-cycles><meta:generator>LibreOffice/7.5.6.2$Linux_X86_64 LibreOffice_project/50$Build-2</meta:generator><meta:document-statistic meta:table-count="8" meta:image-count="1" meta:object-count="0" meta:page-count="4" meta:paragraph-count="103" meta:word-count="357" meta:character-count="3960" meta:non-whitespace-character-count="3701"/></office:meta>
<office:settings> <office:settings>
<config:config-item-set config:name="ooo:view-settings"> <config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">0</config:config-item> <config:config-item config:name="ViewAreaTop" config:type="long">59584</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item> <config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">24502</config:config-item> <config:config-item config:name="ViewAreaWidth" config:type="long">24502</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">10982</config:config-item> <config:config-item config:name="ViewAreaHeight" config:type="long">11499</config:config-item>
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item> <config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item> <config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="Views"> <config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry> <config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item> <config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">16383</config:config-item> <config:config-item config:name="ViewLeft" config:type="long">3455</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">7486</config:config-item> <config:config-item config:name="ViewTop" config:type="long">103734</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item> <config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">0</config:config-item> <config:config-item config:name="VisibleTop" config:type="long">59584</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">24500</config:config-item> <config:config-item config:name="VisibleRight" config:type="long">24500</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">10980</config:config-item> <config:config-item config:name="VisibleBottom" config:type="long">71081</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item> <config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns" config:type="short">1</config:config-item> <config:config-item config:name="ViewLayoutColumns" config:type="short">1</config:config-item>
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item> <config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">200</config:config-item> <config:config-item config:name="ZoomFactor" config:type="short">200</config:config-item>
<config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item> <config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item>
<config:config-item config:name="KeepRatio" config:type="boolean">false</config:config-item> <config:config-item config:name="KeepRatio" config:type="boolean">false</config:config-item>
<config:config-item config:name="HideWhitespace" config:type="boolean">false</config:config-item>
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item> <config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
<config:config-item config:name="LegacySingleLineFontwork" config:type="boolean">false</config:config-item>
<config:config-item config:name="ConnectorUseSnapRect" config:type="boolean">false</config:config-item>
</config:config-item-map-entry> </config:config-item-map-entry>
</config:config-item-map-indexed> </config:config-item-map-indexed>
</config:config-item-set> </config:config-item-set>
<config:config-item-set config:name="ooo:configuration-settings"> <config:config-item-set config:name="ooo:configuration-settings">
<config:config-item config:name="PrintProspect" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintReversed" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintProspectRTL" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintSingleJobs" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintLeftPages" config:type="boolean">true</config:config-item> <config:config-item config:name="PrintLeftPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintTables" config:type="boolean">true</config:config-item> <config:config-item config:name="PrintPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintControls" config:type="boolean">true</config:config-item> <config:config-item config:name="PrintControls" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintPageBackground" config:type="boolean">true</config:config-item> <config:config-item config:name="PrintProspect" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintDrawings" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintBlackFonts" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintBlackFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintAnnotationMode" config:type="short">0</config:config-item> <config:config-item config:name="PrintAnnotationMode" config:type="short">0</config:config-item>
<config:config-item config:name="PrintTextPlaceholder" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintEmptyPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="ProtectFields" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintSingleJobs" config:type="boolean">false</config:config-item>
<config:config-item config:name="AutoFirstLineIndentDisregardLineSpace" config:type="boolean">false</config:config-item>
<config:config-item config:name="HeaderSpacingBelowLastPara" config:type="boolean">true</config:config-item>
<config:config-item config:name="ProtectBookmarks" config:type="boolean">false</config:config-item> <config:config-item config:name="ProtectBookmarks" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmptyDbFieldHidesPara" config:type="boolean">true</config:config-item> <config:config-item config:name="ContinuousEndnotes" config:type="boolean">false</config:config-item>
<config:config-item config:name="DisableOffPagePositioning" config:type="boolean">false</config:config-item> <config:config-item config:name="DisableOffPagePositioning" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintTables" config:type="boolean">true</config:config-item>
<config:config-item config:name="SubtractFlysAnchoredAtFlys" config:type="boolean">false</config:config-item> <config:config-item config:name="SubtractFlysAnchoredAtFlys" config:type="boolean">false</config:config-item>
<config:config-item config:name="PropLineSpacingShrinksFirstLine" config:type="boolean">true</config:config-item>
<config:config-item config:name="ApplyParagraphMarkFormatToNumbering" config:type="boolean">true</config:config-item> <config:config-item config:name="ApplyParagraphMarkFormatToNumbering" config:type="boolean">true</config:config-item>
<config:config-item config:name="GutterAtTop" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintFaxName" config:type="string"/>
<config:config-item config:name="SurroundTextWrapSmall" config:type="boolean">true</config:config-item>
<config:config-item config:name="TreatSingleColumnBreakAsPageBreak" config:type="boolean">false</config:config-item> <config:config-item config:name="TreatSingleColumnBreakAsPageBreak" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedSystemFonts" config:type="boolean">false</config:config-item> <config:config-item config:name="PropLineSpacingShrinksFirstLine" config:type="boolean">true</config:config-item>
<config:config-item config:name="TabOverSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabOverMargin" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedComplexScriptFonts" config:type="boolean">true</config:config-item> <config:config-item config:name="EmbedComplexScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedAsianScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedLatinScriptFonts" config:type="boolean">true</config:config-item> <config:config-item config:name="EmbedLatinScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedOnlyUsedFonts" config:type="boolean">false</config:config-item> <config:config-item config:name="EmbedOnlyUsedFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="WordLikeWrapForAsCharFlys" config:type="boolean">false</config:config-item>
<config:config-item config:name="ContinuousEndnotes" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item> <config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="ClippedPictures" config:type="boolean">false</config:config-item> <config:config-item config:name="ClippedPictures" config:type="boolean">false</config:config-item>
<config:config-item config:name="FrameAutowidthWithMorePara" config:type="boolean">true</config:config-item>
<config:config-item config:name="FloattableNomargins" config:type="boolean">false</config:config-item> <config:config-item config:name="FloattableNomargins" config:type="boolean">false</config:config-item>
<config:config-item config:name="UnbreakableNumberings" config:type="boolean">false</config:config-item> <config:config-item config:name="UnbreakableNumberings" config:type="boolean">false</config:config-item>
<config:config-item config:name="HeaderSpacingBelowLastPara" config:type="boolean">true</config:config-item>
<config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</config:config-item> <config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseOldPrinterMetrics" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabOverMargin" config:type="boolean">true</config:config-item>
<config:config-item config:name="TabsRelativeToIndent" config:type="boolean">false</config:config-item>
<config:config-item config:name="UseOldNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
<config:config-item config:name="CurrentDatabaseCommandType" config:type="int">0</config:config-item>
<config:config-item config:name="LinkUpdateMode" config:type="short">1</config:config-item>
<config:config-item config:name="AddParaSpacingToTableCells" config:type="boolean">true</config:config-item>
<config:config-item config:name="FrameAutowidthWithMorePara" config:type="boolean">true</config:config-item>
<config:config-item config:name="CurrentDatabaseCommand" config:type="string"/>
<config:config-item config:name="PrinterIndependentLayout" config:type="string">high-resolution</config:config-item>
<config:config-item config:name="ApplyUserData" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintFaxName" config:type="string"/>
<config:config-item config:name="CurrentDatabaseDataSource" config:type="string"/>
<config:config-item config:name="ClipAsCharacterAnchoredWriterFlyFrames" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item>
<config:config-item config:name="SaveThumbnail" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseFormerTextWrapping" config:type="boolean">false</config:config-item>
<config:config-item config:name="AutoFirstLineIndentDisregardLineSpace" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddExternalLeading" config:type="boolean">true</config:config-item>
<config:config-item config:name="AddParaTableSpacing" config:type="boolean">true</config:config-item>
<config:config-item config:name="StylesNoDefault" config:type="boolean">false</config:config-item>
<config:config-item config:name="ChartAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrinterSetup" config:type="base64Binary"/>
<config:config-item config:name="AddParaTableSpacingAtStart" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">5048973</config:config-item>
<config:config-item config:name="EmbeddedDatabaseName" config:type="string"/>
<config:config-item config:name="FieldAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="OutlineLevelYieldsNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="FootnoteInColumnToPageEnd" config:type="boolean">true</config:config-item>
<config:config-item config:name="AlignTabStopPosition" config:type="boolean">true</config:config-item>
<config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
<config:config-item config:name="PrinterName" config:type="string"/>
<config:config-item config:name="SaveGlobalDocumentLinks" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="UseFormerLineSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddParaLineSpacingToTableCells" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseFormerObjectPositioning" config:type="boolean">false</config:config-item> <config:config-item config:name="UseFormerObjectPositioning" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintGraphics" config:type="boolean">true</config:config-item> <config:config-item config:name="UseOldNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="ImagePreferredDPI" config:type="int">0</config:config-item>
<config:config-item config:name="SurroundTextWrapSmall" config:type="boolean">true</config:config-item>
<config:config-item config:name="ConsiderTextWrapOnObjPos" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">true</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="TabOverSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="IgnoreFirstLineIndentInNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="NoNumberingShowFollowBy" config:type="boolean">false</config:config-item>
<config:config-item config:name="RedlineProtectionKey" config:type="base64Binary"/>
<config:config-item config:name="DoNotJustifyLinesWithManualBreak" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintProspectRTL" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintEmptyPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="DoNotResetParaAttrsForNumFont" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddFrameOffsets" config:type="boolean">true</config:config-item>
<config:config-item config:name="IgnoreTabsAndBlanksForLineCalculation" config:type="boolean">false</config:config-item>
<config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
<config:config-item config:name="DoNotCaptureDrawObjsOnPage" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddVerticalFrameOffsets" config:type="boolean">false</config:config-item>
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsLabelDocument" config:type="boolean">false</config:config-item>
<config:config-item config:name="TableRowKeep" config:type="boolean">true</config:config-item>
<config:config-item config:name="RsidRoot" config:type="int">2067644</config:config-item> <config:config-item config:name="RsidRoot" config:type="int">2067644</config:config-item>
<config:config-item config:name="PrintHiddenText" config:type="boolean">false</config:config-item> <config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="ProtectForm" config:type="boolean">false</config:config-item> <config:config-item config:name="CurrentDatabaseDataSource" config:type="string"/>
<config:config-item config:name="MsWordCompMinLineHeightByFly" config:type="boolean">true</config:config-item> <config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
<config:config-item config:name="BackgroundParaOverDrawings" config:type="boolean">false</config:config-item> <config:config-item config:name="AddFrameOffsets" config:type="boolean">true</config:config-item>
<config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
<config:config-item config:name="Rsid" config:type="int">5156974</config:config-item>
<config:config-item config:name="FootnoteInColumnToPageEnd" config:type="boolean">true</config:config-item>
<config:config-item config:name="ProtectFields" config:type="boolean">false</config:config-item>
<config:config-item config:name="SaveGlobalDocumentLinks" config:type="boolean">false</config:config-item>
<config:config-item config:name="ClipAsCharacterAnchoredWriterFlyFrames" config:type="boolean">false</config:config-item>
<config:config-item config:name="LinkUpdateMode" config:type="short">1</config:config-item>
<config:config-item config:name="AddExternalLeading" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintGraphics" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedSystemFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsLabelDocument" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddParaLineSpacingToTableCells" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseFormerTextWrapping" config:type="boolean">false</config:config-item>
<config:config-item config:name="HyphenateURLs" config:type="boolean">true</config:config-item>
<config:config-item config:name="AddParaTableSpacingAtStart" config:type="boolean">true</config:config-item>
<config:config-item config:name="TabsRelativeToIndent" config:type="boolean">false</config:config-item>
<config:config-item config:name="FieldAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item> <config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">true</config:config-item> <config:config-item config:name="ChartAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="ImagePreferredDPI" config:type="int">0</config:config-item>
<config:config-item config:name="PrinterSetup" config:type="base64Binary"/>
<config:config-item config:name="SmallCapsPercentage66" config:type="boolean">false</config:config-item> <config:config-item config:name="SmallCapsPercentage66" config:type="boolean">false</config:config-item>
<config:config-item config:name="CollapseEmptyCellPara" config:type="boolean">true</config:config-item> <config:config-item config:name="AlignTabStopPosition" config:type="boolean">true</config:config-item>
<config:config-item config:name="DropCapPunctuation" config:type="boolean">false</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrinterName" config:type="string"/>
<config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
<config:config-item config:name="AddParaTableSpacing" config:type="boolean">true</config:config-item>
<config:config-item config:name="DoNotJustifyLinesWithManualBreak" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintHiddenText" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrinterIndependentLayout" config:type="string">high-resolution</config:config-item>
<config:config-item config:name="TabOverflow" config:type="boolean">true</config:config-item> <config:config-item config:name="TabOverflow" config:type="boolean">true</config:config-item>
<config:config-item config:name="AddParaSpacingToTableCells" config:type="boolean">true</config:config-item>
<config:config-item config:name="AddVerticalFrameOffsets" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">true</config:config-item>
<config:config-item config:name="ApplyUserData" config:type="boolean">true</config:config-item>
<config:config-item config:name="MsWordCompMinLineHeightByFly" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintTextPlaceholder" config:type="boolean">false</config:config-item>
<config:config-item config:name="IgnoreFirstLineIndentInNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="UseFormerLineSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintPageBackground" config:type="boolean">true</config:config-item>
<config:config-item config:name="RedlineProtectionKey" config:type="base64Binary"/>
<config:config-item config:name="EmbedAsianScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="BackgroundParaOverDrawings" config:type="boolean">false</config:config-item>
<config:config-item config:name="SaveThumbnail" config:type="boolean">true</config:config-item>
<config:config-item config:name="ConsiderTextWrapOnObjPos" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbeddedDatabaseName" config:type="string"/>
<config:config-item config:name="ProtectForm" config:type="boolean">false</config:config-item>
<config:config-item config:name="DoNotResetParaAttrsForNumFont" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmptyDbFieldHidesPara" config:type="boolean">true</config:config-item>
<config:config-item config:name="TableRowKeep" config:type="boolean">true</config:config-item>
<config:config-item config:name="NoNumberingShowFollowBy" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="IgnoreTabsAndBlanksForLineCalculation" config:type="boolean">false</config:config-item>
<config:config-item config:name="DoNotCaptureDrawObjsOnPage" config:type="boolean">false</config:config-item>
<config:config-item config:name="GutterAtTop" config:type="boolean">false</config:config-item>
<config:config-item config:name="StylesNoDefault" config:type="boolean">false</config:config-item>
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintReversed" config:type="boolean">false</config:config-item>
<config:config-item config:name="UseOldPrinterMetrics" config:type="boolean">false</config:config-item>
<config:config-item config:name="CurrentDatabaseCommandType" config:type="int">0</config:config-item>
<config:config-item config:name="PrintDrawings" config:type="boolean">true</config:config-item>
<config:config-item config:name="OutlineLevelYieldsNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="CurrentDatabaseCommand" config:type="string"/>
<config:config-item config:name="CollapseEmptyCellPara" config:type="boolean">true</config:config-item>
</config:config-item-set> </config:config-item-set>
</office:settings> </office:settings>
<office:scripts> <office:scripts>
@ -163,7 +165,7 @@
<office:styles> <office:styles>
<style:default-style style:family="graphic"> <style:default-style style:family="graphic">
<style:graphic-properties svg:stroke-color="#3465a4" draw:fill-color="#729fcf" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.1181in" draw:shadow-offset-y="0.1181in" draw:start-line-spacing-horizontal="0.1114in" draw:start-line-spacing-vertical="0.1114in" draw:end-line-spacing-horizontal="0.1114in" draw:end-line-spacing-vertical="0.1114in" style:flow-with-text="false"/> <style:graphic-properties svg:stroke-color="#3465a4" draw:fill-color="#729fcf" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.1181in" draw:shadow-offset-y="0.1181in" draw:start-line-spacing-horizontal="0.1114in" draw:start-line-spacing-vertical="0.1114in" draw:end-line-spacing-horizontal="0.1114in" draw:end-line-spacing-vertical="0.1114in" style:flow-with-text="false"/>
<style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" style:font-independent-line-spacing="false"> <style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" style:writing-mode="lr-tb" style:font-independent-line-spacing="false">
<style:tab-stops/> <style:tab-stops/>
</style:paragraph-properties> </style:paragraph-properties>
<style:text-properties style:use-window-font-color="true" loext:opacity="0%" loext:color-lum-mod="100%" loext:color-lum-off="0%" style:font-name="Liberation Serif" fo:font-size="12pt" fo:language="es" fo:country="CO" style:letter-kerning="true" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="10.5pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="Droid Sans Devanagari1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN"/> <style:text-properties style:use-window-font-color="true" loext:opacity="0%" loext:color-lum-mod="100%" loext:color-lum-off="0%" style:font-name="Liberation Serif" fo:font-size="12pt" fo:language="es" fo:country="CO" style:letter-kerning="true" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="10.5pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="Droid Sans Devanagari1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN"/>
@ -265,10 +267,10 @@
<style:text-properties style:font-name="StarSymbol" fo:font-family="StarSymbol" fo:font-size="9pt" style:font-name-asian="StarSymbol" style:font-family-asian="StarSymbol" style:font-size-asian="9pt" style:font-name-complex="StarSymbol" style:font-family-complex="StarSymbol" style:font-size-complex="9pt"/> <style:text-properties style:font-name="StarSymbol" fo:font-family="StarSymbol" fo:font-size="9pt" style:font-name-asian="StarSymbol" style:font-family-asian="StarSymbol" style:font-size-asian="9pt" style:font-name-complex="StarSymbol" style:font-family-complex="StarSymbol" style:font-size-complex="9pt"/>
</style:style> </style:style>
<style:style style:name="Graphics" style:family="graphic"> <style:style style:name="Graphics" style:family="graphic">
<style:graphic-properties text:anchor-type="paragraph" svg:x="0in" svg:y="0in" style:wrap="dynamic" style:number-wrapped-paragraphs="no-limit" style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph" style:horizontal-pos="center" style:horizontal-rel="paragraph"/> <style:graphic-properties text:anchor-type="paragraph" svg:x="0in" svg:y="0in" style:wrap="dynamic" style:number-wrapped-paragraphs="no-limit" style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph" style:horizontal-pos="center" style:horizontal-rel="paragraph" draw:fill="none"/>
</style:style> </style:style>
<style:style style:name="Frame" style:family="graphic"> <style:style style:name="Frame" style:family="graphic">
<style:graphic-properties text:anchor-type="paragraph" svg:x="0in" svg:y="0in" fo:margin-left="0.0791in" fo:margin-right="0.0791in" fo:margin-top="0.0791in" fo:margin-bottom="0.0791in" style:wrap="parallel" style:number-wrapped-paragraphs="no-limit" style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph-content" style:horizontal-pos="center" style:horizontal-rel="paragraph-content" fo:padding="0.0591in" fo:border="0.06pt solid #000000"/> <style:graphic-properties text:anchor-type="paragraph" svg:x="0in" svg:y="0in" fo:margin-left="0.0791in" fo:margin-right="0.0791in" fo:margin-top="0.0791in" fo:margin-bottom="0.0791in" style:wrap="parallel" style:number-wrapped-paragraphs="no-limit" style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph-content" style:horizontal-pos="center" style:horizontal-rel="paragraph-content" draw:fill="none" fo:padding="0.0591in" fo:border="0.06pt solid #000000"/>
</style:style> </style:style>
<text:outline-style style:name="Outline"> <text:outline-style style:name="Outline">
<text:outline-level-style text:level="1" loext:num-list-format="%1%" style:num-format=""> <text:outline-level-style text:level="1" loext:num-list-format="%1%" style:num-format="">
@ -325,16 +327,16 @@
<text:notes-configuration text:note-class="footnote" style:num-format="1" text:start-value="0" text:footnotes-position="page" text:start-numbering-at="document"/> <text:notes-configuration text:note-class="footnote" style:num-format="1" text:start-value="0" text:footnotes-position="page" text:start-numbering-at="document"/>
<text:notes-configuration text:note-class="endnote" style:num-format="i" text:start-value="0"/> <text:notes-configuration text:note-class="endnote" style:num-format="i" text:start-value="0"/>
<text:linenumbering-configuration text:number-lines="false" text:offset="0.1965in" style:num-format="1" text:number-position="left" text:increment="5"/> <text:linenumbering-configuration text:number-lines="false" text:offset="0.1965in" style:num-format="1" text:number-position="left" text:increment="5"/>
<number:currency-style style:name="N122P0" style:volatile="true"> <number:currency-style style:name="N130P0" style:volatile="true">
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol> <number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> <number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
</number:currency-style> </number:currency-style>
<number:currency-style style:name="N122"> <number:currency-style style:name="N130">
<style:text-properties fo:color="#ff0000"/> <style:text-properties fo:color="#ff0000"/>
<number:text>-</number:text> <number:text>-</number:text>
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol> <number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> <number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
<style:map style:condition="value()&gt;=0" style:apply-style-name="N122P0"/> <style:map style:condition="value()&gt;=0" style:apply-style-name="N130P0"/>
</number:currency-style> </number:currency-style>
<style:default-page-layout> <style:default-page-layout>
<style:page-layout-properties style:writing-mode="lr-tb" style:layout-grid-standard-mode="true"/> <style:page-layout-properties style:writing-mode="lr-tb" style:layout-grid-standard-mode="true"/>
@ -815,6 +817,18 @@
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="004c1f2f" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold" style:text-emphasize="none"/> <style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="004c1f2f" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style> </style:style>
<style:style style:name="P80" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false">
<style:tab-stops>
<style:tab-stop style:position="3.6425in"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:paragraph-rsid="004eb06e" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P81" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="0036953a" officeooo:paragraph-rsid="004eb06e" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="T1" style:family="text"> <style:style style:name="T1" style:family="text">
<style:text-properties fo:color="#333333" loext:opacity="100%" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-weight-asian="bold" style:font-weight-complex="bold"/> <style:text-properties fo:color="#333333" loext:opacity="100%" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style> </style:style>
@ -891,103 +905,106 @@
<style:text-properties fo:color="#666666" loext:opacity="100%" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-weight-asian="bold" style:font-weight-complex="bold"/> <style:text-properties fo:color="#666666" loext:opacity="100%" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="T26" style:family="text"> <style:style style:name="T26" style:family="text">
<style:text-properties officeooo:rsid="026544ec"/> <style:text-properties style:text-underline-style="none" officeooo:rsid="026544ec"/>
</style:style> </style:style>
<style:style style:name="T27" style:family="text"> <style:style style:name="T27" style:family="text">
<style:text-properties officeooo:rsid="0036953a"/> <style:text-properties officeooo:rsid="0036953a"/>
</style:style> </style:style>
<style:style style:name="T28" style:family="text"> <style:style style:name="T28" style:family="text">
<style:text-properties officeooo:rsid="003f4f1d"/> <style:text-properties officeooo:rsid="026544ec"/>
</style:style> </style:style>
<style:style style:name="T29" style:family="text"> <style:style style:name="T29" style:family="text">
<style:text-properties fo:font-weight="normal" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-weight-complex="normal"/> <style:text-properties officeooo:rsid="003f4f1d"/>
</style:style> </style:style>
<style:style style:name="T30" style:family="text"> <style:style style:name="T30" style:family="text">
<style:text-properties fo:font-weight="normal" officeooo:rsid="001b9ac0" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-weight-complex="normal"/> <style:text-properties fo:font-weight="normal" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="T31" style:family="text"> <style:style style:name="T31" style:family="text">
<style:text-properties fo:font-weight="normal" officeooo:rsid="00205712" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-weight-complex="normal"/> <style:text-properties fo:font-weight="normal" officeooo:rsid="001b9ac0" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="T32" style:family="text"> <style:style style:name="T32" style:family="text">
<style:text-properties fo:font-weight="normal" officeooo:rsid="0045b610" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-weight-complex="normal"/> <style:text-properties fo:font-weight="normal" officeooo:rsid="00205712" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="T33" style:family="text"> <style:style style:name="T33" style:family="text">
<style:text-properties fo:font-weight="normal" officeooo:rsid="004e714a" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-weight-complex="normal"/> <style:text-properties fo:font-weight="normal" officeooo:rsid="0045b610" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="T34" style:family="text"> <style:style style:name="T34" style:family="text">
<style:text-properties fo:font-weight="normal" style:font-weight-asian="normal" style:font-weight-complex="normal"/> <style:text-properties fo:font-weight="normal" officeooo:rsid="004e714a" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="T35" style:family="text"> <style:style style:name="T35" style:family="text">
<style:text-properties fo:font-weight="normal" officeooo:rsid="001b9ac0" style:font-weight-asian="normal" style:font-weight-complex="normal"/> <style:text-properties fo:font-weight="normal" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="T36" style:family="text"> <style:style style:name="T36" style:family="text">
<style:text-properties style:font-name-complex="Arial"/> <style:text-properties fo:font-weight="normal" officeooo:rsid="001b9ac0" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="T37" style:family="text"> <style:style style:name="T37" style:family="text">
<style:text-properties officeooo:rsid="001b9ac0" style:font-name-complex="Arial"/> <style:text-properties style:font-name-complex="Arial"/>
</style:style> </style:style>
<style:style style:name="T38" style:family="text"> <style:style style:name="T38" style:family="text">
<style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/> <style:text-properties officeooo:rsid="001b9ac0" style:font-name-complex="Arial"/>
</style:style> </style:style>
<style:style style:name="T39" style:family="text"> <style:style style:name="T39" style:family="text">
<style:text-properties fo:font-weight="bold" officeooo:rsid="001b9ac0" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/> <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="T40" style:family="text"> <style:style style:name="T40" style:family="text">
<style:text-properties fo:font-weight="bold" officeooo:rsid="00205712" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/> <style:text-properties fo:font-weight="bold" officeooo:rsid="001b9ac0" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="T41" style:family="text"> <style:style style:name="T41" style:family="text">
<style:text-properties fo:font-weight="bold" officeooo:rsid="0020199a" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/> <style:text-properties fo:font-weight="bold" officeooo:rsid="00205712" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="T42" style:family="text"> <style:style style:name="T42" style:family="text">
<style:text-properties fo:font-weight="bold" officeooo:rsid="0036953a" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/> <style:text-properties fo:font-weight="bold" officeooo:rsid="0020199a" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="T43" style:family="text"> <style:style style:name="T43" style:family="text">
<style:text-properties fo:font-weight="bold" officeooo:rsid="001cde89" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/> <style:text-properties fo:font-weight="bold" officeooo:rsid="0036953a" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="T44" style:family="text"> <style:style style:name="T44" style:family="text">
<style:text-properties fo:font-weight="bold" officeooo:rsid="001e74c0" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/> <style:text-properties fo:font-weight="bold" officeooo:rsid="001cde89" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="T45" style:family="text"> <style:style style:name="T45" style:family="text">
<style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/> <style:text-properties fo:font-weight="bold" officeooo:rsid="001e74c0" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="T46" style:family="text"> <style:style style:name="T46" style:family="text">
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-style-asian="normal" style:font-weight-asian="normal" style:text-emphasize="none"/> <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="T47" style:family="text"> <style:style style:name="T47" style:family="text">
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00205712" style:font-style-asian="normal" style:font-weight-asian="normal" style:text-emphasize="none"/> <style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-style-asian="normal" style:font-weight-asian="normal" style:text-emphasize="none"/>
</style:style> </style:style>
<style:style style:name="T48" style:family="text"> <style:style style:name="T48" style:family="text">
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-weight-complex="normal" style:text-emphasize="none"/> <style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00205712" style:font-style-asian="normal" style:font-weight-asian="normal" style:text-emphasize="none"/>
</style:style> </style:style>
<style:style style:name="T49" style:family="text"> <style:style style:name="T49" style:family="text">
<style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00205712" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-weight-complex="normal" style:text-emphasize="none"/> <style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-weight-complex="normal" style:text-emphasize="none"/>
</style:style> </style:style>
<style:style style:name="T50" style:family="text"> <style:style style:name="T50" style:family="text">
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/> <style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00205712" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-weight-complex="normal" style:text-emphasize="none"/>
</style:style> </style:style>
<style:style style:name="T51" style:family="text"> <style:style style:name="T51" style:family="text">
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/> <style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
</style:style> </style:style>
<style:style style:name="T52" style:family="text"> <style:style style:name="T52" style:family="text">
<style:text-properties officeooo:rsid="003ca753"/> <style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
</style:style> </style:style>
<style:style style:name="T53" style:family="text"> <style:style style:name="T53" style:family="text">
<style:text-properties fo:font-size="8pt" fo:font-weight="bold" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="bold"/> <style:text-properties officeooo:rsid="003ca753"/>
</style:style> </style:style>
<style:style style:name="T54" style:family="text"> <style:style style:name="T54" style:family="text">
<style:text-properties fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="001e74c0" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="bold"/> <style:text-properties fo:font-size="8pt" fo:font-weight="bold" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="T55" style:family="text"> <style:style style:name="T55" style:family="text">
<style:text-properties fo:font-size="8pt" fo:font-weight="normal" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="normal"/> <style:text-properties fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="001e74c0" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="T56" style:family="text"> <style:style style:name="T56" style:family="text">
<style:text-properties fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="001b9ac0" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="normal"/> <style:text-properties fo:font-size="8pt" fo:font-weight="normal" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="T57" style:family="text"> <style:style style:name="T57" style:family="text">
<style:text-properties fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="0045b610" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="normal"/> <style:text-properties fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="001b9ac0" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="T58" style:family="text"> <style:style style:name="T58" style:family="text">
<style:text-properties style:text-underline-style="none" officeooo:rsid="026544ec"/> <style:text-properties fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="0045b610" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="T59" style:family="text">
<style:text-properties fo:font-size="10pt" officeooo:rsid="001b9ac0" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style> </style:style>
<style:style style:name="fr1" style:family="graphic" style:parent-style-name="Graphics"> <style:style style:name="fr1" style:family="graphic" style:parent-style-name="Graphics">
<style:graphic-properties style:vertical-pos="from-top" style:horizontal-pos="from-left" style:horizontal-rel="paragraph" style:mirror="none" fo:clip="rect(0in, 0in, 0in, 0in)" draw:luminance="0%" draw:contrast="0%" draw:red="0%" draw:green="0%" draw:blue="0%" draw:gamma="100%" draw:color-inversion="false" draw:image-opacity="100%" draw:color-mode="standard"/> <style:graphic-properties style:vertical-pos="from-top" style:horizontal-pos="from-left" style:horizontal-rel="paragraph" style:mirror="none" fo:clip="rect(0in, 0in, 0in, 0in)" draw:luminance="0%" draw:contrast="0%" draw:red="0%" draw:green="0%" draw:blue="0%" draw:gamma="100%" draw:color-inversion="false" draw:image-opacity="100%" draw:color-mode="standard"/>
@ -1696,7 +1713,7 @@
<text:p text:style-name="Standard"/> <text:p text:style-name="Standard"/>
</style:header> </style:header>
<style:footer> <style:footer>
<text:p text:style-name="P10"><text:span text:style-name="T12">Pagina</text:span> <text:page-number text:select-page="current">4</text:page-number></text:p> <text:p text:style-name="P10"><text:span text:style-name="T12">Pagina</text:span> <text:page-number text:select-page="current">3</text:page-number></text:p>
</style:footer> </style:footer>
</style:master-page> </style:master-page>
</office:master-styles> </office:master-styles>
@ -1715,10 +1732,10 @@
<table:table-column table:style-name="Tabla2.B"/> <table:table-column table:style-name="Tabla2.B"/>
<table:table-row> <table:table-row>
<table:table-cell table:style-name="Tabla2.A1" office:value-type="string"> <table:table-cell table:style-name="Tabla2.A1" office:value-type="string">
<text:p text:style-name="P23">Fecha: <text:span text:style-name="T51"><text:placeholder text:placeholder-type="text" text:description="format_datetime(datetime.datetime.now(),user.language, &apos;%b/%d/%Y&apos;, maintenance.company.timezone)">&lt;format_datetime(datetime.datetime.now(),user.language, &apos;%b/%d/%Y&apos;, maintenance.company.timezone)&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P23">Fecha: <text:span text:style-name="T52"><text:placeholder text:placeholder-type="text" text:description="format_datetime(datetime.datetime.now(),user.language, &apos;%b/%d/%Y&apos;, maintenance.company.timezone)">&lt;format_datetime(datetime.datetime.now(),user.language, &apos;%b/%d/%Y&apos;, maintenance.company.timezone)&gt;</text:placeholder></text:span></text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla2.A1" office:value-type="string"> <table:table-cell table:style-name="Tabla2.A1" office:value-type="string">
<text:p text:style-name="P22">Consecutivo: <text:s/><text:span text:style-name="T37"><text:placeholder text:placeholder-type="text" text:description="maintenance.code">&lt;maintenance.code&gt;</text:placeholder></text:span><text:span text:style-name="T37"><text:s/></text:span></text:p> <text:p text:style-name="P22">Consecutivo: <text:s/><text:span text:style-name="T38"><text:placeholder text:placeholder-type="text" text:description="maintenance.code">&lt;maintenance.code&gt;</text:placeholder></text:span><text:span text:style-name="T38"><text:s/></text:span></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
</table:table> </table:table>
@ -1726,10 +1743,10 @@
<table:table-column table:style-name="Tabla5.A"/> <table:table-column table:style-name="Tabla5.A"/>
<table:table-row> <table:table-row>
<table:table-cell table:style-name="Tabla5.A1" office:value-type="string"> <table:table-cell table:style-name="Tabla5.A1" office:value-type="string">
<text:p text:style-name="P27"><text:span text:style-name="T45">Señores:</text:span><text:span text:style-name="T34"> <text:s/></text:span><text:span text:style-name="T30"><text:placeholder text:placeholder-type="text" text:description="maintenance.propietary.name">&lt;maintenance.propietary.name&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P27"><text:span text:style-name="T46">Señores:</text:span><text:span text:style-name="T35"> <text:s/></text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text" text:description="maintenance.propietary.name">&lt;maintenance.propietary.name&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P21"><text:span text:style-name="T37">D</text:span><text:span text:style-name="T36">ocumento: </text:span><text:span text:style-name="T50"><text:placeholder text:placeholder-type="text">&lt;&quot;NIT&quot; if maintenance.propietary.tax_identifier.type==&quot;31&quot; else &quot;CC&quot;&gt;</text:placeholder></text:span><text:span text:style-name="T50"><text:s/></text:span><text:span text:style-name="T50"><text:placeholder text:placeholder-type="text">&lt;maintenance.propietary.tax_identifier.code&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P21"><text:span text:style-name="T38">D</text:span><text:span text:style-name="T37">ocumento: </text:span><text:span text:style-name="T51"><text:placeholder text:placeholder-type="text">&lt;&quot;NIT&quot; if maintenance.propietary.tax_identifier.type==&quot;31&quot; else &quot;CC&quot;&gt;</text:placeholder></text:span><text:span text:style-name="T51"><text:s/></text:span><text:span text:style-name="T51"><text:placeholder text:placeholder-type="text">&lt;maintenance.propietary.tax_identifier.code&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P21"><text:span text:style-name="T36">Ciudad: </text:span><text:span text:style-name="T50"><text:placeholder text:placeholder-type="text">&lt;maintenance.propietary_address.subdivision_municipality.name&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P21"><text:span text:style-name="T37">Ciudad: </text:span><text:span text:style-name="T51"><text:placeholder text:placeholder-type="text">&lt;maintenance.propietary_address.subdivision_municipality.name&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P27"><text:span text:style-name="T39">D</text:span><text:span text:style-name="T38">irección:</text:span><text:span text:style-name="T29"> </text:span><text:span text:style-name="T30"><text:placeholder text:placeholder-type="text" text:description="maintenance.propietary_address.street">&lt;maintenance.propietary_address.street&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P27"><text:span text:style-name="T40">D</text:span><text:span text:style-name="T39">irección:</text:span><text:span text:style-name="T30"> </text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text" text:description="maintenance.propietary_address.street">&lt;maintenance.propietary_address.street&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P45"/> <text:p text:style-name="P45"/>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
@ -1738,7 +1755,7 @@
<table:table-column table:style-name="Tabla7.A"/> <table:table-column table:style-name="Tabla7.A"/>
<table:table-row> <table:table-row>
<table:table-cell table:style-name="Tabla7.A1" office:value-type="string"> <table:table-cell table:style-name="Tabla7.A1" office:value-type="string">
<text:p text:style-name="P27"><text:span text:style-name="T39">A</text:span><text:span text:style-name="T38">sunto: </text:span><text:span text:style-name="T29">Certificación de calibración</text:span></text:p> <text:p text:style-name="P27"><text:span text:style-name="T40">A</text:span><text:span text:style-name="T39">sunto: </text:span><text:span text:style-name="T30">Certificación de calibración</text:span></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
</table:table> </table:table>
@ -1747,48 +1764,48 @@
<table:table-column table:style-name="Tabla3.B"/> <table:table-column table:style-name="Tabla3.B"/>
<table:table-row> <table:table-row>
<table:table-cell table:style-name="Tabla3.A1" office:value-type="string"> <table:table-cell table:style-name="Tabla3.A1" office:value-type="string">
<text:p text:style-name="P38"><text:span text:style-name="T39">Método </text:span><text:span text:style-name="T42">de calibración</text:span><text:span text:style-name="T40">:</text:span><text:span text:style-name="T31"> </text:span><text:span text:style-name="T48">Comparaci</text:span><text:span text:style-name="T46">ón</text:span></text:p> <text:p text:style-name="P38"><text:span text:style-name="T40">Método </text:span><text:span text:style-name="T43">de calibración</text:span><text:span text:style-name="T41">:</text:span><text:span text:style-name="T32"> </text:span><text:span text:style-name="T49">Comparaci</text:span><text:span text:style-name="T47">ón</text:span></text:p>
<text:p text:style-name="P30"><text:span text:style-name="T38">Rango de medición:</text:span><text:span text:style-name="T29"> </text:span><text:span text:style-name="T30"><text:placeholder text:placeholder-type="text" text:description="maintenance.equipment.product.measuring_range">&lt;maintenance.equipment.product.measuring_range&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P30"><text:span text:style-name="T39">Rango de medición:</text:span><text:span text:style-name="T30"> </text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text" text:description="maintenance.equipment.product.measuring_range">&lt;maintenance.equipment.product.measuring_range&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P54"><text:placeholder text:placeholder-type="text">&lt;choose test=&quot;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P54"><text:placeholder text:placeholder-type="text">&lt;choose test=&quot;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P54"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;maintenance.equipment.product.use_pattern.id==1&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P54"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;maintenance.equipment.product.use_pattern.id==1&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P32"><text:span text:style-name="T43">Patrón utilizado: </text:span><text:span text:style-name="T32">Ojo Esquemático</text:span></text:p> <text:p text:style-name="P32"><text:span text:style-name="T44">Patrón utilizado: </text:span><text:span text:style-name="T33">Ojo Esquemático</text:span></text:p>
<text:p text:style-name="P55"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p> <text:p text:style-name="P55"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p>
<text:p text:style-name="P54"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;maintenance.equipment.product.use_pattern.id==2&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P54"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;maintenance.equipment.product.use_pattern.id==2&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P32"><text:span text:style-name="T43">Patrón utilizado: </text:span><text:span text:style-name="T32">Lente</text:span><text:span text:style-name="T33">s</text:span><text:span text:style-name="T32"> de Prueba</text:span></text:p> <text:p text:style-name="P32"><text:span text:style-name="T44">Patrón utilizado: </text:span><text:span text:style-name="T33">Lente</text:span><text:span text:style-name="T34">s</text:span><text:span text:style-name="T33"> de Prueba</text:span></text:p>
<text:p text:style-name="P55"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p> <text:p text:style-name="P55"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p>
<text:p text:style-name="P54"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;maintenance.equipment.product.use_pattern.id==3&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P54"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;maintenance.equipment.product.use_pattern.id==3&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P32"><text:span text:style-name="T43">Patrón utilizado: </text:span><text:span text:style-name="T32">Pesas de Calibración</text:span></text:p> <text:p text:style-name="P32"><text:span text:style-name="T44">Patrón utilizado: </text:span><text:span text:style-name="T33">Pesas de Calibración</text:span></text:p>
<text:p text:style-name="P55"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p> <text:p text:style-name="P55"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p>
<text:p text:style-name="P54"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;maintenance.equipment.product.use_pattern.id==4&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P54"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;maintenance.equipment.product.use_pattern.id==4&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P32"><text:span text:style-name="T43">Patrón utilizado: </text:span><text:span text:style-name="T33">Esferas de Calibración</text:span></text:p> <text:p text:style-name="P32"><text:span text:style-name="T44">Patrón utilizado: </text:span><text:span text:style-name="T34">Esferas de Calibración</text:span></text:p>
<text:p text:style-name="P55"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p> <text:p text:style-name="P55"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p>
<text:p text:style-name="P55"><text:soft-page-break/><text:placeholder text:placeholder-type="text">&lt;otherwise test=&quot;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P55"><text:soft-page-break/><text:placeholder text:placeholder-type="text">&lt;otherwise test=&quot;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P55"><text:span text:style-name="T54">Patrón utilizado: </text:span><text:span text:style-name="T57">Barras de Calibración</text:span></text:p> <text:p text:style-name="P55"><text:span text:style-name="T55">Patrón utilizado: </text:span><text:span text:style-name="T58">Barras de Calibración</text:span></text:p>
<text:p text:style-name="P55"><text:placeholder text:placeholder-type="text">&lt;/otherwise&gt;</text:placeholder></text:p> <text:p text:style-name="P55"><text:placeholder text:placeholder-type="text">&lt;/otherwise&gt;</text:placeholder></text:p>
<text:p text:style-name="P79"><text:placeholder text:placeholder-type="text">&lt;/choose&gt;</text:placeholder></text:p> <text:p text:style-name="P79"><text:placeholder text:placeholder-type="text">&lt;/choose&gt;</text:placeholder></text:p>
<text:p text:style-name="P51"><text:placeholder text:placeholder-type="text">&lt;choose test=&quot;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P51"><text:placeholder text:placeholder-type="text">&lt;choose test=&quot;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P51"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;maintenance.equipment.use == &apos;medico&apos;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P51"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;maintenance.equipment.use == &apos;medico&apos;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P50"><text:span text:style-name="T45">Uso:</text:span> Médico</text:p> <text:p text:style-name="P50"><text:span text:style-name="T46">Uso:</text:span> Médico</text:p>
<text:p text:style-name="P52"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p> <text:p text:style-name="P52"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p>
<text:p text:style-name="P51"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;maintenance.equipment.use == &apos;basico&apos;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P51"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;maintenance.equipment.use == &apos;basico&apos;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P51"><text:span text:style-name="T45">Uso:</text:span> Básico</text:p> <text:p text:style-name="P51"><text:span text:style-name="T46">Uso:</text:span> Básico</text:p>
<text:p text:style-name="P52"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p> <text:p text:style-name="P52"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p>
<text:p text:style-name="P51"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;maintenance.equipment.use == &apos;apoyo&apos;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P51"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;maintenance.equipment.use == &apos;apoyo&apos;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P50"><text:span text:style-name="T45">Uso:</text:span> Apoyo</text:p> <text:p text:style-name="P50"><text:span text:style-name="T46">Uso:</text:span> Apoyo</text:p>
<text:p text:style-name="P52"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p> <text:p text:style-name="P52"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p>
<text:p text:style-name="P52"><text:placeholder text:placeholder-type="text">&lt;otherwise test=&quot;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P52"><text:placeholder text:placeholder-type="text">&lt;otherwise test=&quot;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P50"><text:span text:style-name="T45">Uso:</text:span> n/a</text:p> <text:p text:style-name="P50"><text:span text:style-name="T46">Uso:</text:span> n/a</text:p>
<text:p text:style-name="P52"><text:placeholder text:placeholder-type="text">&lt;/otherwise&gt;</text:placeholder></text:p> <text:p text:style-name="P52"><text:placeholder text:placeholder-type="text">&lt;/otherwise&gt;</text:placeholder></text:p>
<text:p text:style-name="P56"><text:placeholder text:placeholder-type="text">&lt;/choose&gt;</text:placeholder></text:p> <text:p text:style-name="P56"><text:placeholder text:placeholder-type="text">&lt;/choose&gt;</text:placeholder></text:p>
<text:p text:style-name="P53"><text:span text:style-name="T53">División de escala:</text:span><text:span text:style-name="T55"> </text:span><text:span text:style-name="T56"><text:placeholder text:placeholder-type="text" text:description="&quot;0.25D&quot; if maintenance.equipment.product.measuring_range == &quot;dioptria&quot; else &quot;1mmHg&quot;">&lt;&quot;0.25D&quot; if maintenance.equipment.product.measuring_range == &quot;dioptria&quot; else &quot;1mmHg&quot;&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P53"><text:span text:style-name="T54">División de escala:</text:span><text:span text:style-name="T56"> </text:span><text:span text:style-name="T57"><text:placeholder text:placeholder-type="text" text:description="&quot;0.25D&quot; if maintenance.equipment.product.measuring_range == &quot;dioptria&quot; else &quot;1mmHg&quot;">&lt;&quot;0.25D&quot; if maintenance.equipment.product.measuring_range == &quot;dioptria&quot; else &quot;1mmHg&quot;&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P42"><text:span text:style-name="T45">Sitio de medición: </text:span><text:span text:style-name="T34">Consultorio</text:span></text:p> <text:p text:style-name="P42"><text:span text:style-name="T46">Sitio de medición: </text:span><text:span text:style-name="T35">Consultorio</text:span></text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla3.A1" office:value-type="string"> <table:table-cell table:style-name="Tabla3.A1" office:value-type="string">
<text:p text:style-name="P27"><text:span text:style-name="T38">Equipo:</text:span><text:span text:style-name="T29"> </text:span><text:span text:style-name="T30"><text:placeholder text:placeholder-type="text" text:description="maintenance.equipment.product.name">&lt;maintenance.equipment.product.name&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P27"><text:span text:style-name="T39">Equipo:</text:span><text:span text:style-name="T30"> </text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text" text:description="maintenance.equipment.product.name">&lt;maintenance.equipment.product.name&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P28"><text:span text:style-name="T39">M</text:span><text:span text:style-name="T38">arca: </text:span><text:span text:style-name="T30"><text:placeholder text:placeholder-type="text" text:description="maintenance.equipment.mark_category.name">&lt;maintenance.equipment.mark_category.name&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P28"><text:span text:style-name="T40">M</text:span><text:span text:style-name="T39">arca: </text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text" text:description="maintenance.equipment.mark_category.name">&lt;maintenance.equipment.mark_category.name&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P29"><text:span text:style-name="T39">M</text:span><text:span text:style-name="T38">odelo: </text:span><text:span text:style-name="T30"><text:placeholder text:placeholder-type="text" text:description="maintenance.equipment.model_category.name">&lt;maintenance.equipment.model_category.name&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P29"><text:span text:style-name="T40">M</text:span><text:span text:style-name="T39">odelo: </text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text" text:description="maintenance.equipment.model_category.name">&lt;maintenance.equipment.model_category.name&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P29"><text:span text:style-name="T39">R</text:span><text:span text:style-name="T41">eferencia: </text:span><text:span text:style-name="T30"><text:placeholder text:placeholder-type="text" text:description="maintenance.equipment.reference_category.name">&lt;maintenance.equipment.reference_category.name&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P29"><text:span text:style-name="T40">R</text:span><text:span text:style-name="T42">eferencia: </text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text" text:description="maintenance.equipment.reference_category.name">&lt;maintenance.equipment.reference_category.name&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P41"><text:span text:style-name="T45">Serie:</text:span><text:span text:style-name="T34"> </text:span><text:span text:style-name="T35"><text:placeholder text:placeholder-type="text" text:description="maintenance.equipment.serial">&lt;maintenance.equipment.serial&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P41"><text:span text:style-name="T46">Serie:</text:span><text:span text:style-name="T35"> </text:span><text:span text:style-name="T36"><text:placeholder text:placeholder-type="text" text:description="maintenance.equipment.serial">&lt;maintenance.equipment.serial&gt;</text:placeholder></text:span></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
</table:table> </table:table>
@ -1857,7 +1874,7 @@
<text:p text:style-name="P25">Valor en Equipo</text:p> <text:p text:style-name="P25">Valor en Equipo</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla8.A1" office:value-type="string"> <table:table-cell table:style-name="Tabla8.A1" office:value-type="string">
<text:p text:style-name="P26">% <text:span text:style-name="T52">Error</text:span></text:p> <text:p text:style-name="P26">% <text:span text:style-name="T53">Error</text:span></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
<table:table-row> <table:table-row>
@ -1967,12 +1984,11 @@
<text:p text:style-name="Text">Texto <text:sequence text:ref-name="refText0" text:name="Text" text:formula="ooow:Text+1" style:num-format="1">1</text:sequence>: </text:p> <text:p text:style-name="Text">Texto <text:sequence text:ref-name="refText0" text:name="Text" text:formula="ooow:Text+1" style:num-format="1">1</text:sequence>: </text:p>
</draw:text-box> </draw:text-box>
</draw:frame><text:soft-page-break/></text:p> </draw:frame><text:soft-page-break/></text:p>
<text:p text:style-name="P40"><text:span text:style-name="T49">Este certificado expresa fielmente el resultado de las mediciones realizadas. Los resultados </text:span><text:span text:style-name="T47">contenidos en el presente certificado se refieren al momento y condiciones en que se realizaron las mediciones. No nos responsabilizamos de los perjuicios que pueden derivarse del uso inadecuado de los instrumentos calibrados. El usuario es responsable de la recalibración de sus instrumentos a intervalos apropiados.</text:span></text:p> <text:p text:style-name="P40"><text:span text:style-name="T50">Este certificado expresa fielmente el resultado de las mediciones realizadas. Los resultados </text:span><text:span text:style-name="T48">contenidos en el presente certificado se refieren al momento y condiciones en que se realizaron las mediciones. No nos responsabilizamos de los perjuicios que pueden derivarse del uso inadecuado de los instrumentos calibrados. El usuario es responsable de la recalibración de sus instrumentos a intervalos apropiados.</text:span></text:p>
<text:p text:style-name="P67"/> <text:p text:style-name="P67"/>
<text:p text:style-name="P67"/> <text:p text:style-name="P67"/>
<text:p text:style-name="P67"/> <text:p text:style-name="P81"><text:span text:style-name="T38"><text:placeholder text:placeholder-type="text" text:description="maintenance.code">&lt;maintenance.technician_responsible&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P19">ANTHONY STIVEN RODRIGUEZ FONSECA </text:p> <text:p text:style-name="P80"><text:span text:style-name="T38">INVIMA : </text:span><text:span text:style-name="T59"><text:placeholder text:placeholder-type="text" text:description="maintenance.invima">&lt;maintenance.invima&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P20">INVIMA : RH-202208-01301</text:p>
<text:p text:style-name="P35"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p> <text:p text:style-name="P35"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
</office:text> </office:text>
</office:body> </office:body>

View File

@ -1,142 +1,144 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text"> <office:document xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:creation-date>2022-10-11T16:28:51.101948480</meta:creation-date><dc:date>2023-05-25T14:06:32.636094037</dc:date><meta:editing-duration>PT5H27M17S</meta:editing-duration><meta:editing-cycles>80</meta:editing-cycles><meta:generator>LibreOffice/7.4.6.2$Linux_X86_64 LibreOffice_project/40$Build-2</meta:generator><meta:document-statistic meta:table-count="8" meta:image-count="1" meta:object-count="0" meta:page-count="5" meta:paragraph-count="107" meta:word-count="366" meta:character-count="3988" meta:non-whitespace-character-count="3723"/></office:meta> <office:meta><meta:creation-date>2022-10-11T16:28:51.101948480</meta:creation-date><dc:date>2023-09-24T21:38:02.659407388</dc:date><meta:editing-duration>PT5H43M50S</meta:editing-duration><meta:editing-cycles>81</meta:editing-cycles><meta:generator>LibreOffice/7.5.6.2$Linux_X86_64 LibreOffice_project/50$Build-2</meta:generator><meta:document-statistic meta:table-count="8" meta:image-count="1" meta:object-count="0" meta:page-count="5" meta:paragraph-count="107" meta:word-count="363" meta:character-count="3999" meta:non-whitespace-character-count="3738"/></office:meta>
<office:settings> <office:settings>
<config:config-item-set config:name="ooo:view-settings"> <config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">0</config:config-item> <config:config-item config:name="ViewAreaTop" config:type="long">92710</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item> <config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">34080</config:config-item> <config:config-item config:name="ViewAreaWidth" config:type="long">49003</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">13125</config:config-item> <config:config-item config:name="ViewAreaHeight" config:type="long">22994</config:config-item>
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item> <config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item> <config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="Views"> <config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry> <config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item> <config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">15060</config:config-item> <config:config-item config:name="ViewLeft" config:type="long">15706</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">9453</config:config-item> <config:config-item config:name="ViewTop" config:type="long">104103</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item> <config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">0</config:config-item> <config:config-item config:name="VisibleTop" config:type="long">92710</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">34078</config:config-item> <config:config-item config:name="VisibleRight" config:type="long">49001</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">13123</config:config-item> <config:config-item config:name="VisibleBottom" config:type="long">115702</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item> <config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns" config:type="short">1</config:config-item> <config:config-item config:name="ViewLayoutColumns" config:type="short">1</config:config-item>
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item> <config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">100</config:config-item> <config:config-item config:name="ZoomFactor" config:type="short">100</config:config-item>
<config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item> <config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item>
<config:config-item config:name="KeepRatio" config:type="boolean">false</config:config-item> <config:config-item config:name="KeepRatio" config:type="boolean">false</config:config-item>
<config:config-item config:name="HideWhitespace" config:type="boolean">false</config:config-item>
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item> <config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
<config:config-item config:name="LegacySingleLineFontwork" config:type="boolean">false</config:config-item>
<config:config-item config:name="ConnectorUseSnapRect" config:type="boolean">false</config:config-item>
</config:config-item-map-entry> </config:config-item-map-entry>
</config:config-item-map-indexed> </config:config-item-map-indexed>
</config:config-item-set> </config:config-item-set>
<config:config-item-set config:name="ooo:configuration-settings"> <config:config-item-set config:name="ooo:configuration-settings">
<config:config-item config:name="PrintProspect" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintReversed" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintProspectRTL" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintSingleJobs" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintLeftPages" config:type="boolean">true</config:config-item> <config:config-item config:name="PrintLeftPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintTables" config:type="boolean">true</config:config-item> <config:config-item config:name="PrintPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintControls" config:type="boolean">true</config:config-item> <config:config-item config:name="PrintControls" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintPageBackground" config:type="boolean">true</config:config-item> <config:config-item config:name="PrintProspect" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintDrawings" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintBlackFonts" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintBlackFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintAnnotationMode" config:type="short">0</config:config-item> <config:config-item config:name="PrintAnnotationMode" config:type="short">0</config:config-item>
<config:config-item config:name="PrintTextPlaceholder" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintEmptyPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="ProtectFields" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintSingleJobs" config:type="boolean">false</config:config-item>
<config:config-item config:name="AutoFirstLineIndentDisregardLineSpace" config:type="boolean">false</config:config-item>
<config:config-item config:name="HeaderSpacingBelowLastPara" config:type="boolean">true</config:config-item>
<config:config-item config:name="ProtectBookmarks" config:type="boolean">false</config:config-item> <config:config-item config:name="ProtectBookmarks" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmptyDbFieldHidesPara" config:type="boolean">true</config:config-item> <config:config-item config:name="ContinuousEndnotes" config:type="boolean">false</config:config-item>
<config:config-item config:name="DisableOffPagePositioning" config:type="boolean">false</config:config-item> <config:config-item config:name="DisableOffPagePositioning" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintTables" config:type="boolean">true</config:config-item>
<config:config-item config:name="SubtractFlysAnchoredAtFlys" config:type="boolean">false</config:config-item> <config:config-item config:name="SubtractFlysAnchoredAtFlys" config:type="boolean">false</config:config-item>
<config:config-item config:name="PropLineSpacingShrinksFirstLine" config:type="boolean">true</config:config-item>
<config:config-item config:name="ApplyParagraphMarkFormatToNumbering" config:type="boolean">true</config:config-item> <config:config-item config:name="ApplyParagraphMarkFormatToNumbering" config:type="boolean">true</config:config-item>
<config:config-item config:name="GutterAtTop" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintFaxName" config:type="string"/>
<config:config-item config:name="SurroundTextWrapSmall" config:type="boolean">true</config:config-item>
<config:config-item config:name="TreatSingleColumnBreakAsPageBreak" config:type="boolean">false</config:config-item> <config:config-item config:name="TreatSingleColumnBreakAsPageBreak" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedSystemFonts" config:type="boolean">false</config:config-item> <config:config-item config:name="PropLineSpacingShrinksFirstLine" config:type="boolean">true</config:config-item>
<config:config-item config:name="TabOverSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabOverMargin" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedComplexScriptFonts" config:type="boolean">true</config:config-item> <config:config-item config:name="EmbedComplexScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedAsianScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedLatinScriptFonts" config:type="boolean">true</config:config-item> <config:config-item config:name="EmbedLatinScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedOnlyUsedFonts" config:type="boolean">false</config:config-item> <config:config-item config:name="EmbedOnlyUsedFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="WordLikeWrapForAsCharFlys" config:type="boolean">false</config:config-item>
<config:config-item config:name="ContinuousEndnotes" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item> <config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="ClippedPictures" config:type="boolean">false</config:config-item> <config:config-item config:name="ClippedPictures" config:type="boolean">false</config:config-item>
<config:config-item config:name="FrameAutowidthWithMorePara" config:type="boolean">true</config:config-item>
<config:config-item config:name="FloattableNomargins" config:type="boolean">false</config:config-item> <config:config-item config:name="FloattableNomargins" config:type="boolean">false</config:config-item>
<config:config-item config:name="UnbreakableNumberings" config:type="boolean">false</config:config-item> <config:config-item config:name="UnbreakableNumberings" config:type="boolean">false</config:config-item>
<config:config-item config:name="HeaderSpacingBelowLastPara" config:type="boolean">true</config:config-item>
<config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</config:config-item> <config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseOldPrinterMetrics" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabOverMargin" config:type="boolean">true</config:config-item>
<config:config-item config:name="TabsRelativeToIndent" config:type="boolean">false</config:config-item>
<config:config-item config:name="UseOldNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
<config:config-item config:name="CurrentDatabaseCommandType" config:type="int">0</config:config-item>
<config:config-item config:name="LinkUpdateMode" config:type="short">1</config:config-item>
<config:config-item config:name="AddParaSpacingToTableCells" config:type="boolean">true</config:config-item>
<config:config-item config:name="FrameAutowidthWithMorePara" config:type="boolean">true</config:config-item>
<config:config-item config:name="CurrentDatabaseCommand" config:type="string"/>
<config:config-item config:name="PrinterIndependentLayout" config:type="string">high-resolution</config:config-item>
<config:config-item config:name="ApplyUserData" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintFaxName" config:type="string"/>
<config:config-item config:name="CurrentDatabaseDataSource" config:type="string"/>
<config:config-item config:name="ClipAsCharacterAnchoredWriterFlyFrames" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item>
<config:config-item config:name="SaveThumbnail" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseFormerTextWrapping" config:type="boolean">false</config:config-item>
<config:config-item config:name="AutoFirstLineIndentDisregardLineSpace" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddExternalLeading" config:type="boolean">true</config:config-item>
<config:config-item config:name="AddParaTableSpacing" config:type="boolean">true</config:config-item>
<config:config-item config:name="StylesNoDefault" config:type="boolean">false</config:config-item>
<config:config-item config:name="ChartAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrinterSetup" config:type="base64Binary"/>
<config:config-item config:name="AddParaTableSpacingAtStart" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">5282104</config:config-item>
<config:config-item config:name="EmbeddedDatabaseName" config:type="string"/>
<config:config-item config:name="FieldAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="OutlineLevelYieldsNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="FootnoteInColumnToPageEnd" config:type="boolean">true</config:config-item>
<config:config-item config:name="AlignTabStopPosition" config:type="boolean">true</config:config-item>
<config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
<config:config-item config:name="PrinterName" config:type="string"/>
<config:config-item config:name="SaveGlobalDocumentLinks" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="UseFormerLineSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddParaLineSpacingToTableCells" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseFormerObjectPositioning" config:type="boolean">false</config:config-item> <config:config-item config:name="UseFormerObjectPositioning" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintGraphics" config:type="boolean">true</config:config-item> <config:config-item config:name="UseOldNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="ImagePreferredDPI" config:type="int">0</config:config-item>
<config:config-item config:name="SurroundTextWrapSmall" config:type="boolean">true</config:config-item>
<config:config-item config:name="ConsiderTextWrapOnObjPos" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">true</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="TabOverSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="IgnoreFirstLineIndentInNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="NoNumberingShowFollowBy" config:type="boolean">false</config:config-item>
<config:config-item config:name="RedlineProtectionKey" config:type="base64Binary"/>
<config:config-item config:name="DoNotJustifyLinesWithManualBreak" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintProspectRTL" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintEmptyPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="DoNotResetParaAttrsForNumFont" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddFrameOffsets" config:type="boolean">true</config:config-item>
<config:config-item config:name="IgnoreTabsAndBlanksForLineCalculation" config:type="boolean">false</config:config-item>
<config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
<config:config-item config:name="DoNotCaptureDrawObjsOnPage" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddVerticalFrameOffsets" config:type="boolean">false</config:config-item>
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsLabelDocument" config:type="boolean">false</config:config-item>
<config:config-item config:name="TableRowKeep" config:type="boolean">true</config:config-item>
<config:config-item config:name="RsidRoot" config:type="int">2067644</config:config-item> <config:config-item config:name="RsidRoot" config:type="int">2067644</config:config-item>
<config:config-item config:name="PrintHiddenText" config:type="boolean">false</config:config-item> <config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="ProtectForm" config:type="boolean">false</config:config-item> <config:config-item config:name="CurrentDatabaseDataSource" config:type="string"/>
<config:config-item config:name="MsWordCompMinLineHeightByFly" config:type="boolean">true</config:config-item> <config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
<config:config-item config:name="BackgroundParaOverDrawings" config:type="boolean">false</config:config-item> <config:config-item config:name="AddFrameOffsets" config:type="boolean">true</config:config-item>
<config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
<config:config-item config:name="Rsid" config:type="int">5372653</config:config-item>
<config:config-item config:name="FootnoteInColumnToPageEnd" config:type="boolean">true</config:config-item>
<config:config-item config:name="ProtectFields" config:type="boolean">false</config:config-item>
<config:config-item config:name="SaveGlobalDocumentLinks" config:type="boolean">false</config:config-item>
<config:config-item config:name="ClipAsCharacterAnchoredWriterFlyFrames" config:type="boolean">false</config:config-item>
<config:config-item config:name="LinkUpdateMode" config:type="short">1</config:config-item>
<config:config-item config:name="AddExternalLeading" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintGraphics" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedSystemFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsLabelDocument" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddParaLineSpacingToTableCells" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseFormerTextWrapping" config:type="boolean">false</config:config-item>
<config:config-item config:name="HyphenateURLs" config:type="boolean">true</config:config-item>
<config:config-item config:name="AddParaTableSpacingAtStart" config:type="boolean">true</config:config-item>
<config:config-item config:name="TabsRelativeToIndent" config:type="boolean">false</config:config-item>
<config:config-item config:name="FieldAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item> <config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">true</config:config-item> <config:config-item config:name="ChartAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="ImagePreferredDPI" config:type="int">0</config:config-item>
<config:config-item config:name="PrinterSetup" config:type="base64Binary"/>
<config:config-item config:name="SmallCapsPercentage66" config:type="boolean">false</config:config-item> <config:config-item config:name="SmallCapsPercentage66" config:type="boolean">false</config:config-item>
<config:config-item config:name="CollapseEmptyCellPara" config:type="boolean">true</config:config-item> <config:config-item config:name="AlignTabStopPosition" config:type="boolean">true</config:config-item>
<config:config-item config:name="DropCapPunctuation" config:type="boolean">false</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrinterName" config:type="string"/>
<config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
<config:config-item config:name="AddParaTableSpacing" config:type="boolean">true</config:config-item>
<config:config-item config:name="DoNotJustifyLinesWithManualBreak" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintHiddenText" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrinterIndependentLayout" config:type="string">high-resolution</config:config-item>
<config:config-item config:name="TabOverflow" config:type="boolean">true</config:config-item> <config:config-item config:name="TabOverflow" config:type="boolean">true</config:config-item>
<config:config-item config:name="AddParaSpacingToTableCells" config:type="boolean">true</config:config-item>
<config:config-item config:name="AddVerticalFrameOffsets" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">true</config:config-item>
<config:config-item config:name="ApplyUserData" config:type="boolean">true</config:config-item>
<config:config-item config:name="MsWordCompMinLineHeightByFly" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintTextPlaceholder" config:type="boolean">false</config:config-item>
<config:config-item config:name="IgnoreFirstLineIndentInNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="UseFormerLineSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintPageBackground" config:type="boolean">true</config:config-item>
<config:config-item config:name="RedlineProtectionKey" config:type="base64Binary"/>
<config:config-item config:name="EmbedAsianScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="BackgroundParaOverDrawings" config:type="boolean">false</config:config-item>
<config:config-item config:name="SaveThumbnail" config:type="boolean">true</config:config-item>
<config:config-item config:name="ConsiderTextWrapOnObjPos" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbeddedDatabaseName" config:type="string"/>
<config:config-item config:name="ProtectForm" config:type="boolean">false</config:config-item>
<config:config-item config:name="DoNotResetParaAttrsForNumFont" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmptyDbFieldHidesPara" config:type="boolean">true</config:config-item>
<config:config-item config:name="TableRowKeep" config:type="boolean">true</config:config-item>
<config:config-item config:name="NoNumberingShowFollowBy" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="IgnoreTabsAndBlanksForLineCalculation" config:type="boolean">false</config:config-item>
<config:config-item config:name="DoNotCaptureDrawObjsOnPage" config:type="boolean">false</config:config-item>
<config:config-item config:name="GutterAtTop" config:type="boolean">false</config:config-item>
<config:config-item config:name="StylesNoDefault" config:type="boolean">false</config:config-item>
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintReversed" config:type="boolean">false</config:config-item>
<config:config-item config:name="UseOldPrinterMetrics" config:type="boolean">false</config:config-item>
<config:config-item config:name="CurrentDatabaseCommandType" config:type="int">0</config:config-item>
<config:config-item config:name="PrintDrawings" config:type="boolean">true</config:config-item>
<config:config-item config:name="OutlineLevelYieldsNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="CurrentDatabaseCommand" config:type="string"/>
<config:config-item config:name="CollapseEmptyCellPara" config:type="boolean">true</config:config-item>
</config:config-item-set> </config:config-item-set>
</office:settings> </office:settings>
<office:scripts> <office:scripts>
@ -162,14 +164,14 @@
</office:font-face-decls> </office:font-face-decls>
<office:styles> <office:styles>
<style:default-style style:family="graphic"> <style:default-style style:family="graphic">
<style:graphic-properties svg:stroke-color="#3465a4" draw:fill-color="#729fcf" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.3cm" draw:shadow-offset-y="0.3cm" draw:start-line-spacing-horizontal="0.283cm" draw:start-line-spacing-vertical="0.283cm" draw:end-line-spacing-horizontal="0.283cm" draw:end-line-spacing-vertical="0.283cm" style:flow-with-text="false"/> <style:graphic-properties svg:stroke-color="#3465a4" draw:fill-color="#729fcf" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.1181in" draw:shadow-offset-y="0.1181in" draw:start-line-spacing-horizontal="0.1114in" draw:start-line-spacing-vertical="0.1114in" draw:end-line-spacing-horizontal="0.1114in" draw:end-line-spacing-vertical="0.1114in" style:writing-mode="lr-tb" style:flow-with-text="false"/>
<style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" style:writing-mode="lr-tb" style:font-independent-line-spacing="false"> <style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" style:font-independent-line-spacing="false">
<style:tab-stops/> <style:tab-stops/>
</style:paragraph-properties> </style:paragraph-properties>
<style:text-properties style:use-window-font-color="true" loext:opacity="0%" loext:color-lum-mod="100%" loext:color-lum-off="0%" style:font-name="Liberation Serif" fo:font-size="12pt" fo:language="es" fo:country="CO" style:letter-kerning="true" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="10.5pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="Droid Sans Devanagari1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN"/> <style:text-properties style:use-window-font-color="true" loext:opacity="0%" loext:color-lum-mod="100%" loext:color-lum-off="0%" style:font-name="Liberation Serif" fo:font-size="12pt" fo:language="es" fo:country="CO" style:letter-kerning="true" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="10.5pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="Droid Sans Devanagari1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN"/>
</style:default-style> </style:default-style>
<style:default-style style:family="paragraph"> <style:default-style style:family="paragraph">
<style:paragraph-properties fo:orphans="2" fo:widows="2" fo:hyphenation-ladder-count="no-limit" style:text-autospace="ideograph-alpha" style:punctuation-wrap="hanging" style:line-break="strict" style:tab-stop-distance="1.251cm" style:writing-mode="lr-tb"/> <style:paragraph-properties fo:orphans="2" fo:widows="2" fo:hyphenation-ladder-count="no-limit" style:text-autospace="ideograph-alpha" style:punctuation-wrap="hanging" style:line-break="strict" style:tab-stop-distance="0.4925in" style:writing-mode="lr-tb"/>
<style:text-properties style:use-window-font-color="true" loext:opacity="0%" style:font-name="Liberation Serif" fo:font-size="12pt" fo:language="es" fo:country="CO" style:letter-kerning="true" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="10.5pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="Droid Sans Devanagari1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN" fo:hyphenate="false" fo:hyphenation-remain-char-count="2" fo:hyphenation-push-char-count="2" loext:hyphenation-no-caps="false" loext:hyphenation-no-last-word="false" loext:hyphenation-word-char-count="5" loext:hyphenation-zone="no-limit"/> <style:text-properties style:use-window-font-color="true" loext:opacity="0%" style:font-name="Liberation Serif" fo:font-size="12pt" fo:language="es" fo:country="CO" style:letter-kerning="true" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="10.5pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="Droid Sans Devanagari1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN" fo:hyphenate="false" fo:hyphenation-remain-char-count="2" fo:hyphenation-push-char-count="2" loext:hyphenation-no-caps="false" loext:hyphenation-no-last-word="false" loext:hyphenation-word-char-count="5" loext:hyphenation-zone="no-limit"/>
</style:default-style> </style:default-style>
<style:default-style style:family="table"> <style:default-style style:family="table">
@ -180,17 +182,17 @@
</style:default-style> </style:default-style>
<style:style style:name="Standard" style:family="paragraph" style:class="text"/> <style:style style:name="Standard" style:family="paragraph" style:class="text"/>
<style:style style:name="Heading" style:family="paragraph" style:parent-style-name="Standard" style:next-style-name="Text_20_body" style:class="text"> <style:style style:name="Heading" style:family="paragraph" style:parent-style-name="Standard" style:next-style-name="Text_20_body" style:class="text">
<style:paragraph-properties fo:margin-top="0.423cm" fo:margin-bottom="0.212cm" style:contextual-spacing="false" fo:keep-with-next="always"/> <style:paragraph-properties fo:margin-top="0.1665in" fo:margin-bottom="0.0835in" style:contextual-spacing="false" fo:keep-with-next="always"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-family="&apos;Liberation Sans&apos;" style:font-family-generic="swiss" style:font-pitch="variable" fo:font-size="14pt" style:font-name-asian="Source Han Sans CN" style:font-family-asian="&apos;Source Han Sans CN&apos;" style:font-family-generic-asian="system" style:font-pitch-asian="variable" style:font-size-asian="14pt" style:font-name-complex="Droid Sans Devanagari1" style:font-family-complex="&apos;Droid Sans Devanagari&apos;" style:font-family-generic-complex="system" style:font-pitch-complex="variable" style:font-size-complex="14pt"/> <style:text-properties style:font-name="Liberation Sans" fo:font-family="&apos;Liberation Sans&apos;" style:font-family-generic="swiss" style:font-pitch="variable" fo:font-size="14pt" style:font-name-asian="Source Han Sans CN" style:font-family-asian="&apos;Source Han Sans CN&apos;" style:font-family-generic-asian="system" style:font-pitch-asian="variable" style:font-size-asian="14pt" style:font-name-complex="Droid Sans Devanagari1" style:font-family-complex="&apos;Droid Sans Devanagari&apos;" style:font-family-generic-complex="system" style:font-pitch-complex="variable" style:font-size-complex="14pt"/>
</style:style> </style:style>
<style:style style:name="Text_20_body" style:display-name="Text body" style:family="paragraph" style:parent-style-name="Standard" style:class="text"> <style:style style:name="Text_20_body" style:display-name="Text body" style:family="paragraph" style:parent-style-name="Standard" style:class="text">
<style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0.247cm" style:contextual-spacing="false" fo:line-height="115%"/> <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0972in" style:contextual-spacing="false" fo:line-height="115%"/>
</style:style> </style:style>
<style:style style:name="List" style:family="paragraph" style:parent-style-name="Text_20_body" style:class="list"> <style:style style:name="List" style:family="paragraph" style:parent-style-name="Text_20_body" style:class="list">
<style:text-properties style:font-size-asian="12pt" style:font-name-complex="Droid Sans Devanagari" style:font-family-complex="&apos;Droid Sans Devanagari&apos;" style:font-family-generic-complex="swiss"/> <style:text-properties style:font-size-asian="12pt" style:font-name-complex="Droid Sans Devanagari" style:font-family-complex="&apos;Droid Sans Devanagari&apos;" style:font-family-generic-complex="swiss"/>
</style:style> </style:style>
<style:style style:name="Caption" style:family="paragraph" style:parent-style-name="Standard" style:class="extra"> <style:style style:name="Caption" style:family="paragraph" style:parent-style-name="Standard" style:class="extra">
<style:paragraph-properties fo:margin-top="0.212cm" fo:margin-bottom="0.212cm" style:contextual-spacing="false" text:number-lines="false" text:line-number="0"/> <style:paragraph-properties fo:margin-top="0.0835in" fo:margin-bottom="0.0835in" style:contextual-spacing="false" text:number-lines="false" text:line-number="0"/>
<style:text-properties fo:font-size="12pt" fo:font-style="italic" style:font-size-asian="12pt" style:font-style-asian="italic" style:font-name-complex="Droid Sans Devanagari" style:font-family-complex="&apos;Droid Sans Devanagari&apos;" style:font-family-generic-complex="swiss" style:font-size-complex="12pt" style:font-style-complex="italic"/> <style:text-properties fo:font-size="12pt" fo:font-style="italic" style:font-size-asian="12pt" style:font-style-asian="italic" style:font-name-complex="Droid Sans Devanagari" style:font-family-complex="&apos;Droid Sans Devanagari&apos;" style:font-family-generic-complex="swiss" style:font-size-complex="12pt" style:font-style-complex="italic"/>
</style:style> </style:style>
<style:style style:name="Index" style:family="paragraph" style:parent-style-name="Standard" style:class="index"> <style:style style:name="Index" style:family="paragraph" style:parent-style-name="Standard" style:class="index">
@ -200,24 +202,24 @@
<style:style style:name="Header_20_and_20_Footer" style:display-name="Header and Footer" style:family="paragraph" style:parent-style-name="Standard" style:class="extra"> <style:style style:name="Header_20_and_20_Footer" style:display-name="Header and Footer" style:family="paragraph" style:parent-style-name="Standard" style:class="extra">
<style:paragraph-properties text:number-lines="false" text:line-number="0"> <style:paragraph-properties text:number-lines="false" text:line-number="0">
<style:tab-stops> <style:tab-stops>
<style:tab-stop style:position="8.795cm" style:type="center"/> <style:tab-stop style:position="3.4626in" style:type="center"/>
<style:tab-stop style:position="17.59cm" style:type="right"/> <style:tab-stop style:position="6.9252in" style:type="right"/>
</style:tab-stops> </style:tab-stops>
</style:paragraph-properties> </style:paragraph-properties>
</style:style> </style:style>
<style:style style:name="Header" style:family="paragraph" style:parent-style-name="Header_20_and_20_Footer" style:class="extra"> <style:style style:name="Header" style:family="paragraph" style:parent-style-name="Header_20_and_20_Footer" style:class="extra">
<style:paragraph-properties text:number-lines="false" text:line-number="0"> <style:paragraph-properties text:number-lines="false" text:line-number="0">
<style:tab-stops> <style:tab-stops>
<style:tab-stop style:position="8.795cm" style:type="center"/> <style:tab-stop style:position="3.4626in" style:type="center"/>
<style:tab-stop style:position="17.59cm" style:type="right"/> <style:tab-stop style:position="6.9252in" style:type="right"/>
</style:tab-stops> </style:tab-stops>
</style:paragraph-properties> </style:paragraph-properties>
</style:style> </style:style>
<style:style style:name="Footer" style:family="paragraph" style:parent-style-name="Standard" style:class="extra"> <style:style style:name="Footer" style:family="paragraph" style:parent-style-name="Standard" style:class="extra">
<style:paragraph-properties text:number-lines="false" text:line-number="0"> <style:paragraph-properties text:number-lines="false" text:line-number="0">
<style:tab-stops> <style:tab-stops>
<style:tab-stop style:position="8.795cm" style:type="center"/> <style:tab-stop style:position="3.4626in" style:type="center"/>
<style:tab-stop style:position="17.59cm" style:type="right"/> <style:tab-stop style:position="6.9252in" style:type="right"/>
</style:tab-stops> </style:tab-stops>
</style:paragraph-properties> </style:paragraph-properties>
<style:text-properties fo:font-size="9pt" style:font-size-asian="10.5pt"/> <style:text-properties fo:font-size="9pt" style:font-size-asian="10.5pt"/>
@ -239,7 +241,7 @@
<style:style style:name="Frame_20_contents" style:display-name="Frame contents" style:family="paragraph" style:parent-style-name="Standard" style:class="extra"/> <style:style style:name="Frame_20_contents" style:display-name="Frame contents" style:family="paragraph" style:parent-style-name="Standard" style:class="extra"/>
<style:style style:name="Text" style:family="paragraph" style:parent-style-name="Caption" style:class="extra"/> <style:style style:name="Text" style:family="paragraph" style:parent-style-name="Caption" style:class="extra"/>
<style:style style:name="Subtitle" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="chapter"> <style:style style:name="Subtitle" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="chapter">
<style:paragraph-properties fo:margin-top="0.106cm" fo:margin-bottom="0.212cm" style:contextual-spacing="false" fo:text-align="center" style:justify-single-word="false"/> <style:paragraph-properties fo:margin-top="0.0417in" fo:margin-bottom="0.0835in" style:contextual-spacing="false" fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties fo:font-size="18pt" style:font-size-asian="18pt" style:font-size-complex="18pt"/> <style:text-properties fo:font-size="18pt" style:font-size-asian="18pt" style:font-size-complex="18pt"/>
</style:style> </style:style>
<style:style style:name="Title" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="chapter"> <style:style style:name="Title" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="chapter">
@ -247,10 +249,10 @@
<style:text-properties fo:font-size="28pt" fo:font-weight="bold" style:font-size-asian="28pt" style:font-weight-asian="bold" style:font-size-complex="28pt" style:font-weight-complex="bold"/> <style:text-properties fo:font-size="28pt" fo:font-weight="bold" style:font-size-asian="28pt" style:font-weight-asian="bold" style:font-size-complex="28pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="Quotations" style:family="paragraph" style:parent-style-name="Standard" style:class="html"> <style:style style:name="Quotations" style:family="paragraph" style:parent-style-name="Standard" style:class="html">
<style:paragraph-properties fo:margin-left="1cm" fo:margin-right="1cm" fo:margin-top="0cm" fo:margin-bottom="0.499cm" style:contextual-spacing="false" fo:text-indent="0cm" style:auto-text-indent="false"/> <style:paragraph-properties fo:margin-left="0.3937in" fo:margin-right="0.3937in" fo:margin-top="0in" fo:margin-bottom="0.1965in" style:contextual-spacing="false" fo:text-indent="0in" style:auto-text-indent="false"/>
</style:style> </style:style>
<style:style style:name="Text_20_body_20_indent" style:display-name="Text body indent" style:family="paragraph" style:parent-style-name="Text_20_body" style:class="text"> <style:style style:name="Text_20_body_20_indent" style:display-name="Text body indent" style:family="paragraph" style:parent-style-name="Text_20_body" style:class="text">
<style:paragraph-properties fo:margin-left="0.499cm" fo:margin-right="0cm" fo:text-indent="0cm" style:auto-text-indent="false"/> <style:paragraph-properties fo:margin-left="0.1965in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
</style:style> </style:style>
<style:style style:name="Heading_20_3" style:display-name="Heading 3" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="text"> <style:style style:name="Heading_20_3" style:display-name="Heading 3" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="text">
<style:text-properties fo:font-size="14pt" fo:font-weight="bold" style:font-size-asian="14pt" style:font-weight-asian="bold" style:font-size-complex="14pt" style:font-weight-complex="bold"/> <style:text-properties fo:font-size="14pt" fo:font-weight="bold" style:font-size-asian="14pt" style:font-weight-asian="bold" style:font-size-complex="14pt" style:font-weight-complex="bold"/>
@ -265,10 +267,10 @@
<style:text-properties style:font-name="StarSymbol" fo:font-family="StarSymbol" fo:font-size="9pt" style:font-name-asian="StarSymbol" style:font-family-asian="StarSymbol" style:font-size-asian="9pt" style:font-name-complex="StarSymbol" style:font-family-complex="StarSymbol" style:font-size-complex="9pt"/> <style:text-properties style:font-name="StarSymbol" fo:font-family="StarSymbol" fo:font-size="9pt" style:font-name-asian="StarSymbol" style:font-family-asian="StarSymbol" style:font-size-asian="9pt" style:font-name-complex="StarSymbol" style:font-family-complex="StarSymbol" style:font-size-complex="9pt"/>
</style:style> </style:style>
<style:style style:name="Graphics" style:family="graphic"> <style:style style:name="Graphics" style:family="graphic">
<style:graphic-properties text:anchor-type="paragraph" svg:x="0cm" svg:y="0cm" style:wrap="dynamic" style:number-wrapped-paragraphs="no-limit" style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph" style:horizontal-pos="center" style:horizontal-rel="paragraph"/> <style:graphic-properties text:anchor-type="paragraph" svg:x="0in" svg:y="0in" style:wrap="dynamic" style:number-wrapped-paragraphs="no-limit" style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph" style:horizontal-pos="center" style:horizontal-rel="paragraph" draw:fill="none"/>
</style:style> </style:style>
<style:style style:name="Frame" style:family="graphic"> <style:style style:name="Frame" style:family="graphic">
<style:graphic-properties text:anchor-type="paragraph" svg:x="0cm" svg:y="0cm" fo:margin-left="0.201cm" fo:margin-right="0.201cm" fo:margin-top="0.201cm" fo:margin-bottom="0.201cm" style:wrap="parallel" style:number-wrapped-paragraphs="no-limit" style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph-content" style:horizontal-pos="center" style:horizontal-rel="paragraph-content" fo:padding="0.15cm" fo:border="0.06pt solid #000000"/> <style:graphic-properties text:anchor-type="paragraph" svg:x="0in" svg:y="0in" fo:margin-left="0.0791in" fo:margin-right="0.0791in" fo:margin-top="0.0791in" fo:margin-bottom="0.0791in" style:wrap="parallel" style:number-wrapped-paragraphs="no-limit" style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph-content" style:horizontal-pos="center" style:horizontal-rel="paragraph-content" draw:fill="none" fo:padding="0.0591in" fo:border="0.06pt solid #000000"/>
</style:style> </style:style>
<text:outline-style style:name="Outline"> <text:outline-style style:name="Outline">
<text:outline-level-style text:level="1" loext:num-list-format="%1%" style:num-format=""> <text:outline-level-style text:level="1" loext:num-list-format="%1%" style:num-format="">
@ -324,17 +326,17 @@
</text:outline-style> </text:outline-style>
<text:notes-configuration text:note-class="footnote" style:num-format="1" text:start-value="0" text:footnotes-position="page" text:start-numbering-at="document"/> <text:notes-configuration text:note-class="footnote" style:num-format="1" text:start-value="0" text:footnotes-position="page" text:start-numbering-at="document"/>
<text:notes-configuration text:note-class="endnote" style:num-format="i" text:start-value="0"/> <text:notes-configuration text:note-class="endnote" style:num-format="i" text:start-value="0"/>
<text:linenumbering-configuration text:number-lines="false" text:offset="0.499cm" style:num-format="1" text:number-position="left" text:increment="5"/> <text:linenumbering-configuration text:number-lines="false" text:offset="0.1965in" style:num-format="1" text:number-position="left" text:increment="5"/>
<number:currency-style style:name="N108P0" style:volatile="true"> <number:currency-style style:name="N130P0" style:volatile="true">
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol> <number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> <number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
</number:currency-style> </number:currency-style>
<number:currency-style style:name="N108"> <number:currency-style style:name="N130">
<style:text-properties fo:color="#ff0000"/> <style:text-properties fo:color="#ff0000"/>
<number:text>-</number:text> <number:text>-</number:text>
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol> <number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> <number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
<style:map style:condition="value()&gt;=0" style:apply-style-name="N108P0"/> <style:map style:condition="value()&gt;=0" style:apply-style-name="N130P0"/>
</number:currency-style> </number:currency-style>
<style:default-page-layout> <style:default-page-layout>
<style:page-layout-properties style:writing-mode="lr-tb" style:layout-grid-standard-mode="true"/> <style:page-layout-properties style:writing-mode="lr-tb" style:layout-grid-standard-mode="true"/>
@ -342,179 +344,179 @@
</office:styles> </office:styles>
<office:automatic-styles> <office:automatic-styles>
<style:style style:name="Tabla4" style:family="table"> <style:style style:name="Tabla4" style:family="table">
<style:table-properties style:width="17.59cm" table:align="margins"/> <style:table-properties style:width="6.925in" table:align="margins"/>
</style:style> </style:style>
<style:style style:name="Tabla4.A" style:family="table-column"> <style:style style:name="Tabla4.A" style:family="table-column">
<style:table-column-properties style:column-width="8.795cm" style:rel-column-width="32767*"/> <style:table-column-properties style:column-width="3.4625in" style:rel-column-width="32767*"/>
</style:style> </style:style>
<style:style style:name="Tabla4.B" style:family="table-column"> <style:style style:name="Tabla4.B" style:family="table-column">
<style:table-column-properties style:column-width="8.795cm" style:rel-column-width="32768*"/> <style:table-column-properties style:column-width="3.4625in" style:rel-column-width="32768*"/>
</style:style> </style:style>
<style:style style:name="Tabla4.A1" style:family="table-cell"> <style:style style:name="Tabla4.A1" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border="none"/> <style:table-cell-properties fo:padding="0.0382in" fo:border="none"/>
</style:style> </style:style>
<style:style style:name="Tabla4" style:family="table"> <style:style style:name="Tabla4" style:family="table">
<style:table-properties style:width="17.59cm" table:align="margins"/> <style:table-properties style:width="6.925in" table:align="margins"/>
</style:style> </style:style>
<style:style style:name="Tabla4.A" style:family="table-column"> <style:style style:name="Tabla4.A" style:family="table-column">
<style:table-column-properties style:column-width="8.795cm" style:rel-column-width="32767*"/> <style:table-column-properties style:column-width="3.4625in" style:rel-column-width="32767*"/>
</style:style> </style:style>
<style:style style:name="Tabla4.B" style:family="table-column"> <style:style style:name="Tabla4.B" style:family="table-column">
<style:table-column-properties style:column-width="8.795cm" style:rel-column-width="32768*"/> <style:table-column-properties style:column-width="3.4625in" style:rel-column-width="32768*"/>
</style:style> </style:style>
<style:style style:name="Tabla4.A1" style:family="table-cell"> <style:style style:name="Tabla4.A1" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border="none"/> <style:table-cell-properties fo:padding="0.0382in" fo:border="none"/>
</style:style> </style:style>
<style:style style:name="Tabla2" style:family="table"> <style:style style:name="Tabla2" style:family="table">
<style:table-properties style:width="17.59cm" table:align="margins"/> <style:table-properties style:width="6.925in" table:align="margins"/>
</style:style> </style:style>
<style:style style:name="Tabla2.A" style:family="table-column"> <style:style style:name="Tabla2.A" style:family="table-column">
<style:table-column-properties style:column-width="8.795cm" style:rel-column-width="32767*"/> <style:table-column-properties style:column-width="3.4625in" style:rel-column-width="32767*"/>
</style:style> </style:style>
<style:style style:name="Tabla2.B" style:family="table-column"> <style:style style:name="Tabla2.B" style:family="table-column">
<style:table-column-properties style:column-width="8.795cm" style:rel-column-width="32768*"/> <style:table-column-properties style:column-width="3.4625in" style:rel-column-width="32768*"/>
</style:style> </style:style>
<style:style style:name="Tabla2.A1" style:family="table-cell"> <style:style style:name="Tabla2.A1" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border="none"/> <style:table-cell-properties fo:padding="0.0382in" fo:border="none"/>
</style:style> </style:style>
<style:style style:name="Tabla5" style:family="table"> <style:style style:name="Tabla5" style:family="table">
<style:table-properties style:width="17.59cm" table:align="margins"/> <style:table-properties style:width="6.925in" table:align="margins"/>
</style:style> </style:style>
<style:style style:name="Tabla5.A" style:family="table-column"> <style:style style:name="Tabla5.A" style:family="table-column">
<style:table-column-properties style:column-width="17.59cm" style:rel-column-width="65535*"/> <style:table-column-properties style:column-width="6.925in" style:rel-column-width="65535*"/>
</style:style> </style:style>
<style:style style:name="Tabla5.A1" style:family="table-cell"> <style:style style:name="Tabla5.A1" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border="none"/> <style:table-cell-properties fo:padding="0.0382in" fo:border="none"/>
</style:style> </style:style>
<style:style style:name="Tabla7" style:family="table"> <style:style style:name="Tabla7" style:family="table">
<style:table-properties style:width="17.59cm" table:align="margins"/> <style:table-properties style:width="6.925in" table:align="margins"/>
</style:style> </style:style>
<style:style style:name="Tabla7.A" style:family="table-column"> <style:style style:name="Tabla7.A" style:family="table-column">
<style:table-column-properties style:column-width="17.59cm" style:rel-column-width="65535*"/> <style:table-column-properties style:column-width="6.925in" style:rel-column-width="65535*"/>
</style:style> </style:style>
<style:style style:name="Tabla7.A1" style:family="table-cell"> <style:style style:name="Tabla7.A1" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border="none"/> <style:table-cell-properties fo:padding="0.0382in" fo:border="none"/>
</style:style> </style:style>
<style:style style:name="Tabla3" style:family="table"> <style:style style:name="Tabla3" style:family="table">
<style:table-properties style:width="17.59cm" table:align="margins"/> <style:table-properties style:width="6.925in" table:align="margins"/>
</style:style> </style:style>
<style:style style:name="Tabla3.A" style:family="table-column"> <style:style style:name="Tabla3.A" style:family="table-column">
<style:table-column-properties style:column-width="8.795cm" style:rel-column-width="32767*"/> <style:table-column-properties style:column-width="3.4625in" style:rel-column-width="32767*"/>
</style:style> </style:style>
<style:style style:name="Tabla3.B" style:family="table-column"> <style:style style:name="Tabla3.B" style:family="table-column">
<style:table-column-properties style:column-width="8.795cm" style:rel-column-width="32768*"/> <style:table-column-properties style:column-width="3.4625in" style:rel-column-width="32768*"/>
</style:style> </style:style>
<style:style style:name="Tabla3.A1" style:family="table-cell"> <style:style style:name="Tabla3.A1" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border="none"/> <style:table-cell-properties fo:padding="0.0382in" fo:border="none"/>
</style:style> </style:style>
<style:style style:name="Tabla6" style:family="table"> <style:style style:name="Tabla6" style:family="table">
<style:table-properties style:width="17.59cm" table:align="margins"/> <style:table-properties style:width="6.925in" table:align="margins"/>
</style:style> </style:style>
<style:style style:name="Tabla6.A" style:family="table-column"> <style:style style:name="Tabla6.A" style:family="table-column">
<style:table-column-properties style:column-width="3.194cm" style:rel-column-width="11901*"/> <style:table-column-properties style:column-width="1.2576in" style:rel-column-width="11901*"/>
</style:style> </style:style>
<style:style style:name="Tabla6.B" style:family="table-column"> <style:style style:name="Tabla6.B" style:family="table-column">
<style:table-column-properties style:column-width="5.6cm" style:rel-column-width="20865*"/> <style:table-column-properties style:column-width="2.2049in" style:rel-column-width="20865*"/>
</style:style> </style:style>
<style:style style:name="Tabla6.C" style:family="table-column"> <style:style style:name="Tabla6.C" style:family="table-column">
<style:table-column-properties style:column-width="2.298cm" style:rel-column-width="8563*"/> <style:table-column-properties style:column-width="0.9049in" style:rel-column-width="8563*"/>
</style:style> </style:style>
<style:style style:name="Tabla6.D" style:family="table-column"> <style:style style:name="Tabla6.D" style:family="table-column">
<style:table-column-properties style:column-width="6.496cm" style:rel-column-width="24206*"/> <style:table-column-properties style:column-width="2.5576in" style:rel-column-width="24206*"/>
</style:style> </style:style>
<style:style style:name="Tabla6.A1" style:family="table-cell"> <style:style style:name="Tabla6.A1" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border="0.5pt solid #000000"/> <style:table-cell-properties fo:padding="0.0382in" fo:border="0.5pt solid #000000"/>
</style:style> </style:style>
<style:style style:name="Tabla6.A2" style:family="table-cell"> <style:style style:name="Tabla6.A2" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.5pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/> <style:table-cell-properties fo:padding="0.0382in" fo:border-left="0.5pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/>
</style:style> </style:style>
<style:style style:name="Tabla6.D2" style:family="table-cell"> <style:style style:name="Tabla6.D2" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.5pt solid #000000" fo:border-right="0.5pt solid #000000" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/> <style:table-cell-properties fo:padding="0.0382in" fo:border-left="0.5pt solid #000000" fo:border-right="0.5pt solid #000000" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/>
</style:style> </style:style>
<style:style style:name="Tabla8" style:family="table"> <style:style style:name="Tabla8" style:family="table">
<style:table-properties style:width="17.59cm" table:align="margins"/> <style:table-properties style:width="6.925in" table:align="margins"/>
</style:style> </style:style>
<style:style style:name="Tabla8.A" style:family="table-column"> <style:style style:name="Tabla8.A" style:family="table-column">
<style:table-column-properties style:column-width="5.863cm" style:rel-column-width="21845*"/> <style:table-column-properties style:column-width="2.3083in" style:rel-column-width="21845*"/>
</style:style> </style:style>
<style:style style:name="Tabla8.B" style:family="table-column"> <style:style style:name="Tabla8.B" style:family="table-column">
<style:table-column-properties style:column-width="5.93cm" style:rel-column-width="22094*"/> <style:table-column-properties style:column-width="2.3347in" style:rel-column-width="22094*"/>
</style:style> </style:style>
<style:style style:name="Tabla8.C" style:family="table-column"> <style:style style:name="Tabla8.C" style:family="table-column">
<style:table-column-properties style:column-width="5.796cm" style:rel-column-width="21596*"/> <style:table-column-properties style:column-width="2.2819in" style:rel-column-width="21596*"/>
</style:style> </style:style>
<style:style style:name="Tabla8.A1" style:family="table-cell"> <style:style style:name="Tabla8.A1" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border="0.5pt solid #000000"/> <style:table-cell-properties fo:padding="0.0382in" fo:border="0.5pt solid #000000"/>
</style:style> </style:style>
<style:style style:name="Tabla8.A2" style:family="table-cell"> <style:style style:name="Tabla8.A2" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.5pt solid #000000" fo:border-right="none" fo:border-top="0.5pt solid #000000" fo:border-bottom="0.5pt solid #000000"/> <style:table-cell-properties fo:padding="0.0382in" fo:border-left="0.5pt solid #000000" fo:border-right="none" fo:border-top="0.5pt solid #000000" fo:border-bottom="0.5pt solid #000000"/>
</style:style> </style:style>
<style:style style:name="Tabla8.A3" style:family="table-cell"> <style:style style:name="Tabla8.A3" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.5pt solid #000000" fo:border-right="0.5pt solid #000000" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/> <style:table-cell-properties fo:padding="0.0382in" fo:border-left="0.5pt solid #000000" fo:border-right="0.5pt solid #000000" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/>
</style:style> </style:style>
<style:style style:name="Tabla8.A4" style:family="table-cell"> <style:style style:name="Tabla8.A4" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.5pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/> <style:table-cell-properties fo:padding="0.0382in" fo:border-left="0.5pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/>
</style:style> </style:style>
<style:style style:name="Tabla1" style:family="table"> <style:style style:name="Tabla1" style:family="table">
<style:table-properties style:width="17.575cm" table:align="left"/> <style:table-properties style:width="6.9194in" table:align="left"/>
</style:style> </style:style>
<style:style style:name="Tabla1.A" style:family="table-column"> <style:style style:name="Tabla1.A" style:family="table-column">
<style:table-column-properties style:column-width="2.401cm"/> <style:table-column-properties style:column-width="0.9451in"/>
</style:style> </style:style>
<style:style style:name="Tabla1.B" style:family="table-column"> <style:style style:name="Tabla1.B" style:family="table-column">
<style:table-column-properties style:column-width="3.704cm"/> <style:table-column-properties style:column-width="1.4583in"/>
</style:style> </style:style>
<style:style style:name="Tabla1.C" style:family="table-column"> <style:style style:name="Tabla1.C" style:family="table-column">
<style:table-column-properties style:column-width="4.281cm"/> <style:table-column-properties style:column-width="1.6854in"/>
</style:style> </style:style>
<style:style style:name="Tabla1.D" style:family="table-column"> <style:style style:name="Tabla1.D" style:family="table-column">
<style:table-column-properties style:column-width="4.62cm"/> <style:table-column-properties style:column-width="1.8188in"/>
</style:style> </style:style>
<style:style style:name="Tabla1.E" style:family="table-column"> <style:style style:name="Tabla1.E" style:family="table-column">
<style:table-column-properties style:column-width="2.57cm"/> <style:table-column-properties style:column-width="1.0118in"/>
</style:style> </style:style>
<style:style style:name="Tabla1.A1" style:family="table-cell"> <style:style style:name="Tabla1.A1" style:family="table-cell">
<style:table-cell-properties fo:background-color="transparent" fo:padding="0.097cm" fo:border-left="0.5pt solid #355269" fo:border-right="none" fo:border-top="0.5pt solid #355269" fo:border-bottom="0.5pt solid #355269"> <style:table-cell-properties fo:background-color="transparent" fo:padding="0.0382in" fo:border-left="0.5pt solid #355269" fo:border-right="none" fo:border-top="0.5pt solid #355269" fo:border-bottom="0.5pt solid #355269">
<style:background-image/> <style:background-image/>
</style:table-cell-properties> </style:table-cell-properties>
</style:style> </style:style>
<style:style style:name="Tabla1.E1" style:family="table-cell"> <style:style style:name="Tabla1.E1" style:family="table-cell">
<style:table-cell-properties fo:background-color="transparent" fo:padding="0.097cm" fo:border="0.5pt solid #355269"> <style:table-cell-properties fo:background-color="transparent" fo:padding="0.0382in" fo:border="0.5pt solid #355269">
<style:background-image/> <style:background-image/>
</style:table-cell-properties> </style:table-cell-properties>
</style:style> </style:style>
<style:style style:name="Tabla1.A2" style:family="table-cell"> <style:style style:name="Tabla1.A2" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.5pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/> <style:table-cell-properties fo:padding="0.0382in" fo:border-left="0.5pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/>
</style:style> </style:style>
<style:style style:name="Tabla1.D2" style:family="table-cell"> <style:style style:name="Tabla1.D2" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.5pt solid #000000" fo:border-right="0.5pt solid #000000" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/> <style:table-cell-properties fo:padding="0.0382in" fo:border-left="0.5pt solid #000000" fo:border-right="0.5pt solid #000000" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/>
</style:style> </style:style>
<style:style style:name="Tabla1.A3" style:family="table-cell"> <style:style style:name="Tabla1.A3" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.5pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/> <style:table-cell-properties fo:padding="0.0382in" fo:border-left="0.5pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/>
</style:style> </style:style>
<style:style style:name="Tabla1.B3" style:family="table-cell"> <style:style style:name="Tabla1.B3" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.5pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/> <style:table-cell-properties fo:padding="0.0382in" fo:border-left="0.5pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/>
</style:style> </style:style>
<style:style style:name="Tabla1.C3" style:family="table-cell"> <style:style style:name="Tabla1.C3" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.5pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/> <style:table-cell-properties fo:padding="0.0382in" fo:border-left="0.5pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/>
</style:style> </style:style>
<style:style style:name="Tabla1.D3" style:family="table-cell"> <style:style style:name="Tabla1.D3" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.5pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/> <style:table-cell-properties fo:padding="0.0382in" fo:border-left="0.5pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/>
</style:style> </style:style>
<style:style style:name="Tabla1.E3" style:family="table-cell"> <style:style style:name="Tabla1.E3" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.5pt solid #000000" fo:border-right="0.5pt solid #000000" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/> <style:table-cell-properties fo:padding="0.0382in" fo:border-left="0.5pt solid #000000" fo:border-right="0.5pt solid #000000" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/>
</style:style> </style:style>
<style:style style:name="Tabla1.4" style:family="table-row"> <style:style style:name="Tabla1.4" style:family="table-row">
<style:table-row-properties style:min-row-height="0.718cm"/> <style:table-row-properties style:min-row-height="0.2826in"/>
</style:style> </style:style>
<style:style style:name="Tabla1.A4" style:family="table-cell"> <style:style style:name="Tabla1.A4" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.5pt solid #000000" fo:border-right="0.5pt solid #000000" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/> <style:table-cell-properties fo:padding="0.0382in" fo:border-left="0.5pt solid #000000" fo:border-right="0.5pt solid #000000" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/>
</style:style> </style:style>
<style:style style:name="Tabla1.5" style:family="table-row"> <style:style style:name="Tabla1.5" style:family="table-row">
<style:table-row-properties style:min-row-height="0.598cm"/> <style:table-row-properties style:min-row-height="0.2354in"/>
</style:style> </style:style>
<style:style style:name="Tabla1.A5" style:family="table-cell"> <style:style style:name="Tabla1.A5" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.5pt solid #000000" fo:border-right="0.5pt solid #000000" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/> <style:table-cell-properties fo:padding="0.0382in" fo:border-left="0.5pt solid #000000" fo:border-right="0.5pt solid #000000" fo:border-top="none" fo:border-bottom="0.5pt solid #000000"/>
</style:style> </style:style>
<style:style style:name="P1" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P1" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/> <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
@ -533,7 +535,7 @@
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-size-complex="7pt"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style> </style:style>
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P5" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-size-complex="7pt"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style> </style:style>
<style:style style:name="P6" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P6" style:family="paragraph" style:parent-style-name="Header">
@ -549,7 +551,7 @@
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-type="double" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/> <style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-type="double" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P9" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P9" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-style-complex="normal" style:font-weight-complex="normal"/> <style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="P10" style:family="paragraph" style:parent-style-name="Footer"> <style:style style:name="P10" style:family="paragraph" style:parent-style-name="Footer">
@ -568,7 +570,7 @@
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-size-complex="7pt"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style> </style:style>
<style:style style:name="P14" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P14" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-size-complex="7pt"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style> </style:style>
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P15" style:family="paragraph" style:parent-style-name="Header">
@ -582,7 +584,7 @@
<style:style style:name="P17" style:family="paragraph" style:parent-style-name="Standard" style:master-page-name=""> <style:style style:name="P17" style:family="paragraph" style:parent-style-name="Standard" style:master-page-name="">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:page-number="1"> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:page-number="1">
<style:tab-stops> <style:tab-stops>
<style:tab-stop style:position="9.252cm"/> <style:tab-stop style:position="3.6425in"/>
</style:tab-stops> </style:tab-stops>
</style:paragraph-properties> </style:paragraph-properties>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-weight="normal" officeooo:paragraph-rsid="004cb448" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-weight-complex="normal"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-weight="normal" officeooo:paragraph-rsid="004cb448" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
@ -590,7 +592,7 @@
<style:style style:name="P18" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P18" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false">
<style:tab-stops> <style:tab-stops>
<style:tab-stop style:position="9.252cm"/> <style:tab-stop style:position="3.6425in"/>
</style:tab-stops> </style:tab-stops>
</style:paragraph-properties> </style:paragraph-properties>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-weight="normal" officeooo:paragraph-rsid="004cb448" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-weight-complex="normal"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-weight="normal" officeooo:paragraph-rsid="004cb448" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
@ -605,7 +607,7 @@
<style:style style:name="P21" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P21" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false">
<style:tab-stops> <style:tab-stops>
<style:tab-stop style:position="9.252cm"/> <style:tab-stop style:position="3.6425in"/>
</style:tab-stops> </style:tab-stops>
</style:paragraph-properties> </style:paragraph-properties>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:paragraph-rsid="003f4f1d" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="bold"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:paragraph-rsid="003f4f1d" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
@ -613,7 +615,7 @@
<style:style style:name="P22" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P22" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false">
<style:tab-stops> <style:tab-stops>
<style:tab-stop style:position="9.252cm"/> <style:tab-stop style:position="3.6425in"/>
</style:tab-stops> </style:tab-stops>
</style:paragraph-properties> </style:paragraph-properties>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:paragraph-rsid="00424469" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="bold"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:paragraph-rsid="00424469" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
@ -621,7 +623,7 @@
<style:style style:name="P23" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P23" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false">
<style:tab-stops> <style:tab-stops>
<style:tab-stop style:position="9.252cm"/> <style:tab-stop style:position="3.6425in"/>
</style:tab-stops> </style:tab-stops>
</style:paragraph-properties> </style:paragraph-properties>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:paragraph-rsid="004cb448" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="bold"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:paragraph-rsid="004cb448" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
@ -650,7 +652,7 @@
<style:style style:name="P30" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P30" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false">
<style:tab-stops> <style:tab-stops>
<style:tab-stop style:position="9.252cm"/> <style:tab-stop style:position="3.6425in"/>
</style:tab-stops> </style:tab-stops>
</style:paragraph-properties> </style:paragraph-properties>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:paragraph-rsid="004cb448" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:paragraph-rsid="004cb448" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
@ -658,7 +660,7 @@
<style:style style:name="P31" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P31" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" fo:break-before="page"> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false" fo:break-before="page">
<style:tab-stops> <style:tab-stops>
<style:tab-stop style:position="9.252cm"/> <style:tab-stop style:position="3.6425in"/>
</style:tab-stops> </style:tab-stops>
</style:paragraph-properties> </style:paragraph-properties>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:paragraph-rsid="004cb448" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:paragraph-rsid="004cb448" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
@ -694,7 +696,7 @@
<style:style style:name="P40" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P40" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false">
<style:tab-stops> <style:tab-stops>
<style:tab-stop style:position="9.252cm"/> <style:tab-stop style:position="3.6425in"/>
</style:tab-stops> </style:tab-stops>
</style:paragraph-properties> </style:paragraph-properties>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:paragraph-rsid="00424469" style:font-size-asian="8pt" style:font-size-complex="8pt"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:paragraph-rsid="00424469" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
@ -702,7 +704,7 @@
<style:style style:name="P41" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P41" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false">
<style:tab-stops> <style:tab-stops>
<style:tab-stop style:position="9.252cm"/> <style:tab-stop style:position="3.6425in"/>
</style:tab-stops> </style:tab-stops>
</style:paragraph-properties> </style:paragraph-properties>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:paragraph-rsid="004cb448" style:font-size-asian="8pt" style:font-size-complex="8pt"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:paragraph-rsid="004cb448" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
@ -800,13 +802,13 @@
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-type="double" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/> <style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-type="double" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P68" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P68" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-style-complex="normal" style:font-weight-complex="normal"/> <style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="P69" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P69" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false">
<style:tab-stops> <style:tab-stops>
<style:tab-stop style:position="9.252cm"/> <style:tab-stop style:position="3.6425in"/>
</style:tab-stops> </style:tab-stops>
</style:paragraph-properties> </style:paragraph-properties>
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="004cb448" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-style-complex="normal" style:font-weight-complex="normal"/> <style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="004cb448" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
@ -882,7 +884,7 @@
<style:style style:name="P89" style:family="paragraph" style:parent-style-name="Standard" style:master-page-name="Standard"> <style:style style:name="P89" style:family="paragraph" style:parent-style-name="Standard" style:master-page-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:page-number="1"> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:page-number="1">
<style:tab-stops> <style:tab-stops>
<style:tab-stop style:position="9.252cm"/> <style:tab-stop style:position="3.6425in"/>
</style:tab-stops> </style:tab-stops>
</style:paragraph-properties> </style:paragraph-properties>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-weight="normal" officeooo:paragraph-rsid="004cb448" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-weight-complex="normal"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-weight="normal" officeooo:paragraph-rsid="004cb448" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
@ -890,10 +892,13 @@
<style:style style:name="P90" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P90" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false">
<style:tab-stops> <style:tab-stops>
<style:tab-stop style:position="9.252cm"/> <style:tab-stop style:position="3.6425in"/>
</style:tab-stops> </style:tab-stops>
</style:paragraph-properties> </style:paragraph-properties>
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="004cb448" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-style-complex="normal" style:font-weight-complex="normal"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="bold" officeooo:paragraph-rsid="0051faed" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P91" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="00205712" officeooo:paragraph-rsid="0051faed" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="T1" style:family="text"> <style:style style:name="T1" style:family="text">
<style:text-properties fo:color="#333333" loext:opacity="100%" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-weight-asian="bold" style:font-weight-complex="bold"/> <style:text-properties fo:color="#333333" loext:opacity="100%" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
@ -1084,23 +1089,26 @@
<style:style style:name="T63" style:family="text"> <style:style style:name="T63" style:family="text">
<style:text-properties officeooo:rsid="000cde7f"/> <style:text-properties officeooo:rsid="000cde7f"/>
</style:style> </style:style>
<style:style style:name="T64" style:family="text">
<style:text-properties officeooo:rsid="001b9ac0"/>
</style:style>
<style:style style:name="fr1" style:family="graphic" style:parent-style-name="Graphics"> <style:style style:name="fr1" style:family="graphic" style:parent-style-name="Graphics">
<style:graphic-properties style:vertical-pos="from-top" style:horizontal-pos="from-left" style:horizontal-rel="paragraph" style:mirror="none" fo:clip="rect(0cm, 0cm, 0cm, 0cm)" draw:luminance="0%" draw:contrast="0%" draw:red="0%" draw:green="0%" draw:blue="0%" draw:gamma="100%" draw:color-inversion="false" draw:image-opacity="100%" draw:color-mode="standard"/> <style:graphic-properties style:vertical-pos="from-top" style:horizontal-pos="from-left" style:horizontal-rel="paragraph" style:mirror="none" fo:clip="rect(0in, 0in, 0in, 0in)" draw:luminance="0%" draw:contrast="0%" draw:red="0%" draw:green="0%" draw:blue="0%" draw:gamma="100%" draw:color-inversion="false" draw:image-opacity="100%" draw:color-mode="standard"/>
</style:style> </style:style>
<style:style style:name="fr2" style:family="graphic" style:parent-style-name="Frame"> <style:style style:name="fr2" style:family="graphic" style:parent-style-name="Frame">
<style:graphic-properties style:run-through="foreground" style:wrap="none" style:vertical-pos="bottom" style:vertical-rel="paragraph" style:horizontal-pos="center" style:horizontal-rel="paragraph" fo:padding="0.15cm" fo:border="none" draw:wrap-influence-on-position="once-concurrent" loext:allow-overlap="true"> <style:graphic-properties style:run-through="foreground" style:wrap="none" style:vertical-pos="bottom" style:vertical-rel="paragraph" style:horizontal-pos="center" style:horizontal-rel="paragraph" fo:padding="0.0591in" fo:border="none" draw:wrap-influence-on-position="once-concurrent" loext:allow-overlap="true">
<style:columns fo:column-count="1" fo:column-gap="0cm"/> <style:columns fo:column-count="1" fo:column-gap="0in"/>
</style:graphic-properties> </style:graphic-properties>
</style:style> </style:style>
<style:page-layout style:name="pm1"> <style:page-layout style:name="pm1">
<style:page-layout-properties fo:page-width="21.59cm" fo:page-height="27.94cm" style:num-format="1" style:print-orientation="portrait" fo:margin-top="2cm" fo:margin-bottom="2cm" fo:margin-left="2cm" fo:margin-right="2cm" style:writing-mode="lr-tb" style:layout-grid-color="#c0c0c0" style:layout-grid-lines="44" style:layout-grid-base-height="0.55cm" style:layout-grid-ruby-height="0cm" style:layout-grid-mode="none" style:layout-grid-ruby-below="false" style:layout-grid-print="true" style:layout-grid-display="true" style:layout-grid-base-width="0.37cm" style:layout-grid-snap-to="true" style:footnote-max-height="0cm" loext:margin-gutter="0cm"> <style:page-layout-properties fo:page-width="8.5in" fo:page-height="11in" style:num-format="1" style:print-orientation="portrait" fo:margin-top="0.7874in" fo:margin-bottom="0.7874in" fo:margin-left="0.7874in" fo:margin-right="0.7874in" style:writing-mode="lr-tb" style:layout-grid-color="#c0c0c0" style:layout-grid-lines="44" style:layout-grid-base-height="0.2165in" style:layout-grid-ruby-height="0in" style:layout-grid-mode="none" style:layout-grid-ruby-below="false" style:layout-grid-print="true" style:layout-grid-display="true" style:layout-grid-base-width="0.1457in" style:layout-grid-snap-to="true" style:footnote-max-height="0in" loext:margin-gutter="0in">
<style:footnote-sep style:width="0.018cm" style:distance-before-sep="0.101cm" style:distance-after-sep="0.101cm" style:line-style="solid" style:adjustment="left" style:rel-width="25%" style:color="#000000"/> <style:footnote-sep style:width="0.0071in" style:distance-before-sep="0.0398in" style:distance-after-sep="0.0398in" style:line-style="solid" style:adjustment="left" style:rel-width="25%" style:color="#000000"/>
</style:page-layout-properties> </style:page-layout-properties>
<style:header-style> <style:header-style>
<style:header-footer-properties fo:min-height="0cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-bottom="0.499cm" fo:background-color="transparent" draw:fill="none" draw:fill-color="#729fcf"/> <style:header-footer-properties fo:min-height="0in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-bottom="0.1965in" fo:background-color="transparent" draw:fill="none" draw:fill-color="#729fcf"/>
</style:header-style> </style:header-style>
<style:footer-style> <style:footer-style>
<style:header-footer-properties fo:min-height="0cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0.499cm" fo:background-color="transparent" draw:fill="none" draw:fill-color="#729fcf"/> <style:header-footer-properties fo:min-height="0in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0.1965in" fo:background-color="transparent" draw:fill="none" draw:fill-color="#729fcf"/>
</style:footer-style> </style:footer-style>
</style:page-layout> </style:page-layout>
<style:style style:name="dp1" style:family="drawing-page"> <style:style style:name="dp1" style:family="drawing-page">
@ -1115,7 +1123,7 @@
<table:table-column table:style-name="Tabla4.B"/> <table:table-column table:style-name="Tabla4.B"/>
<table:table-row> <table:table-row>
<table:table-cell table:style-name="Tabla4.A1" office:value-type="string"> <table:table-cell table:style-name="Tabla4.A1" office:value-type="string">
<text:p text:style-name="Table_20_Contents"><draw:frame draw:style-name="fr1" draw:name="Imagen1" text:anchor-type="as-char" svg:y="-0.078cm" svg:width="5.673cm" svg:height="1.249cm" draw:z-index="4"><draw:image draw:mime-type="image/jpeg"> <text:p text:style-name="Table_20_Contents"><draw:frame draw:style-name="fr1" draw:name="Imagen1" text:anchor-type="as-char" svg:y="-0.0307in" svg:width="2.2335in" svg:height="0.4917in" draw:z-index="4"><draw:image draw:mime-type="image/jpeg">
<office:binary-data>/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgK <office:binary-data>/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgK
CgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/2wBDAQMDAwQDBAgEBAgQCwkL CgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/2wBDAQMDAwQDBAgEBAgQCwkL
EBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBD/wAAR EBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBD/wAAR
@ -1791,7 +1799,7 @@
<text:p text:style-name="Standard"/> <text:p text:style-name="Standard"/>
</style:header> </style:header>
<style:footer> <style:footer>
<text:p text:style-name="P10"><text:span text:style-name="T12">Pagina</text:span> <text:page-number text:select-page="current">3</text:page-number></text:p> <text:p text:style-name="P10"><text:span text:style-name="T12">Pagina</text:span> <text:page-number text:select-page="current">1</text:page-number></text:p>
</style:footer> </style:footer>
</style:master-page> </style:master-page>
</office:master-styles> </office:master-styles>
@ -1859,8 +1867,8 @@
<text:p text:style-name="P60"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;maintenance.equipment.product.use_pattern.id==4&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P60"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;maintenance.equipment.product.use_pattern.id==4&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P37"><text:span text:style-name="T47">Patrón utilizado: </text:span><text:span text:style-name="T37">Esferas de Calibración</text:span></text:p> <text:p text:style-name="P37"><text:span text:style-name="T47">Patrón utilizado: </text:span><text:span text:style-name="T37">Esferas de Calibración</text:span></text:p>
<text:p text:style-name="P61"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p> <text:p text:style-name="P61"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p>
<text:p text:style-name="P61"><text:placeholder text:placeholder-type="text">&lt;otherwise test=&quot;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P61"><text:soft-page-break/><text:placeholder text:placeholder-type="text">&lt;otherwise test=&quot;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P61"><text:soft-page-break/><text:span text:style-name="T58">Patrón utilizado: </text:span><text:span text:style-name="T61">Barras de Calibración</text:span></text:p> <text:p text:style-name="P61"><text:span text:style-name="T58">Patrón utilizado: </text:span><text:span text:style-name="T61">Barras de Calibración</text:span></text:p>
<text:p text:style-name="P58"><text:placeholder text:placeholder-type="text">&lt;/otherwise&gt;</text:placeholder></text:p> <text:p text:style-name="P58"><text:placeholder text:placeholder-type="text">&lt;/otherwise&gt;</text:placeholder></text:p>
<text:p text:style-name="P88"><text:placeholder text:placeholder-type="text">&lt;/choose&gt;</text:placeholder></text:p> <text:p text:style-name="P88"><text:placeholder text:placeholder-type="text">&lt;/choose&gt;</text:placeholder></text:p>
<text:p text:style-name="P57"><text:placeholder text:placeholder-type="text">&lt;choose test=&quot;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P57"><text:placeholder text:placeholder-type="text">&lt;choose test=&quot;&quot;&gt;</text:placeholder></text:p>
@ -1909,13 +1917,13 @@
<text:p text:style-name="P27">Temperatura Min</text:p> <text:p text:style-name="P27">Temperatura Min</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla6.A2" office:value-type="string"> <table:table-cell table:style-name="Tabla6.A2" office:value-type="string">
<text:p text:style-name="P52"><text:placeholder text:placeholder-type="text" text:description="str(maintenance.temperature_min) + str(maintenance.temperature_uom.symbol) if maintenance.temperature_min else &quot;&quot;">&lt;str(maintenance.temperature_min) + str(maintenance.temperature_uom.symbol) if maintenance.temperature_min else &quot;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P52"><text:placeholder text:placeholder-type="text" text:description="str(maintenance.temperature_min) + str(maintenance.temperature_uom.symbol) if maintenance.temperature_min else &quot;&quot;">&lt;str(maintenance.temperature_min) + str(maintenance.temperature_uom.symbol) if maintenance.temperature_min else &quot;&quot;&gt;</text:placeholder><text:soft-page-break/></text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla6.A2" office:value-type="string"> <table:table-cell table:style-name="Tabla6.A2" office:value-type="string">
<text:p text:style-name="P27">Humedad Min</text:p> <text:p text:style-name="P27">Humedad Min</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla6.D2" office:value-type="string"> <table:table-cell table:style-name="Tabla6.D2" office:value-type="string">
<text:p text:style-name="P52"><text:placeholder text:placeholder-type="text" text:description="str(maintenance.moisture_min) + str(maintenance.equipment.product.moisture_uom.symbol) if maintenance.moisture_min else &quot;&quot;">&lt;str(maintenance.moisture_min) + str(maintenance.equipment.product.moisture_uom.symbol) if maintenance.moisture_min else &quot;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P52"><text:placeholder text:placeholder-type="text" text:description="str(maintenance.moisture_min) + str(maintenance.equipment.product.moisture_uom.symbol) if maintenance.moisture_min else &quot;&quot;">&lt;str(maintenance.moisture_min) + str(maintenance.equipment.product.moisture_uom.symbol) if maintenance.moisture_min else &quot;&quot;&gt;</text:placeholder><text:soft-page-break/></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
<table:table-row> <table:table-row>
@ -1933,7 +1941,7 @@
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
</table:table> </table:table>
<text:p text:style-name="P75"><text:soft-page-break/></text:p> <text:p text:style-name="P75"/>
<text:p text:style-name="P80"/> <text:p text:style-name="P80"/>
<table:table table:name="Tabla8" table:style-name="Tabla8"> <table:table table:name="Tabla8" table:style-name="Tabla8">
<table:table-column table:style-name="Tabla8.A"/> <table:table-column table:style-name="Tabla8.A"/>
@ -2058,18 +2066,18 @@
<table:covered-table-cell/> <table:covered-table-cell/>
</table:table-row> </table:table-row>
</table:table> </table:table>
<text:p text:style-name="P73"><draw:frame draw:style-name="fr2" draw:name="image: (maintenance.graph_calibration, &apos;image/png&apos;)" text:anchor-type="char" svg:width="8.719cm" svg:height="6.537cm" draw:z-index="5"> <text:p text:style-name="P73"><draw:frame draw:style-name="fr2" draw:name="image: (maintenance.graph_calibration, &apos;image/png&apos;)" text:anchor-type="char" svg:width="3.4327in" svg:height="2.5736in" draw:z-index="5">
<draw:text-box> <draw:text-box>
<text:p text:style-name="P87"/> <text:p text:style-name="P87"/>
<text:p text:style-name="Text">Texto <text:sequence text:ref-name="refText0" text:name="Text" text:formula="ooow:Text+1" style:num-format="1">1</text:sequence>: </text:p> <text:p text:style-name="Text">Texto <text:sequence text:ref-name="refText0" text:name="Text" text:formula="ooow:Text+1" style:num-format="1">1</text:sequence>: </text:p>
</draw:text-box> </draw:text-box>
</draw:frame></text:p> </draw:frame><text:soft-page-break/></text:p>
<text:p text:style-name="P46"><text:soft-page-break/><text:span text:style-name="T53">Este certificado expresa fielmente el resultado de las mediciones realizadas. Los resultados </text:span><text:span text:style-name="T51">contenidos en el presente certificado se refieren al momento y condiciones en que se realizaron las mediciones. No nos responsabilizamos de los perjuicios que pueden derivarse del uso inadecuado de los instrumentos calibrados. El usuario es responsable de la recalibración de sus instrumentos a intervalos apropiados.</text:span></text:p> <text:p text:style-name="P46"><text:span text:style-name="T53">Este certificado expresa fielmente el resultado de las mediciones realizadas. Los resultados </text:span><text:span text:style-name="T51">contenidos en el presente certificado se refieren al momento y condiciones en que se realizaron las mediciones. No nos responsabilizamos de los perjuicios que pueden derivarse del uso inadecuado de los instrumentos calibrados. El usuario es responsable de la recalibración de sus instrumentos a intervalos apropiados.</text:span></text:p>
<text:p text:style-name="P77"/> <text:p text:style-name="P77"/>
<text:p text:style-name="P77"/> <text:p text:style-name="P77"/>
<text:p text:style-name="P77"/> <text:p text:style-name="P77"/>
<text:p text:style-name="P21">ANTHONY STIVEN RODRIGUEZ FONSECA </text:p> <text:p text:style-name="P91"><text:span text:style-name="T64"><text:placeholder text:placeholder-type="text" text:description="maintenance.technician_responsible">&lt;maintenance.technician_responsible&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P23">INVIMA : RH-202208-01301</text:p> <text:p text:style-name="P90">INVIMA : <text:span text:style-name="T64"><text:placeholder text:placeholder-type="text" text:description="maintenance.invima">&lt;maintenance.invima&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P30"/> <text:p text:style-name="P30"/>
<text:p text:style-name="P89"/> <text:p text:style-name="P89"/>
<text:p text:style-name="P69"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p> <text:p text:style-name="P69"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p>

View File

@ -1,24 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text"> <office:document xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:creation-date>2022-09-12T08:15:04.977101930</meta:creation-date><dc:date>2023-04-10T01:15:33.119308667</dc:date><meta:editing-duration>PT3H7M2S</meta:editing-duration><meta:editing-cycles>43</meta:editing-cycles><meta:generator>LibreOffice/7.4.6.2$Linux_X86_64 LibreOffice_project/40$Build-2</meta:generator><meta:document-statistic meta:table-count="5" meta:image-count="2" meta:object-count="0" meta:page-count="3" meta:paragraph-count="93" meta:word-count="1514" meta:character-count="10527" meta:non-whitespace-character-count="9014"/></office:meta> <office:meta><meta:creation-date>2022-09-12T08:15:04.977101930</meta:creation-date><dc:date>2023-06-05T14:19:19.427278694</dc:date><meta:editing-duration>PT3H9M36S</meta:editing-duration><meta:editing-cycles>44</meta:editing-cycles><meta:generator>LibreOffice/7.4.6.2$Linux_X86_64 LibreOffice_project/40$Build-2</meta:generator><meta:document-statistic meta:table-count="5" meta:image-count="2" meta:object-count="0" meta:page-count="3" meta:paragraph-count="93" meta:word-count="1514" meta:character-count="10522" meta:non-whitespace-character-count="9009"/></office:meta>
<office:settings> <office:settings>
<config:config-item-set config:name="ooo:view-settings"> <config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">0</config:config-item> <config:config-item config:name="ViewAreaTop" config:type="long">68792</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item> <config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">30628</config:config-item> <config:config-item config:name="ViewAreaWidth" config:type="long">14406</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">13727</config:config-item> <config:config-item config:name="ViewAreaHeight" config:type="long">13594</config:config-item>
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item> <config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item> <config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="Views"> <config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry> <config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item> <config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">18868</config:config-item> <config:config-item config:name="ViewLeft" config:type="long">2598</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">7163</config:config-item> <config:config-item config:name="ViewTop" config:type="long">75874</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item> <config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">0</config:config-item> <config:config-item config:name="VisibleTop" config:type="long">68792</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">30626</config:config-item> <config:config-item config:name="VisibleRight" config:type="long">14404</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">13725</config:config-item> <config:config-item config:name="VisibleBottom" config:type="long">82384</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item> <config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns" config:type="short">0</config:config-item> <config:config-item config:name="ViewLayoutColumns" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item> <config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
@ -91,7 +91,7 @@
<config:config-item config:name="ChartAutoUpdate" config:type="boolean">true</config:config-item> <config:config-item config:name="ChartAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrinterSetup" config:type="base64Binary"/> <config:config-item config:name="PrinterSetup" config:type="base64Binary"/>
<config:config-item config:name="AddParaTableSpacingAtStart" config:type="boolean">true</config:config-item> <config:config-item config:name="AddParaTableSpacingAtStart" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">3955430</config:config-item> <config:config-item config:name="Rsid" config:type="int">4033500</config:config-item>
<config:config-item config:name="EmbeddedDatabaseName" config:type="string"/> <config:config-item config:name="EmbeddedDatabaseName" config:type="string"/>
<config:config-item config:name="FieldAutoUpdate" config:type="boolean">true</config:config-item> <config:config-item config:name="FieldAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="OutlineLevelYieldsNumbering" config:type="boolean">false</config:config-item> <config:config-item config:name="OutlineLevelYieldsNumbering" config:type="boolean">false</config:config-item>
@ -160,7 +160,7 @@
<office:styles> <office:styles>
<style:default-style style:family="graphic"> <style:default-style style:family="graphic">
<style:graphic-properties svg:stroke-color="#3465a4" draw:fill-color="#729fcf" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.1181in" draw:shadow-offset-y="0.1181in" draw:start-line-spacing-horizontal="0.1114in" draw:start-line-spacing-vertical="0.1114in" draw:end-line-spacing-horizontal="0.1114in" draw:end-line-spacing-vertical="0.1114in" style:flow-with-text="false"/> <style:graphic-properties svg:stroke-color="#3465a4" draw:fill-color="#729fcf" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.1181in" draw:shadow-offset-y="0.1181in" draw:start-line-spacing-horizontal="0.1114in" draw:start-line-spacing-vertical="0.1114in" draw:end-line-spacing-horizontal="0.1114in" draw:end-line-spacing-vertical="0.1114in" style:flow-with-text="false"/>
<style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" style:font-independent-line-spacing="false"> <style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" style:writing-mode="lr-tb" style:font-independent-line-spacing="false">
<style:tab-stops/> <style:tab-stops/>
</style:paragraph-properties> </style:paragraph-properties>
<style:text-properties style:use-window-font-color="true" loext:opacity="0%" loext:color-lum-mod="100%" loext:color-lum-off="0%" style:font-name="DejaVu Serif" fo:font-size="12pt" fo:language="es" fo:country="CO" style:letter-kerning="true" style:font-name-asian="DejaVu Sans1" style:font-size-asian="10.5pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="DejaVu Sans1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN"/> <style:text-properties style:use-window-font-color="true" loext:opacity="0%" loext:color-lum-mod="100%" loext:color-lum-off="0%" style:font-name="DejaVu Serif" fo:font-size="12pt" fo:language="es" fo:country="CO" style:letter-kerning="true" style:font-name-asian="DejaVu Sans1" style:font-size-asian="10.5pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="DejaVu Sans1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN"/>
@ -810,64 +810,64 @@
<style:text-properties fo:color="#666666" loext:opacity="100%" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-weight-asian="bold" style:font-weight-complex="bold"/> <style:text-properties fo:color="#666666" loext:opacity="100%" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="T22" style:family="text"> <style:style style:name="T22" style:family="text">
<style:text-properties officeooo:rsid="026544ec"/> <style:text-properties style:text-underline-style="none" officeooo:rsid="026544ec"/>
</style:style> </style:style>
<style:style style:name="T23" style:family="text"> <style:style style:name="T23" style:family="text">
<style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-name-complex="Arial"/> <style:text-properties officeooo:rsid="026544ec"/>
</style:style> </style:style>
<style:style style:name="T24" style:family="text"> <style:style style:name="T24" style:family="text">
<style:text-properties fo:font-weight="bold" officeooo:rsid="001b9ac0" style:font-weight-asian="bold" style:font-name-complex="Arial"/> <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-name-complex="Arial"/>
</style:style> </style:style>
<style:style style:name="T25" style:family="text"> <style:style style:name="T25" style:family="text">
<style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/> <style:text-properties fo:font-weight="bold" officeooo:rsid="001b9ac0" style:font-weight-asian="bold" style:font-name-complex="Arial"/>
</style:style> </style:style>
<style:style style:name="T26" style:family="text"> <style:style style:name="T26" style:family="text">
<style:text-properties fo:font-weight="bold" officeooo:rsid="001b9ac0" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/> <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="T27" style:family="text"> <style:style style:name="T27" style:family="text">
<style:text-properties fo:font-weight="bold" officeooo:rsid="002844c3" style:font-weight-asian="bold" style:font-name-complex="Arial"/> <style:text-properties fo:font-weight="bold" officeooo:rsid="001b9ac0" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="T28" style:family="text"> <style:style style:name="T28" style:family="text">
<style:text-properties fo:font-weight="bold" officeooo:rsid="001b9ac0" fo:background-color="transparent" loext:char-shading-value="0" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/> <style:text-properties fo:font-weight="bold" officeooo:rsid="002844c3" style:font-weight-asian="bold" style:font-name-complex="Arial"/>
</style:style> </style:style>
<style:style style:name="T29" style:family="text"> <style:style style:name="T29" style:family="text">
<style:text-properties style:font-name-complex="Arial"/> <style:text-properties fo:font-weight="bold" officeooo:rsid="001b9ac0" fo:background-color="transparent" loext:char-shading-value="0" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="T30" style:family="text"> <style:style style:name="T30" style:family="text">
<style:text-properties officeooo:rsid="001b9ac0" style:font-name-complex="Arial"/> <style:text-properties style:font-name-complex="Arial"/>
</style:style> </style:style>
<style:style style:name="T31" style:family="text"> <style:style style:name="T31" style:family="text">
<style:text-properties style:font-name-complex="Arial" style:font-weight-complex="bold"/> <style:text-properties officeooo:rsid="001b9ac0" style:font-name-complex="Arial"/>
</style:style> </style:style>
<style:style style:name="T32" style:family="text"> <style:style style:name="T32" style:family="text">
<style:text-properties officeooo:rsid="003a47a3" style:font-name-complex="Arial"/> <style:text-properties style:font-name-complex="Arial" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="T33" style:family="text"> <style:style style:name="T33" style:family="text">
<style:text-properties fo:background-color="transparent" loext:char-shading-value="0" style:font-name-complex="Arial"/> <style:text-properties officeooo:rsid="003a47a3" style:font-name-complex="Arial"/>
</style:style> </style:style>
<style:style style:name="T34" style:family="text"> <style:style style:name="T34" style:family="text">
<style:text-properties officeooo:rsid="001fed33" fo:background-color="transparent" loext:char-shading-value="0" style:font-name-complex="Arial"/> <style:text-properties fo:background-color="transparent" loext:char-shading-value="0" style:font-name-complex="Arial"/>
</style:style> </style:style>
<style:style style:name="T35" style:family="text"> <style:style style:name="T35" style:family="text">
<style:text-properties fo:language="es" fo:country="CO" fo:font-weight="bold" style:font-weight-asian="bold" style:font-name-complex="Arial"/> <style:text-properties officeooo:rsid="001fed33" fo:background-color="transparent" loext:char-shading-value="0" style:font-name-complex="Arial"/>
</style:style> </style:style>
<style:style style:name="T36" style:family="text"> <style:style style:name="T36" style:family="text">
<style:text-properties fo:language="es" fo:country="CO" fo:font-weight="bold" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/> <style:text-properties fo:language="es" fo:country="CO" fo:font-weight="bold" style:font-weight-asian="bold" style:font-name-complex="Arial"/>
</style:style> </style:style>
<style:style style:name="T37" style:family="text"> <style:style style:name="T37" style:family="text">
<style:text-properties fo:language="es" fo:country="CO" fo:font-weight="bold" officeooo:rsid="001b9ac0" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/> <style:text-properties fo:language="es" fo:country="CO" fo:font-weight="bold" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="T38" style:family="text"> <style:style style:name="T38" style:family="text">
<style:text-properties fo:language="es" fo:country="CO" style:font-name-complex="Arial"/> <style:text-properties fo:language="es" fo:country="CO" fo:font-weight="bold" officeooo:rsid="001b9ac0" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="T39" style:family="text"> <style:style style:name="T39" style:family="text">
<style:text-properties fo:language="es" fo:country="CO" style:font-name-complex="Arial" style:font-weight-complex="bold"/> <style:text-properties fo:language="es" fo:country="CO" style:font-name-complex="Arial"/>
</style:style> </style:style>
<style:style style:name="T40" style:family="text"> <style:style style:name="T40" style:family="text">
<style:text-properties fo:font-weight="normal" officeooo:rsid="001b9ac0" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-weight-complex="normal"/> <style:text-properties fo:language="es" fo:country="CO" style:font-name-complex="Arial" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="T41" style:family="text"> <style:style style:name="T41" style:family="text">
<style:text-properties style:text-underline-style="none" officeooo:rsid="026544ec"/> <style:text-properties fo:font-weight="normal" officeooo:rsid="001b9ac0" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="fr1" style:family="graphic" style:parent-style-name="Graphics"> <style:style style:name="fr1" style:family="graphic" style:parent-style-name="Graphics">
<style:graphic-properties style:vertical-pos="from-top" style:horizontal-pos="from-left" style:horizontal-rel="paragraph" style:mirror="none" fo:clip="rect(0in, 0in, 0in, 0in)" draw:luminance="0%" draw:contrast="0%" draw:red="0%" draw:green="0%" draw:blue="0%" draw:gamma="100%" draw:color-inversion="false" draw:image-opacity="100%" draw:color-mode="standard"/> <style:graphic-properties style:vertical-pos="from-top" style:horizontal-pos="from-left" style:horizontal-rel="paragraph" style:mirror="none" fo:clip="rect(0in, 0in, 0in, 0in)" draw:luminance="0%" draw:contrast="0%" draw:red="0%" draw:green="0%" draw:blue="0%" draw:gamma="100%" draw:color-inversion="false" draw:image-opacity="100%" draw:color-mode="standard"/>
@ -1589,9 +1589,9 @@
<text:sequence-decl text:display-outline-level="0" text:name="Figure"/> <text:sequence-decl text:display-outline-level="0" text:name="Figure"/>
</text:sequence-decls> </text:sequence-decls>
<text:p text:style-name="P32"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;subscription in records&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P32"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;subscription in records&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P15"><text:span text:style-name="T24">C</text:span><text:bookmark-start text:name="OLE_LINK2"/><text:bookmark-start text:name="OLE_LINK1"/><text:span text:style-name="T23">ONTRATO DE MANTENIMIENTO PREVENTIVO</text:span></text:p> <text:p text:style-name="P15"><text:span text:style-name="T25">C</text:span><text:bookmark-start text:name="OLE_LINK2"/><text:bookmark-start text:name="OLE_LINK1"/><text:span text:style-name="T24">ONTRATO DE MANTENIMIENTO PREVENTIVO</text:span></text:p>
<text:p text:style-name="P36">DATOS GENERALES DEL CONTRATO</text:p> <text:p text:style-name="P36">DATOS GENERALES DEL CONTRATO</text:p>
<text:p text:style-name="P16"><text:span text:style-name="T23">N° </text:span><text:span text:style-name="T26"><text:placeholder text:placeholder-type="text" text:description="subscription.number">&lt;subscription.number&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P16"><text:span text:style-name="T24">N° </text:span><text:span text:style-name="T27"><text:placeholder text:placeholder-type="text" text:description="subscription.number">&lt;subscription.number&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P36"/> <text:p text:style-name="P36"/>
<table:table table:name="Tabla1" table:style-name="Tabla1"> <table:table table:name="Tabla1" table:style-name="Tabla1">
<table:table-column table:style-name="Tabla1.A"/> <table:table-column table:style-name="Tabla1.A"/>
@ -1625,7 +1625,7 @@
<text:p text:style-name="P38">VALOR ANUAL</text:p> <text:p text:style-name="P38">VALOR ANUAL</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla1.A1" office:value-type="string"> <table:table-cell table:style-name="Tabla1.A1" office:value-type="string">
<text:p text:style-name="P18"><text:span text:style-name="T29">LAS SUMA DE </text:span><text:span text:style-name="T33"><text:s/>(</text:span><text:span text:style-name="T34">$ <text:s/></text:span><text:span text:style-name="T28"><text:placeholder text:placeholder-type="text">&lt;subscription.price_contract&gt;</text:placeholder></text:span><text:span text:style-name="T33">M/Cte.) ESTA SUMA SERA CANCELADA EL DÍA DE LA FIRMA DEL CONTRATO. </text:span></text:p> <text:p text:style-name="P18"><text:span text:style-name="T30">LAS SUMA DE </text:span><text:span text:style-name="T34"><text:s/>(</text:span><text:span text:style-name="T35">$ <text:s/></text:span><text:span text:style-name="T29"><text:placeholder text:placeholder-type="text">&lt;subscription.price_contract&gt;</text:placeholder></text:span><text:span text:style-name="T34">M/Cte.) ESTA SUMA SERA CANCELADA EL DÍA DE LA FIRMA DEL CONTRATO. </text:span></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
<table:table-row table:style-name="Tabla1.5"> <table:table-row table:style-name="Tabla1.5">
@ -1634,7 +1634,7 @@
<text:p text:style-name="P38"/> <text:p text:style-name="P38"/>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla1.A1" office:value-type="string"> <table:table-cell table:style-name="Tabla1.A1" office:value-type="string">
<text:p text:style-name="P19"><text:span text:style-name="T29">ESTE CONTRATO NO INCLUYE EL MANTENIMIENTO CORRECTIVO DE LOS EQUIPOS DE OPTOMETRÍA. SIN EMBARGO, </text:span><text:span text:style-name="T33">EL COSTO DE ESTE SERVICIO ADICIONAL TENDRÁ UN DESCUENTO DEL 50%.</text:span></text:p> <text:p text:style-name="P19"><text:span text:style-name="T30">ESTE CONTRATO NO INCLUYE EL MANTENIMIENTO CORRECTIVO DE LOS EQUIPOS DE OPTOMETRÍA. SIN EMBARGO, </text:span><text:span text:style-name="T34">EL COSTO DE ESTE SERVICIO ADICIONAL TENDRÁ UN DESCUENTO DEL 50%.</text:span></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
</table:table> </table:table>
@ -1740,47 +1740,47 @@
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
</table:table> </table:table>
<text:p text:style-name="P36"><text:bookmark-end text:name="OLE_LINK2"/><text:bookmark-end text:name="OLE_LINK1"/></text:p> <text:p text:style-name="P36"><text:bookmark-end text:name="OLE_LINK1"/><text:bookmark-end text:name="OLE_LINK2"/></text:p>
<text:p text:style-name="P20"><text:span text:style-name="T29">Entre los suscritos a saber </text:span><text:span text:style-name="T23">EL CONTRATANTE Y EL CONTRATISTA</text:span><text:span text:style-name="T29">, hemos convenido celebrar el presente CONTRATO DE PRESTACIÓN DE </text:span><text:span text:style-name="T25">SERVICIOS DE MANTENIMIENTO TÉCNICO PREVENTIVO, </text:span><text:span text:style-name="T31">que</text:span><text:span text:style-name="T36"> </text:span><text:span text:style-name="T38">se regulará por las cláusulas que a continuación se expresan y en general por las disposiciones del Código Civil y Código de Comercio aplicables a la materia de qué trata este contrato: </text:span></text:p> <text:p text:style-name="P20"><text:span text:style-name="T30">Entre los suscritos a saber </text:span><text:span text:style-name="T24">EL CONTRATANTE Y EL CONTRATISTA</text:span><text:span text:style-name="T30">, hemos convenido celebrar el presente CONTRATO DE PRESTACIÓN DE </text:span><text:span text:style-name="T26">SERVICIOS DE MANTENIMIENTO TÉCNICO PREVENTIVO, </text:span><text:span text:style-name="T32">que</text:span><text:span text:style-name="T37"> </text:span><text:span text:style-name="T39">se regulará por las cláusulas que a continuación se expresan y en general por las disposiciones del Código Civil y Código de Comercio aplicables a la materia de qué trata este contrato: </text:span></text:p>
<text:p text:style-name="P28"/> <text:p text:style-name="P28"/>
<text:p text:style-name="P20"><text:span text:style-name="T25">PRIMERA - OBJETO: </text:span><text:span text:style-name="T23">El CONTRATISTA</text:span><text:span text:style-name="T31"> se obliga para con </text:span><text:span text:style-name="T23">El CONTRATANTE</text:span><text:span text:style-name="T31"> a ejecutar los trabajos y demás actividades propias del servicio contratado, el cual debe realizar de conformidad con las condiciones y cláusulas del presente documento y que consistirá en el mantenimiento técnico preventivo sin repuestos a los equipos de optometría de propiedad del CONTRATANTE los cuales se encuentran relacionados e identificados en el anexo 1 del presente documento. </text:span></text:p> <text:p text:style-name="P20"><text:span text:style-name="T26">PRIMERA - OBJETO: </text:span><text:span text:style-name="T24">El CONTRATISTA</text:span><text:span text:style-name="T32"> se obliga para con </text:span><text:span text:style-name="T24">El CONTRATANTE</text:span><text:span text:style-name="T32"> a ejecutar los trabajos y demás actividades propias del servicio contratado, el cual debe realizar de conformidad con las condiciones y cláusulas del presente documento y que consistirá en el mantenimiento técnico preventivo sin repuestos a los equipos de optometría de propiedad del CONTRATANTE los cuales se encuentran relacionados e identificados en el anexo 1 del presente documento. </text:span></text:p>
<text:p text:style-name="P29"/> <text:p text:style-name="P29"/>
<text:p text:style-name="P20"><text:span text:style-name="T23">SEGUNDA - VALOR: </text:span><text:span text:style-name="T31">El valor de este contrato será el señalado en la sección de datos generales</text:span><text:span text:style-name="T25">. </text:span></text:p> <text:p text:style-name="P20"><text:span text:style-name="T24">SEGUNDA - VALOR: </text:span><text:span text:style-name="T32">El valor de este contrato será el señalado en la sección de datos generales</text:span><text:span text:style-name="T26">. </text:span></text:p>
<text:p text:style-name="P35"/> <text:p text:style-name="P35"/>
<text:p text:style-name="P20"><text:span text:style-name="T23">TERCERA - FORMA DE PAGO: EL CONTRATANTE </text:span><text:span text:style-name="T31">pagara </text:span><text:span text:style-name="T23">AL CONTRATISTA</text:span><text:span text:style-name="T31"> el valor del contrato en a la firma del presente documento.</text:span></text:p> <text:p text:style-name="P20"><text:span text:style-name="T24">TERCERA - FORMA DE PAGO: EL CONTRATANTE </text:span><text:span text:style-name="T32">pagara </text:span><text:span text:style-name="T24">AL CONTRATISTA</text:span><text:span text:style-name="T32"> el valor del contrato en a la firma del presente documento.</text:span></text:p>
<text:p text:style-name="P29"/> <text:p text:style-name="P29"/>
<text:p text:style-name="P21"><text:span text:style-name="T23">CUARTA </text:span><text:span text:style-name="T25">- PLAZO:</text:span><text:span text:style-name="T29"> El plazo para la ejecución del contrato será contado desde la fecha de inicio y tendrá una duración de un año. Es decir, que este contrato inicia el día </text:span><text:span text:style-name="T26"><text:placeholder text:placeholder-type="text" text:description="subscription.start_date">&lt;subscription.start_date&gt;</text:placeholder></text:span><text:span text:style-name="T29"><text:s/>y finaliza el </text:span><text:span text:style-name="T26"><text:placeholder text:placeholder-type="text" text:description="subscription.end_date">&lt;subscription.end_date&gt;</text:placeholder></text:span><text:span text:style-name="T29"><text:s/>. </text:span></text:p> <text:p text:style-name="P21"><text:span text:style-name="T24">CUARTA </text:span><text:span text:style-name="T26">- PLAZO:</text:span><text:span text:style-name="T30"> El plazo para la ejecución del contrato será contado desde la fecha de inicio y tendrá una duración de un año. Es decir, que este contrato inicia el día </text:span><text:span text:style-name="T27"><text:placeholder text:placeholder-type="text" text:description="subscription.start_date">&lt;subscription.start_date&gt;</text:placeholder></text:span><text:span text:style-name="T30"><text:s/>y finaliza el </text:span><text:span text:style-name="T27"><text:placeholder text:placeholder-type="text" text:description="subscription.end_date">&lt;subscription.end_date&gt;</text:placeholder></text:span><text:span text:style-name="T30"><text:s/>. </text:span></text:p>
<text:p text:style-name="P28"/> <text:p text:style-name="P28"/>
<text:p text:style-name="P20"><text:span text:style-name="T25">QUINTA</text:span><text:span text:style-name="T29"> </text:span><text:span text:style-name="T36"> PRORROGA:</text:span><text:span text:style-name="T38"> Si vencido el plazo establecido para la ejecución del contrato de prestación de servicios de mantenimiento técnico preventivo </text:span><text:span text:style-name="T36">EL CONTRATANTE </text:span><text:span text:style-name="T39">no ha comunicado</text:span><text:span text:style-name="T36"> AL CONTRATISTA</text:span><text:span text:style-name="T39"> la intención de dar por terminado el contrato de manera escrita, con una antelación de dos meses al vencimiento del contrato este se entenderá prorrogado automáticamente, por un tiempo al igualmente pactado y por un valor al inicialmente fijado más el incremento del IPC del año anterior. El contrato se podrá prorrogar de manera indefinida y en cada una de sus prorrogas se seguirán los lineamientos establecidos aquí, respectivamente. </text:span><text:span text:style-name="T36">PARÁGRAFO:</text:span><text:span text:style-name="T39"> </text:span><text:span text:style-name="T36">EL CONTRATATE</text:span><text:span text:style-name="T39"> deberá cancelar el valor del contrato dentro de los 10 días siguientes a la fecha de inicio de cada una sus prorrogas y </text:span><text:span text:style-name="T36">EL CONTRATISTA</text:span><text:span text:style-name="T39"> deberá entregar la prórroga del contrato.</text:span></text:p> <text:p text:style-name="P20"><text:span text:style-name="T26">QUINTA</text:span><text:span text:style-name="T30"> </text:span><text:span text:style-name="T37"> PRORROGA:</text:span><text:span text:style-name="T39"> Si vencido el plazo establecido para la ejecución del contrato de prestación de servicios de mantenimiento técnico preventivo </text:span><text:span text:style-name="T37">EL CONTRATANTE </text:span><text:span text:style-name="T40">no ha comunicado</text:span><text:span text:style-name="T37"> AL CONTRATISTA</text:span><text:span text:style-name="T40"> la intención de dar por terminado el contrato de manera escrita, con una antelación de dos meses al vencimiento del contrato este se entenderá prorrogado automáticamente, por un tiempo al igualmente pactado y por un valor al inicialmente fijado más el incremento del IPC del año anterior. El contrato se podrá prorrogar de manera indefinida y en cada una de sus prorrogas se seguirán los lineamientos establecidos aquí, respectivamente. </text:span><text:span text:style-name="T37">PARÁGRAFO:</text:span><text:span text:style-name="T40"> </text:span><text:span text:style-name="T37">EL CONTRATATE</text:span><text:span text:style-name="T40"> deberá cancelar el valor del contrato dentro de los 10 días siguientes a la fecha de inicio de cada una sus prorrogas y </text:span><text:span text:style-name="T37">EL CONTRATISTA</text:span><text:span text:style-name="T40"> deberá entregar la prórroga del contrato.</text:span></text:p>
<text:p text:style-name="P49"/> <text:p text:style-name="P49"/>
<text:p text:style-name="P20"><text:soft-page-break/><text:span text:style-name="T36">SEXTA OBLIGACIONES DEL CONTRATANTE: <text:s/></text:span><text:span text:style-name="T23">1</text:span><text:span text:style-name="T29">. Cumplir a cabalidad con las cláusulas pactadas en el presente contrato, las cuales solamente podrán ser modificadas por medio de documento adicional firmado por las partes. </text:span><text:span text:style-name="T23">2.</text:span><text:span text:style-name="T29"> Atender con diligencia, celeridad y prioridad las indicaciones que </text:span><text:span text:style-name="T23">EL CONTRATISTA </text:span><text:span text:style-name="T29">le</text:span><text:span text:style-name="T23"> </text:span><text:span text:style-name="T29">realice con el objetivo de cumplir con el desarrollo normal del objeto del contrato. </text:span><text:span text:style-name="T25">3.</text:span><text:span text:style-name="T29"> Pagar oportunamente a </text:span><text:span text:style-name="T23">EL CONTRATISTA</text:span><text:span text:style-name="T29"> el valor de los bienes y/o servicios contratados en la forma, fecha y valor pactados en el contrato durante su vigencia y sus prorrogas.</text:span><text:span text:style-name="T35"> 4.</text:span><text:span text:style-name="T39"> Entregar toda la información que solicite </text:span><text:span text:style-name="T35">EL CONTRATISTA</text:span><text:span text:style-name="T39"> para poder desarrollar con normalidad su labor de mantenimiento técnico preventivo. </text:span><text:span text:style-name="T36">5.</text:span><text:span text:style-name="T39"> Realizar los pagos adicionales que surjan durante la realización del mantenimiento preventivo y/o correctivo si se llega a contratar de manera adicional</text:span><text:bookmark text:name="_GoBack"/><text:span text:style-name="T39">. </text:span><text:span text:style-name="T36">6.</text:span><text:span text:style-name="T39"> </text:span><text:span text:style-name="T36">EL CONTRATANTE </text:span><text:span text:style-name="T39">deberá abstenerse</text:span><text:span text:style-name="T36"> </text:span><text:span text:style-name="T39">de realizar oferta alguna de trabajo o contrato al personal o dependientes del </text:span><text:span text:style-name="T36">CONTRATISTA.</text:span><text:span text:style-name="T39"> </text:span></text:p> <text:p text:style-name="P20"><text:soft-page-break/><text:span text:style-name="T37">SEXTA OBLIGACIONES DEL CONTRATANTE: <text:s/></text:span><text:span text:style-name="T24">1</text:span><text:span text:style-name="T30">. Cumplir a cabalidad con las cláusulas pactadas en el presente contrato, las cuales solamente podrán ser modificadas por medio de documento adicional firmado por las partes. </text:span><text:span text:style-name="T24">2.</text:span><text:span text:style-name="T30"> Atender con diligencia, celeridad y prioridad las indicaciones que </text:span><text:span text:style-name="T24">EL CONTRATISTA </text:span><text:span text:style-name="T30">le</text:span><text:span text:style-name="T24"> </text:span><text:span text:style-name="T30">realice con el objetivo de cumplir con el desarrollo normal del objeto del contrato. </text:span><text:span text:style-name="T26">3.</text:span><text:span text:style-name="T30"> Pagar oportunamente a </text:span><text:span text:style-name="T24">EL CONTRATISTA</text:span><text:span text:style-name="T30"> el valor de los bienes y/o servicios contratados en la forma, fecha y valor pactados en el contrato durante su vigencia y sus prorrogas.</text:span><text:span text:style-name="T36"> 4.</text:span><text:span text:style-name="T40"> Entregar toda la información que solicite </text:span><text:span text:style-name="T36">EL CONTRATISTA</text:span><text:span text:style-name="T40"> para poder desarrollar con normalidad su labor de mantenimiento técnico preventivo. </text:span><text:span text:style-name="T37">5.</text:span><text:span text:style-name="T40"> Realizar los pagos adicionales que surjan durante la realización del mantenimiento preventivo y/o correctivo si se llega a contratar de manera adicional</text:span><text:bookmark text:name="_GoBack"/><text:span text:style-name="T40">. </text:span><text:span text:style-name="T37">6.</text:span><text:span text:style-name="T40"> </text:span><text:span text:style-name="T37">EL CONTRATANTE </text:span><text:span text:style-name="T40">deberá abstenerse</text:span><text:span text:style-name="T37"> </text:span><text:span text:style-name="T40">de realizar oferta alguna de trabajo o contrato al personal o dependientes del </text:span><text:span text:style-name="T37">CONTRATISTA.</text:span><text:span text:style-name="T40"> </text:span></text:p>
<text:p text:style-name="P51"/> <text:p text:style-name="P51"/>
<text:p text:style-name="P20"><text:span text:style-name="T36">SÉPTIMA </text:span><text:span text:style-name="T25">OBLIGACIONES DEL CONTRATISTA:</text:span><text:span text:style-name="T29"> </text:span><text:span text:style-name="T23">1</text:span><text:span text:style-name="T29">. Cumplir a cabalidad con las cláusulas pactadas en el presente contrato, las cuales solamente podrán ser modificadas por medio de documento adicional firmado por las partes. </text:span><text:span text:style-name="T23">2. </text:span><text:span text:style-name="T38">Realizar el mantenimiento preventivo a los equipos de optometría de propiedad del </text:span><text:span text:style-name="T35">CONTRATANTE.</text:span><text:span text:style-name="T38"> </text:span><text:span text:style-name="T25">3</text:span><text:span text:style-name="T38">. </text:span><text:span text:style-name="T29">Realizar las observaciones que considere pertinentes dentro de la ejecución del objeto del presente contrato. </text:span><text:span text:style-name="T25">4</text:span><text:span text:style-name="T38">. Obrar con seriedad y diligencia en el servicio contratado</text:span><text:span text:style-name="T36"> 5</text:span><text:span text:style-name="T38">. Atender las solicitudes y recomendaciones que haga </text:span><text:span text:style-name="T36">EL CONTRATANTE</text:span><text:span text:style-name="T38"> o sus delegados, con la mayor prontitud. </text:span></text:p> <text:p text:style-name="P20"><text:span text:style-name="T37">SÉPTIMA </text:span><text:span text:style-name="T26">OBLIGACIONES DEL CONTRATISTA:</text:span><text:span text:style-name="T30"> </text:span><text:span text:style-name="T24">1</text:span><text:span text:style-name="T30">. Cumplir a cabalidad con las cláusulas pactadas en el presente contrato, las cuales solamente podrán ser modificadas por medio de documento adicional firmado por las partes. </text:span><text:span text:style-name="T24">2. </text:span><text:span text:style-name="T39">Realizar el mantenimiento preventivo a los equipos de optometría de propiedad del </text:span><text:span text:style-name="T36">CONTRATANTE.</text:span><text:span text:style-name="T39"> </text:span><text:span text:style-name="T26">3</text:span><text:span text:style-name="T39">. </text:span><text:span text:style-name="T30">Realizar las observaciones que considere pertinentes dentro de la ejecución del objeto del presente contrato. </text:span><text:span text:style-name="T26">4</text:span><text:span text:style-name="T39">. Obrar con seriedad y diligencia en el servicio contratado</text:span><text:span text:style-name="T37"> 5</text:span><text:span text:style-name="T39">. Atender las solicitudes y recomendaciones que haga </text:span><text:span text:style-name="T37">EL CONTRATANTE</text:span><text:span text:style-name="T39"> o sus delegados, con la mayor prontitud. </text:span></text:p>
<text:p text:style-name="P50"/> <text:p text:style-name="P50"/>
<text:p text:style-name="P20"><text:span text:style-name="T35">OCTAVA</text:span><text:span text:style-name="T36"> </text:span><text:span text:style-name="T25">CAUSALES DE TERMINACION DEL CONTRATO: </text:span><text:span text:style-name="T29">El presente contrato terminará por acuerdo entre las partes y unilateralmente por el incumplimiento de las obligaciones derivadas del contrato. Finalmente, por la ocurrencia de hechos imprevisibles que imposibiliten su cumplimiento. </text:span></text:p> <text:p text:style-name="P20"><text:span text:style-name="T36">OCTAVA</text:span><text:span text:style-name="T37"> </text:span><text:span text:style-name="T26">CAUSALES DE TERMINACION DEL CONTRATO: </text:span><text:span text:style-name="T30">El presente contrato terminará por acuerdo entre las partes y unilateralmente por el incumplimiento de las obligaciones derivadas del contrato. Finalmente, por la ocurrencia de hechos imprevisibles que imposibiliten su cumplimiento. </text:span></text:p>
<text:p text:style-name="P28"/> <text:p text:style-name="P28"/>
<text:p text:style-name="P20"><text:span text:style-name="T36">NOVENA - </text:span><text:span text:style-name="T23">CERTIFICADOS: EL CONTRATISTA </text:span><text:span text:style-name="T29">expedirá las respectivas hojas de vida y/o certificados de los equipos para que </text:span><text:span text:style-name="T23">EL CONTRATANTE </text:span><text:span text:style-name="T29">puede presentarlos ante la autoridad competente. Estos serán expedidos por </text:span><text:span text:style-name="T23">EL CONTRATISTA</text:span><text:span text:style-name="T29"> en una sola oportunidad durante la vigencia del contrato. </text:span><text:span text:style-name="T36">PARÁGRAFO: </text:span><text:span text:style-name="T31">En caso de que </text:span><text:span text:style-name="T25">EL CONTRATANTE</text:span><text:span text:style-name="T31"> se traslade o mueva los equipos y deban volverse a generar los documentos; se generara un costo adicional.</text:span></text:p> <text:p text:style-name="P20"><text:span text:style-name="T37">NOVENA - </text:span><text:span text:style-name="T24">CERTIFICADOS: EL CONTRATISTA </text:span><text:span text:style-name="T30">expedirá las respectivas hojas de vida y/o certificados de los equipos para que </text:span><text:span text:style-name="T24">EL CONTRATANTE </text:span><text:span text:style-name="T30">puede presentarlos ante la autoridad competente. Estos serán expedidos por </text:span><text:span text:style-name="T24">EL CONTRATISTA</text:span><text:span text:style-name="T30"> en una sola oportunidad durante la vigencia del contrato. </text:span><text:span text:style-name="T37">PARÁGRAFO: </text:span><text:span text:style-name="T32">En caso de que </text:span><text:span text:style-name="T26">EL CONTRATANTE</text:span><text:span text:style-name="T32"> se traslade o mueva los equipos y deban volverse a generar los documentos; se generara un costo adicional.</text:span></text:p>
<text:p text:style-name="P28"/> <text:p text:style-name="P28"/>
<text:p text:style-name="P20"><text:span text:style-name="T35">DECIMA - </text:span><text:span text:style-name="T36">DERECHOS LABORALES Y SEGURIDAD SOCIAL: </text:span><text:span text:style-name="T25">El CONTRATISTA</text:span><text:span text:style-name="T29"> en su calidad de persona jurídica, garantizara el pago de los derechos laborales y seguridad social de sus trabajadores y/o dependientes que envié para el cumplimiento del objeto del contrato. Razón por la cual, </text:span><text:span text:style-name="T23">EL CONTRATISTA</text:span><text:span text:style-name="T29"> mantendrá indemne a </text:span><text:span text:style-name="T23">EL CONTRATANTE</text:span><text:span text:style-name="T29"> ante cualquier demanda o acción judicial o administrativa con ocasión de la ejecución del presente contrato; relacionada con el derecho laboral y la seguridad social. </text:span></text:p> <text:p text:style-name="P20"><text:span text:style-name="T36">DECIMA - </text:span><text:span text:style-name="T37">DERECHOS LABORALES Y SEGURIDAD SOCIAL: </text:span><text:span text:style-name="T26">El CONTRATISTA</text:span><text:span text:style-name="T30"> en su calidad de persona jurídica, garantizara el pago de los derechos laborales y seguridad social de sus trabajadores y/o dependientes que envié para el cumplimiento del objeto del contrato. Razón por la cual, </text:span><text:span text:style-name="T24">EL CONTRATISTA</text:span><text:span text:style-name="T30"> mantendrá indemne a </text:span><text:span text:style-name="T24">EL CONTRATANTE</text:span><text:span text:style-name="T30"> ante cualquier demanda o acción judicial o administrativa con ocasión de la ejecución del presente contrato; relacionada con el derecho laboral y la seguridad social. </text:span></text:p>
<text:p text:style-name="P28"/> <text:p text:style-name="P28"/>
<text:p text:style-name="P20"><text:span text:style-name="T23">DECIMA PRIMERA </text:span><text:span text:style-name="T25">PERFECCIONAMIENTO:</text:span><text:span text:style-name="T29"> El contrato se entiende perfeccionado una vez suscrito por las partes, de conformidad con lo establecido en la ley y para todos sus efectos presta merito ejecutivo.</text:span></text:p> <text:p text:style-name="P20"><text:span text:style-name="T24">DECIMA PRIMERA </text:span><text:span text:style-name="T26">PERFECCIONAMIENTO:</text:span><text:span text:style-name="T30"> El contrato se entiende perfeccionado una vez suscrito por las partes, de conformidad con lo establecido en la ley y para todos sus efectos presta merito ejecutivo.</text:span></text:p>
<text:p text:style-name="P29"/> <text:p text:style-name="P29"/>
<text:p text:style-name="P20"><text:span text:style-name="T23">DECIMA SEGUNDA </text:span><text:span text:style-name="T25">- VALIDEZ:</text:span><text:span text:style-name="T29"> El presente contrato anula todo contrato de prestación de servicios de mantenimiento preventivo anterior suscrito por las partes y solamente podrá ser modificado por escrito suscrito por la Partes. </text:span></text:p> <text:p text:style-name="P20"><text:span text:style-name="T24">DECIMA SEGUNDA </text:span><text:span text:style-name="T26">- VALIDEZ:</text:span><text:span text:style-name="T30"> El presente contrato anula todo contrato de prestación de servicios de mantenimiento preventivo anterior suscrito por las partes y solamente podrá ser modificado por escrito suscrito por la Partes. </text:span></text:p>
<text:p text:style-name="P28"/> <text:p text:style-name="P28"/>
<text:p text:style-name="P20"><text:span text:style-name="T25">DECIMA TERCERA CESION: El CONTRATISTA </text:span><text:span text:style-name="T29">no podrá ceder parcial ni totalmente la ejecución del presente contrato a un tercero, sin la previa, expresa y escrita autorización del</text:span><text:span text:style-name="T25"> CONTRATANTE.</text:span></text:p> <text:p text:style-name="P20"><text:span text:style-name="T26">DECIMA TERCERA CESION: El CONTRATISTA </text:span><text:span text:style-name="T30">no podrá ceder parcial ni totalmente la ejecución del presente contrato a un tercero, sin la previa, expresa y escrita autorización del</text:span><text:span text:style-name="T26"> CONTRATANTE.</text:span></text:p>
<text:p text:style-name="P20"><text:span text:style-name="T25">DECIMA CUARTA COFIDENCIALIDAD:</text:span><text:span text:style-name="T31"> Las partes acuerdan que ellas y sus empleados se abstendrán de divulgar, publicar o comunicar, directa o indirectamente a terceros la información, documentos o fotografías, relacionados con los documentos que conozcan en desarrollo y por virtud del presente contrato o por cualquier otra causa. Para estos efectos las partes convienen que toda información que reciba </text:span><text:span text:style-name="T25">EL CONTRATISTA</text:span><text:span text:style-name="T31"> o </text:span><text:span text:style-name="T25">EL CONTRATANTE,</text:span><text:span text:style-name="T31"> para la ejecución del presente contrato, se considera importante y confidencial y divulgarla y/o transmitirla, puede lesionar los intereses públicos de las partes.</text:span></text:p> <text:p text:style-name="P20"><text:span text:style-name="T26">DECIMA CUARTA COFIDENCIALIDAD:</text:span><text:span text:style-name="T32"> Las partes acuerdan que ellas y sus empleados se abstendrán de divulgar, publicar o comunicar, directa o indirectamente a terceros la información, documentos o fotografías, relacionados con los documentos que conozcan en desarrollo y por virtud del presente contrato o por cualquier otra causa. Para estos efectos las partes convienen que toda información que reciba </text:span><text:span text:style-name="T26">EL CONTRATISTA</text:span><text:span text:style-name="T32"> o </text:span><text:span text:style-name="T26">EL CONTRATANTE,</text:span><text:span text:style-name="T32"> para la ejecución del presente contrato, se considera importante y confidencial y divulgarla y/o transmitirla, puede lesionar los intereses públicos de las partes.</text:span></text:p>
<text:p text:style-name="P35"/> <text:p text:style-name="P35"/>
<text:p text:style-name="P20"><text:span text:style-name="T25">DECIMA QUINTA CLÁUSULA PENAL: </text:span><text:span text:style-name="T29">En el evento de incumplimiento por parte del </text:span><text:span text:style-name="T25">CONTRATISTA o DEL CONTRATANTE</text:span><text:span text:style-name="T29"> a las obligaciones a su cargo contenidas en la ley o en este Contrato. Deberá pagar el 30% del valor total del contrato, a título de pena.</text:span></text:p> <text:p text:style-name="P20"><text:span text:style-name="T26">DECIMA QUINTA CLÁUSULA PENAL: </text:span><text:span text:style-name="T30">En el evento de incumplimiento por parte del </text:span><text:span text:style-name="T26">CONTRATISTA o DEL CONTRATANTE</text:span><text:span text:style-name="T30"> a las obligaciones a su cargo contenidas en la ley o en este Contrato. Deberá pagar el 30% del valor total del contrato, a título de pena.</text:span></text:p>
<text:p text:style-name="P28"/> <text:p text:style-name="P28"/>
<text:p text:style-name="P20"><text:span text:style-name="T25">DECIMA SEXTA </text:span><text:span text:style-name="T36">CLÁUSULA COMPROMISORIA: </text:span><text:span text:style-name="T38">Toda controversia o diferencia relativa a este contrato, su ejecución y liquidación, se resolverá por un tribunal de arbitramento que por economía será designado por las partes, está conformado por solamente un árbitro y será en el domicilio contractual establecido en este contrato. El tribunal de Arbitramento se sujetará a lo dispuesto en el decreto 1818 de 1998 o estatuto orgánico de los sistemas alternativos de solución de conflictos y demás normas concordantes</text:span><text:span text:style-name="T36">.</text:span></text:p> <text:p text:style-name="P20"><text:span text:style-name="T26">DECIMA SEXTA </text:span><text:span text:style-name="T37">CLÁUSULA COMPROMISORIA: </text:span><text:span text:style-name="T39">Toda controversia o diferencia relativa a este contrato, su ejecución y liquidación, se resolverá por un tribunal de arbitramento que por economía será designado por las partes, está conformado por solamente un árbitro y será en el domicilio contractual establecido en este contrato. El tribunal de Arbitramento se sujetará a lo dispuesto en el decreto 1818 de 1998 o estatuto orgánico de los sistemas alternativos de solución de conflictos y demás normas concordantes</text:span><text:span text:style-name="T37">.</text:span></text:p>
<text:p text:style-name="P28"/> <text:p text:style-name="P28"/>
<text:p text:style-name="P20"><text:span text:style-name="T25">DECIMA SÉPTIMA </text:span><text:span text:style-name="T23"> </text:span><text:span text:style-name="T25">DOMICILIO CONTRACTUAL Y NOTIFICACIONES</text:span><text:span text:style-name="T29">: Las partes contratantes convienen que, para todos los efectos legales, judiciales o extrajudiciales, que diere a lugar el presente contrato será el domicilio la ciudad de Bogotá D.C., las direcciones de Notificación de las partes serán las establecidas en la parte inicial del presente contrato. Las comunicaciones remitidas a las direcciones aquí señaladas serán válidas aún en el caso en que las partes hayan variado su ubicación si, antes de la fecha de la comunicación, la parte que ha variado su dirección no ha avisado por escrito a la otra sobre este hecho, las cuales se tendrán por recibidas y producirán efectos al tercer día hábil siguiente al recibo de la comunicación.</text:span></text:p> <text:p text:style-name="P20"><text:span text:style-name="T26">DECIMA SÉPTIMA </text:span><text:span text:style-name="T24"> </text:span><text:span text:style-name="T26">DOMICILIO CONTRACTUAL Y NOTIFICACIONES</text:span><text:span text:style-name="T30">: Las partes contratantes convienen que, para todos los efectos legales, judiciales o extrajudiciales, que diere a lugar el presente contrato será el domicilio la ciudad de Bogotá D.C., las direcciones de Notificación de las partes serán las establecidas en la parte inicial del presente contrato. Las comunicaciones remitidas a las direcciones aquí señaladas serán válidas aún en el caso en que las partes hayan variado su ubicación si, antes de la fecha de la comunicación, la parte que ha variado su dirección no ha avisado por escrito a la otra sobre este hecho, las cuales se tendrán por recibidas y producirán efectos al tercer día hábil siguiente al recibo de la comunicación.</text:span></text:p>
<text:p text:style-name="P39"/> <text:p text:style-name="P39"/>
<text:p text:style-name="P20"><text:span text:style-name="T25">DECIMA OCTAVA - </text:span><text:span text:style-name="T23">IMPUESTOS: </text:span><text:span text:style-name="T29">Los impuestos que se generen por la ejecución y desarrollo de este contrato, serán asumidos por las partes de conformidad con lo establecido por régimen tributario y legal, y demás directrices establecidas por la DIAN.</text:span></text:p> <text:p text:style-name="P20"><text:span text:style-name="T26">DECIMA OCTAVA - </text:span><text:span text:style-name="T24">IMPUESTOS: </text:span><text:span text:style-name="T30">Los impuestos que se generen por la ejecución y desarrollo de este contrato, serán asumidos por las partes de conformidad con lo establecido por régimen tributario y legal, y demás directrices establecidas por la DIAN.</text:span></text:p>
<text:p text:style-name="P28"><text:soft-page-break/></text:p> <text:p text:style-name="P28"><text:soft-page-break/></text:p>
<text:p text:style-name="P20"><text:span text:style-name="T25">DECIMA NOVENA - FORMALIDADES E INEFICACIA:</text:span><text:span text:style-name="T29"> Cualquier modificación deberá costar por escrito, con la firma de la totalidad de las partes, no tendrá validez acuerdos verbales de ningún tipo, ya que las partes acuerdan que este es un contrato que exige como formalidad para su modificación, el medio escrito como única prueba de validez de dichos pactos, así como para exigir su cumplimiento o el pago de las obligaciones que de él surjan.</text:span></text:p> <text:p text:style-name="P20"><text:span text:style-name="T26">DECIMA NOVENA - FORMALIDADES E INEFICACIA:</text:span><text:span text:style-name="T30"> Cualquier modificación deberá costar por escrito, con la firma de la totalidad de las partes, no tendrá validez acuerdos verbales de ningún tipo, ya que las partes acuerdan que este es un contrato que exige como formalidad para su modificación, el medio escrito como única prueba de validez de dichos pactos, así como para exigir su cumplimiento o el pago de las obligaciones que de él surjan.</text:span></text:p>
<text:p text:style-name="P28"/> <text:p text:style-name="P28"/>
<text:p text:style-name="P22"><text:span text:style-name="T29">Para constancia, el presente Contrato es suscrito en la ciudad de Bogotá el día </text:span><text:span text:style-name="T40"><text:placeholder text:placeholder-type="text" text:description="subscription.start_date">&lt;subscription.start_date&gt;</text:placeholder></text:span><text:span text:style-name="T33">, en dos (2) ejemplares de igual valor, cada uno de ellos con destino a cada una de las Partes.</text:span></text:p> <text:p text:style-name="P22"><text:span text:style-name="T30">Para constancia, el presente Contrato es suscrito en la ciudad de Bogotá el día </text:span><text:span text:style-name="T41"><text:placeholder text:placeholder-type="text" text:description="subscription.start_date">&lt;subscription.start_date&gt;</text:placeholder></text:span><text:span text:style-name="T34">, en dos (2) ejemplares de igual valor, cada uno de ellos con destino a cada una de las Partes.</text:span></text:p>
<text:p text:style-name="P39"/> <text:p text:style-name="P39"/>
<text:p text:style-name="P39"/> <text:p text:style-name="P39"/>
<text:p text:style-name="P23"><draw:frame draw:style-name="fr2" draw:name="Image1" text:anchor-type="char" svg:x="0.0138in" svg:y="0.1118in" svg:width="1.7283in" svg:height="0.9563in" draw:z-index="5"><draw:image draw:mime-type="image/png"> <text:p text:style-name="P23"><draw:frame draw:style-name="fr2" draw:name="Image1" text:anchor-type="char" svg:x="0.0138in" svg:y="0.1118in" svg:width="1.7283in" svg:height="0.9563in" draw:z-index="5"><draw:image draw:mime-type="image/png">
@ -4875,7 +4875,7 @@
gg== gg==
</office:binary-data> </office:binary-data>
</draw:image> </draw:image>
</draw:frame><text:span text:style-name="T23">EL CONTRATISTA<text:tab/></text:span><text:span text:style-name="T27">EL CONTRATANTE</text:span></text:p> </draw:frame><text:span text:style-name="T24">EL CONTRATISTA<text:tab/></text:span><text:span text:style-name="T28">EL CONTRATANTE</text:span></text:p>
<text:p text:style-name="P40"/> <text:p text:style-name="P40"/>
<text:p text:style-name="P40"/> <text:p text:style-name="P40"/>
<text:p text:style-name="P40"/> <text:p text:style-name="P40"/>
@ -4886,11 +4886,11 @@
</draw:line><draw:line text:anchor-type="paragraph" draw:z-index="1" draw:name="Línea horizontal 4" draw:style-name="gr1" draw:text-style-name="P61" svg:x1="3.6311in" svg:y1="0.0543in" svg:x2="6.7768in" svg:y2="0.0516in"> </draw:line><draw:line text:anchor-type="paragraph" draw:z-index="1" draw:name="Línea horizontal 4" draw:style-name="gr1" draw:text-style-name="P61" svg:x1="3.6311in" svg:y1="0.0543in" svg:x2="6.7768in" svg:y2="0.0516in">
<text:p/> <text:p/>
</draw:line><text:tab/><text:tab/><text:tab/></text:p> </draw:line><text:tab/><text:tab/><text:tab/></text:p>
<text:p text:style-name="P24"><text:span text:style-name="T35">JESÚS ANTONIO GIIRALDO<text:tab/></text:span><text:span text:style-name="T37"><text:placeholder text:placeholder-type="text" text:description="subscription.party.name">&lt;subscription.party.name&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P24"><text:span text:style-name="T36">JESÚS ANTONIO GIIRALDO<text:tab/></text:span><text:span text:style-name="T38"><text:placeholder text:placeholder-type="text" text:description="subscription.party.name">&lt;subscription.party.name&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P41"><text:span text:style-name="T29">CC 80.173.191 DE BOGOTÁ <text:s text:c="64"/></text:span><text:span text:style-name="T32">NIT/CC </text:span><text:span text:style-name="T30"><text:placeholder text:placeholder-type="text" text:description="subscription.party.tax_identifier.code">&lt;subscription.party.tax_identifier.code&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P41"><text:span text:style-name="T30">CC 80.173.191 DE BOGOTÁ <text:s text:c="64"/></text:span><text:span text:style-name="T33">NIT/CC </text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text" text:description="subscription.party.tax_identifier.code">&lt;subscription.party.tax_identifier.code&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P40">REPRESENTANTE LEGAL</text:p> <text:p text:style-name="P40">REPRESENTANTE LEGAL</text:p>
<text:p text:style-name="P52">SMART VISION S.A.S</text:p> <text:p text:style-name="P52">SMART VISION S.A.S</text:p>
<text:p text:style-name="P23"><text:span text:style-name="T35">NIT </text:span><text:span text:style-name="T23">901091201-1</text:span></text:p> <text:p text:style-name="P23"><text:span text:style-name="T36">NIT </text:span><text:span text:style-name="T24">901091201-1</text:span></text:p>
<text:p text:style-name="P40"/> <text:p text:style-name="P40"/>
<text:p text:style-name="P40"/> <text:p text:style-name="P40"/>
<text:p text:style-name="P37"/> <text:p text:style-name="P37"/>
@ -4916,7 +4916,7 @@
</table:table-row> </table:table-row>
<table:table-row> <table:table-row>
<table:table-cell table:style-name="Tabla5.A2" table:number-columns-spanned="3" office:value-type="string"> <table:table-cell table:style-name="Tabla5.A2" table:number-columns-spanned="3" office:value-type="string">
<text:p text:style-name="P33"><text:placeholder text:placeholder-type="text" text:description="for each=&quot;equipment in subscription.equipments">&lt;for each=&quot;equipment in subscription.equipments&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P33"><text:placeholder text:placeholder-type="text" text:description="for each=&quot;equipment in subscription.current_equipments&quot;">&lt;for each=&quot;equipment in subscription.current_equipments&quot;&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
<table:covered-table-cell/> <table:covered-table-cell/>
<table:covered-table-cell/> <table:covered-table-cell/>

View File

@ -1,142 +1,144 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text"> <office:document xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:creation-date>2022-11-03T17:09:30.500078764</meta:creation-date><dc:date>2023-04-04T13:07:11.252504072</dc:date><meta:editing-duration>PT1H33M51S</meta:editing-duration><meta:editing-cycles>29</meta:editing-cycles><meta:generator>LibreOffice/7.4.6.2$Linux_X86_64 LibreOffice_project/40$Build-2</meta:generator><meta:document-statistic meta:table-count="6" meta:image-count="1" meta:object-count="0" meta:page-count="3" meta:paragraph-count="77" meta:word-count="228" meta:character-count="2732" meta:non-whitespace-character-count="2564"/></office:meta> <office:meta><meta:creation-date>2022-11-03T17:09:30.500078764</meta:creation-date><dc:date>2023-09-24T21:19:00.980634559</dc:date><meta:editing-duration>PT1H39M48S</meta:editing-duration><meta:editing-cycles>34</meta:editing-cycles><meta:generator>LibreOffice/7.5.6.2$Linux_X86_64 LibreOffice_project/50$Build-2</meta:generator><meta:document-statistic meta:table-count="6" meta:image-count="1" meta:object-count="0" meta:page-count="3" meta:paragraph-count="84" meta:word-count="238" meta:character-count="2912" meta:non-whitespace-character-count="2742"/></office:meta>
<office:settings> <office:settings>
<config:config-item-set config:name="ooo:view-settings"> <config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">2879</config:config-item> <config:config-item config:name="ViewAreaTop" config:type="long">55326</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">5064</config:config-item> <config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">17501</config:config-item> <config:config-item config:name="ViewAreaWidth" config:type="long">35003</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">7770</config:config-item> <config:config-item config:name="ViewAreaHeight" config:type="long">15688</config:config-item>
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item> <config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item> <config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="Views"> <config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry> <config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item> <config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">18387</config:config-item> <config:config-item config:name="ViewLeft" config:type="long">8804</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">5872</config:config-item> <config:config-item config:name="ViewTop" config:type="long">67389</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">5064</config:config-item> <config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">2879</config:config-item> <config:config-item config:name="VisibleTop" config:type="long">55326</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">22564</config:config-item> <config:config-item config:name="VisibleRight" config:type="long">35001</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">10647</config:config-item> <config:config-item config:name="VisibleBottom" config:type="long">71012</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item> <config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns" config:type="short">1</config:config-item> <config:config-item config:name="ViewLayoutColumns" config:type="short">1</config:config-item>
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item> <config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">280</config:config-item> <config:config-item config:name="ZoomFactor" config:type="short">140</config:config-item>
<config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item> <config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item>
<config:config-item config:name="KeepRatio" config:type="boolean">false</config:config-item> <config:config-item config:name="KeepRatio" config:type="boolean">false</config:config-item>
<config:config-item config:name="HideWhitespace" config:type="boolean">false</config:config-item>
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item> <config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
<config:config-item config:name="LegacySingleLineFontwork" config:type="boolean">false</config:config-item>
<config:config-item config:name="ConnectorUseSnapRect" config:type="boolean">false</config:config-item>
</config:config-item-map-entry> </config:config-item-map-entry>
</config:config-item-map-indexed> </config:config-item-map-indexed>
</config:config-item-set> </config:config-item-set>
<config:config-item-set config:name="ooo:configuration-settings"> <config:config-item-set config:name="ooo:configuration-settings">
<config:config-item config:name="PrintProspect" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintReversed" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintProspectRTL" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintSingleJobs" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintLeftPages" config:type="boolean">true</config:config-item> <config:config-item config:name="PrintLeftPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintTables" config:type="boolean">true</config:config-item> <config:config-item config:name="PrintPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintControls" config:type="boolean">true</config:config-item> <config:config-item config:name="PrintControls" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintPageBackground" config:type="boolean">true</config:config-item> <config:config-item config:name="PrintProspect" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintDrawings" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintBlackFonts" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintBlackFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintAnnotationMode" config:type="short">0</config:config-item> <config:config-item config:name="PrintAnnotationMode" config:type="short">0</config:config-item>
<config:config-item config:name="PrintTextPlaceholder" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintEmptyPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="ProtectFields" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintSingleJobs" config:type="boolean">false</config:config-item>
<config:config-item config:name="AutoFirstLineIndentDisregardLineSpace" config:type="boolean">false</config:config-item>
<config:config-item config:name="HeaderSpacingBelowLastPara" config:type="boolean">true</config:config-item>
<config:config-item config:name="ProtectBookmarks" config:type="boolean">false</config:config-item> <config:config-item config:name="ProtectBookmarks" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmptyDbFieldHidesPara" config:type="boolean">true</config:config-item> <config:config-item config:name="ContinuousEndnotes" config:type="boolean">false</config:config-item>
<config:config-item config:name="DisableOffPagePositioning" config:type="boolean">false</config:config-item> <config:config-item config:name="DisableOffPagePositioning" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintTables" config:type="boolean">true</config:config-item>
<config:config-item config:name="SubtractFlysAnchoredAtFlys" config:type="boolean">false</config:config-item> <config:config-item config:name="SubtractFlysAnchoredAtFlys" config:type="boolean">false</config:config-item>
<config:config-item config:name="PropLineSpacingShrinksFirstLine" config:type="boolean">true</config:config-item>
<config:config-item config:name="ApplyParagraphMarkFormatToNumbering" config:type="boolean">true</config:config-item> <config:config-item config:name="ApplyParagraphMarkFormatToNumbering" config:type="boolean">true</config:config-item>
<config:config-item config:name="GutterAtTop" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintFaxName" config:type="string"/>
<config:config-item config:name="SurroundTextWrapSmall" config:type="boolean">true</config:config-item>
<config:config-item config:name="TreatSingleColumnBreakAsPageBreak" config:type="boolean">false</config:config-item> <config:config-item config:name="TreatSingleColumnBreakAsPageBreak" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedSystemFonts" config:type="boolean">false</config:config-item> <config:config-item config:name="PropLineSpacingShrinksFirstLine" config:type="boolean">true</config:config-item>
<config:config-item config:name="TabOverSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabOverMargin" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedComplexScriptFonts" config:type="boolean">true</config:config-item> <config:config-item config:name="EmbedComplexScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedAsianScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedLatinScriptFonts" config:type="boolean">true</config:config-item> <config:config-item config:name="EmbedLatinScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedOnlyUsedFonts" config:type="boolean">false</config:config-item> <config:config-item config:name="EmbedOnlyUsedFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="WordLikeWrapForAsCharFlys" config:type="boolean">false</config:config-item>
<config:config-item config:name="ContinuousEndnotes" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item> <config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="ClippedPictures" config:type="boolean">false</config:config-item> <config:config-item config:name="ClippedPictures" config:type="boolean">false</config:config-item>
<config:config-item config:name="FrameAutowidthWithMorePara" config:type="boolean">true</config:config-item>
<config:config-item config:name="FloattableNomargins" config:type="boolean">false</config:config-item> <config:config-item config:name="FloattableNomargins" config:type="boolean">false</config:config-item>
<config:config-item config:name="UnbreakableNumberings" config:type="boolean">false</config:config-item> <config:config-item config:name="UnbreakableNumberings" config:type="boolean">false</config:config-item>
<config:config-item config:name="HeaderSpacingBelowLastPara" config:type="boolean">true</config:config-item>
<config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</config:config-item> <config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseOldPrinterMetrics" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabOverMargin" config:type="boolean">true</config:config-item>
<config:config-item config:name="TabsRelativeToIndent" config:type="boolean">false</config:config-item>
<config:config-item config:name="UseOldNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
<config:config-item config:name="CurrentDatabaseCommandType" config:type="int">0</config:config-item>
<config:config-item config:name="LinkUpdateMode" config:type="short">1</config:config-item>
<config:config-item config:name="AddParaSpacingToTableCells" config:type="boolean">true</config:config-item>
<config:config-item config:name="FrameAutowidthWithMorePara" config:type="boolean">true</config:config-item>
<config:config-item config:name="CurrentDatabaseCommand" config:type="string"/>
<config:config-item config:name="PrinterIndependentLayout" config:type="string">high-resolution</config:config-item>
<config:config-item config:name="ApplyUserData" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintFaxName" config:type="string"/>
<config:config-item config:name="CurrentDatabaseDataSource" config:type="string"/>
<config:config-item config:name="ClipAsCharacterAnchoredWriterFlyFrames" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item>
<config:config-item config:name="SaveThumbnail" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseFormerTextWrapping" config:type="boolean">false</config:config-item>
<config:config-item config:name="AutoFirstLineIndentDisregardLineSpace" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddExternalLeading" config:type="boolean">true</config:config-item>
<config:config-item config:name="AddParaTableSpacing" config:type="boolean">true</config:config-item>
<config:config-item config:name="StylesNoDefault" config:type="boolean">false</config:config-item>
<config:config-item config:name="ChartAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrinterSetup" config:type="base64Binary"/>
<config:config-item config:name="AddParaTableSpacingAtStart" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">2025600</config:config-item>
<config:config-item config:name="EmbeddedDatabaseName" config:type="string"/>
<config:config-item config:name="FieldAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="OutlineLevelYieldsNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="FootnoteInColumnToPageEnd" config:type="boolean">true</config:config-item>
<config:config-item config:name="AlignTabStopPosition" config:type="boolean">true</config:config-item>
<config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
<config:config-item config:name="PrinterName" config:type="string"/>
<config:config-item config:name="SaveGlobalDocumentLinks" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="UseFormerLineSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddParaLineSpacingToTableCells" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseFormerObjectPositioning" config:type="boolean">false</config:config-item> <config:config-item config:name="UseFormerObjectPositioning" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintGraphics" config:type="boolean">true</config:config-item> <config:config-item config:name="UseOldNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="ImagePreferredDPI" config:type="int">0</config:config-item>
<config:config-item config:name="SurroundTextWrapSmall" config:type="boolean">true</config:config-item>
<config:config-item config:name="ConsiderTextWrapOnObjPos" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">true</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="TabOverSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="IgnoreFirstLineIndentInNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="NoNumberingShowFollowBy" config:type="boolean">false</config:config-item>
<config:config-item config:name="RedlineProtectionKey" config:type="base64Binary"/>
<config:config-item config:name="DoNotJustifyLinesWithManualBreak" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintProspectRTL" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintEmptyPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="DoNotResetParaAttrsForNumFont" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddFrameOffsets" config:type="boolean">true</config:config-item>
<config:config-item config:name="IgnoreTabsAndBlanksForLineCalculation" config:type="boolean">false</config:config-item>
<config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
<config:config-item config:name="DoNotCaptureDrawObjsOnPage" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddVerticalFrameOffsets" config:type="boolean">false</config:config-item>
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsLabelDocument" config:type="boolean">false</config:config-item>
<config:config-item config:name="TableRowKeep" config:type="boolean">true</config:config-item>
<config:config-item config:name="RsidRoot" config:type="int">687431</config:config-item> <config:config-item config:name="RsidRoot" config:type="int">687431</config:config-item>
<config:config-item config:name="PrintHiddenText" config:type="boolean">false</config:config-item> <config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="ProtectForm" config:type="boolean">false</config:config-item> <config:config-item config:name="CurrentDatabaseDataSource" config:type="string"/>
<config:config-item config:name="MsWordCompMinLineHeightByFly" config:type="boolean">true</config:config-item> <config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
<config:config-item config:name="BackgroundParaOverDrawings" config:type="boolean">false</config:config-item> <config:config-item config:name="AddFrameOffsets" config:type="boolean">true</config:config-item>
<config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
<config:config-item config:name="Rsid" config:type="int">2272625</config:config-item>
<config:config-item config:name="FootnoteInColumnToPageEnd" config:type="boolean">true</config:config-item>
<config:config-item config:name="ProtectFields" config:type="boolean">false</config:config-item>
<config:config-item config:name="SaveGlobalDocumentLinks" config:type="boolean">false</config:config-item>
<config:config-item config:name="ClipAsCharacterAnchoredWriterFlyFrames" config:type="boolean">false</config:config-item>
<config:config-item config:name="LinkUpdateMode" config:type="short">1</config:config-item>
<config:config-item config:name="AddExternalLeading" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintGraphics" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedSystemFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsLabelDocument" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddParaLineSpacingToTableCells" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseFormerTextWrapping" config:type="boolean">false</config:config-item>
<config:config-item config:name="HyphenateURLs" config:type="boolean">true</config:config-item>
<config:config-item config:name="AddParaTableSpacingAtStart" config:type="boolean">true</config:config-item>
<config:config-item config:name="TabsRelativeToIndent" config:type="boolean">false</config:config-item>
<config:config-item config:name="FieldAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item> <config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">true</config:config-item> <config:config-item config:name="ChartAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="ImagePreferredDPI" config:type="int">0</config:config-item>
<config:config-item config:name="PrinterSetup" config:type="base64Binary"/>
<config:config-item config:name="SmallCapsPercentage66" config:type="boolean">false</config:config-item> <config:config-item config:name="SmallCapsPercentage66" config:type="boolean">false</config:config-item>
<config:config-item config:name="CollapseEmptyCellPara" config:type="boolean">true</config:config-item> <config:config-item config:name="AlignTabStopPosition" config:type="boolean">true</config:config-item>
<config:config-item config:name="DropCapPunctuation" config:type="boolean">false</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrinterName" config:type="string"/>
<config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
<config:config-item config:name="AddParaTableSpacing" config:type="boolean">true</config:config-item>
<config:config-item config:name="DoNotJustifyLinesWithManualBreak" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintHiddenText" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrinterIndependentLayout" config:type="string">high-resolution</config:config-item>
<config:config-item config:name="TabOverflow" config:type="boolean">true</config:config-item> <config:config-item config:name="TabOverflow" config:type="boolean">true</config:config-item>
<config:config-item config:name="AddParaSpacingToTableCells" config:type="boolean">true</config:config-item>
<config:config-item config:name="AddVerticalFrameOffsets" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">true</config:config-item>
<config:config-item config:name="ApplyUserData" config:type="boolean">true</config:config-item>
<config:config-item config:name="MsWordCompMinLineHeightByFly" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintTextPlaceholder" config:type="boolean">false</config:config-item>
<config:config-item config:name="IgnoreFirstLineIndentInNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="UseFormerLineSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintPageBackground" config:type="boolean">true</config:config-item>
<config:config-item config:name="RedlineProtectionKey" config:type="base64Binary"/>
<config:config-item config:name="EmbedAsianScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="BackgroundParaOverDrawings" config:type="boolean">false</config:config-item>
<config:config-item config:name="SaveThumbnail" config:type="boolean">true</config:config-item>
<config:config-item config:name="ConsiderTextWrapOnObjPos" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbeddedDatabaseName" config:type="string"/>
<config:config-item config:name="ProtectForm" config:type="boolean">false</config:config-item>
<config:config-item config:name="DoNotResetParaAttrsForNumFont" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmptyDbFieldHidesPara" config:type="boolean">true</config:config-item>
<config:config-item config:name="TableRowKeep" config:type="boolean">true</config:config-item>
<config:config-item config:name="NoNumberingShowFollowBy" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="IgnoreTabsAndBlanksForLineCalculation" config:type="boolean">false</config:config-item>
<config:config-item config:name="DoNotCaptureDrawObjsOnPage" config:type="boolean">false</config:config-item>
<config:config-item config:name="GutterAtTop" config:type="boolean">false</config:config-item>
<config:config-item config:name="StylesNoDefault" config:type="boolean">false</config:config-item>
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintReversed" config:type="boolean">false</config:config-item>
<config:config-item config:name="UseOldPrinterMetrics" config:type="boolean">false</config:config-item>
<config:config-item config:name="CurrentDatabaseCommandType" config:type="int">0</config:config-item>
<config:config-item config:name="PrintDrawings" config:type="boolean">true</config:config-item>
<config:config-item config:name="OutlineLevelYieldsNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="CurrentDatabaseCommand" config:type="string"/>
<config:config-item config:name="CollapseEmptyCellPara" config:type="boolean">true</config:config-item>
</config:config-item-set> </config:config-item-set>
</office:settings> </office:settings>
<office:scripts> <office:scripts>
@ -157,7 +159,7 @@
</office:font-face-decls> </office:font-face-decls>
<office:styles> <office:styles>
<style:default-style style:family="graphic"> <style:default-style style:family="graphic">
<style:graphic-properties svg:stroke-color="#3465a4" draw:fill-color="#729fcf" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.1181in" draw:shadow-offset-y="0.1181in" draw:start-line-spacing-horizontal="0.1114in" draw:start-line-spacing-vertical="0.1114in" draw:end-line-spacing-horizontal="0.1114in" draw:end-line-spacing-vertical="0.1114in" style:flow-with-text="false"/> <style:graphic-properties svg:stroke-color="#3465a4" draw:fill-color="#729fcf" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.1181in" draw:shadow-offset-y="0.1181in" draw:start-line-spacing-horizontal="0.1114in" draw:start-line-spacing-vertical="0.1114in" draw:end-line-spacing-horizontal="0.1114in" draw:end-line-spacing-vertical="0.1114in" style:writing-mode="lr-tb" style:flow-with-text="false"/>
<style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" style:writing-mode="lr-tb" style:font-independent-line-spacing="false"> <style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" style:writing-mode="lr-tb" style:font-independent-line-spacing="false">
<style:tab-stops/> <style:tab-stops/>
</style:paragraph-properties> </style:paragraph-properties>
@ -259,10 +261,10 @@
<style:text-properties style:font-name="StarSymbol" fo:font-family="StarSymbol" fo:font-size="9pt" style:font-name-asian="StarSymbol" style:font-family-asian="StarSymbol" style:font-size-asian="9pt" style:font-name-complex="StarSymbol" style:font-family-complex="StarSymbol" style:font-size-complex="9pt"/> <style:text-properties style:font-name="StarSymbol" fo:font-family="StarSymbol" fo:font-size="9pt" style:font-name-asian="StarSymbol" style:font-family-asian="StarSymbol" style:font-size-asian="9pt" style:font-name-complex="StarSymbol" style:font-family-complex="StarSymbol" style:font-size-complex="9pt"/>
</style:style> </style:style>
<style:style style:name="Frame" style:family="graphic"> <style:style style:name="Frame" style:family="graphic">
<style:graphic-properties text:anchor-type="paragraph" svg:x="0in" svg:y="0in" fo:margin-left="0.0791in" fo:margin-right="0.0791in" fo:margin-top="0.0791in" fo:margin-bottom="0.0791in" style:wrap="parallel" style:number-wrapped-paragraphs="no-limit" style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph-content" style:horizontal-pos="center" style:horizontal-rel="paragraph-content" fo:padding="0.0591in" fo:border="0.06pt solid #000000"/> <style:graphic-properties text:anchor-type="paragraph" svg:x="0in" svg:y="0in" fo:margin-left="0.0791in" fo:margin-right="0.0791in" fo:margin-top="0.0791in" fo:margin-bottom="0.0791in" style:wrap="parallel" style:number-wrapped-paragraphs="no-limit" style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph-content" style:horizontal-pos="center" style:horizontal-rel="paragraph-content" fo:background-color="transparent" draw:fill="none" fo:padding="0.0591in" fo:border="0.06pt solid #000000"/>
</style:style> </style:style>
<style:style style:name="Graphics" style:family="graphic"> <style:style style:name="Graphics" style:family="graphic">
<style:graphic-properties text:anchor-type="paragraph" svg:x="0in" svg:y="0in" style:wrap="dynamic" style:number-wrapped-paragraphs="no-limit" style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph" style:horizontal-pos="center" style:horizontal-rel="paragraph"/> <style:graphic-properties text:anchor-type="paragraph" svg:x="0in" svg:y="0in" style:wrap="dynamic" style:number-wrapped-paragraphs="no-limit" style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph" style:horizontal-pos="center" style:horizontal-rel="paragraph" fo:background-color="transparent" draw:fill="none"/>
</style:style> </style:style>
<text:outline-style style:name="Outline"> <text:outline-style style:name="Outline">
<text:outline-level-style text:level="1" loext:num-list-format="%1%" style:num-format=""> <text:outline-level-style text:level="1" loext:num-list-format="%1%" style:num-format="">
@ -319,16 +321,16 @@
<text:notes-configuration text:note-class="footnote" style:num-format="1" text:start-value="0" text:footnotes-position="page" text:start-numbering-at="document"/> <text:notes-configuration text:note-class="footnote" style:num-format="1" text:start-value="0" text:footnotes-position="page" text:start-numbering-at="document"/>
<text:notes-configuration text:note-class="endnote" style:num-format="i" text:start-value="0"/> <text:notes-configuration text:note-class="endnote" style:num-format="i" text:start-value="0"/>
<text:linenumbering-configuration text:number-lines="false" text:offset="0.1965in" style:num-format="1" text:number-position="left" text:increment="5"/> <text:linenumbering-configuration text:number-lines="false" text:offset="0.1965in" style:num-format="1" text:number-position="left" text:increment="5"/>
<number:currency-style style:name="N122P0" style:volatile="true"> <number:currency-style style:name="N130P0" style:volatile="true">
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol> <number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> <number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
</number:currency-style> </number:currency-style>
<number:currency-style style:name="N122"> <number:currency-style style:name="N130">
<style:text-properties fo:color="#ff0000"/> <style:text-properties fo:color="#ff0000"/>
<number:text>-</number:text> <number:text>-</number:text>
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol> <number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> <number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
<style:map style:condition="value()&gt;=0" style:apply-style-name="N122P0"/> <style:map style:condition="value()&gt;=0" style:apply-style-name="N130P0"/>
</number:currency-style> </number:currency-style>
<style:default-page-layout> <style:default-page-layout>
<style:page-layout-properties style:writing-mode="lr-tb" style:layout-grid-standard-mode="true"/> <style:page-layout-properties style:writing-mode="lr-tb" style:layout-grid-standard-mode="true"/>
@ -500,77 +502,77 @@
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="7pt" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-size-complex="7pt"/> <style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="7pt" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style> </style:style>
<style:style style:name="P14" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P14" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-type="double" style:text-underline-width="auto" style:text-underline-color="font-color" officeooo:rsid="026544ec" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/> <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-type="double" style:text-underline-width="auto" style:text-underline-color="font-color" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-size-complex="7pt"/> <style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-type="double" style:text-underline-width="auto" style:text-underline-color="font-color" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style> </style:style>
<style:style style:name="P16" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P15" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="0015f757" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/> <style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="0015f757" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P17" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P16" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00061322" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/> <style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00061322" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P18" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P17" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="000baf52" officeooo:paragraph-rsid="000baf52" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/> <style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="000baf52" officeooo:paragraph-rsid="000baf52" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P19" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P18" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="000d0c4f" officeooo:paragraph-rsid="00111685" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/> <style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="000d0c4f" officeooo:paragraph-rsid="00111685" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P20" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P19" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00061322" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/> <style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00061322" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P21" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P20" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00111685" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/> <style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00111685" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P22" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P21" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="8pt" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/> <style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="10pt" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P22" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="10pt" officeooo:paragraph-rsid="0014b27d" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style> </style:style>
<style:style style:name="P23" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P23" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/> <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-type="double" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/> <style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="8pt" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="P24" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P24" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-type="double" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P25" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-style-complex="normal" style:font-weight-complex="normal"/> <style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="0049dca0" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="P25" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P26" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/> <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="00111685" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:text-emphasize="none"/> <style:text-properties officeooo:paragraph-rsid="0049dca0"/>
</style:style>
<style:style style:name="P26" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="001455f3" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:text-emphasize="none"/>
</style:style> </style:style>
<style:style style:name="P27" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P27" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="0014ed01" officeooo:paragraph-rsid="00111685" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P28" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="000e7fd8" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/> <style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="000e7fd8" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
</style:style> </style:style>
<style:style style:name="P29" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P28" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/> <style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="9.5pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00061322" style:font-size-asian="9.5pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/> <style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese1" fo:font-size="9.5pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00061322" style:font-size-asian="9.5pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style> </style:style>
<style:style style:name="P30" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P29" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/> <style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="00061322" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/> <style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00061322" officeooo:paragraph-rsid="00061322" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style> </style:style>
<style:style style:name="P31" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P30" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="0012f95a" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/> <style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="0012f95a" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style> </style:style>
<style:style style:name="P31" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="0021dda2" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="10pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
</style:style>
<style:style style:name="P32" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P32" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00111685" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/> <style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00111685" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
@ -626,26 +628,26 @@
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00129398" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="00129398" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P46" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P46" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="000baf52" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P47" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00129398" officeooo:paragraph-rsid="0012f95a" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00129398" officeooo:paragraph-rsid="0012f95a" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P48" style:family="paragraph" style:parent-style-name="Text_20_body"> <style:style style:name="P47" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" officeooo:paragraph-rsid="00129398" style:font-size-asian="10pt" style:font-size-complex="10pt"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" officeooo:paragraph-rsid="00129398" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style> </style:style>
<style:style style:name="P49" style:family="paragraph" style:parent-style-name="Text_20_body"> <style:style style:name="P48" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" officeooo:paragraph-rsid="0012f95a" style:font-size-asian="10pt" style:font-size-complex="10pt"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" officeooo:paragraph-rsid="0012f95a" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style> </style:style>
<style:style style:name="P50" style:family="paragraph" style:parent-style-name="Text_20_body"> <style:style style:name="P49" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" officeooo:paragraph-rsid="001c7911" style:font-size-asian="10pt" style:font-size-complex="10pt"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" officeooo:paragraph-rsid="001c7911" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style> </style:style>
<style:style style:name="P50" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" style:text-underline-style="none" officeooo:paragraph-rsid="001f79ec" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P51" style:family="paragraph" style:parent-style-name="Table_20_Contents"> <style:style style:name="P51" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" officeooo:paragraph-rsid="0012f95a" style:font-size-asian="10pt" style:font-size-complex="10pt"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" officeooo:paragraph-rsid="0012f95a" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
@ -657,9 +659,9 @@
<style:style style:name="P53" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P53" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties officeooo:rsid="000a7d47" officeooo:paragraph-rsid="000a7d47"/> <style:text-properties officeooo:rsid="000a7d47" officeooo:paragraph-rsid="000a7d47"/>
</style:style> </style:style>
<style:style style:name="P54" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P54" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:writing-mode="lr-tb"/>
<style:text-properties officeooo:paragraph-rsid="0049dca0"/> <style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Droid Sans Japanese2" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="000cde7f" officeooo:paragraph-rsid="0021dda2" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold" style:text-emphasize="none"/>
</style:style> </style:style>
<style:style style:name="T1" style:family="text"> <style:style style:name="T1" style:family="text">
<style:text-properties fo:color="#333333" loext:opacity="100%" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-weight-asian="bold" style:font-weight-complex="bold"/> <style:text-properties fo:color="#333333" loext:opacity="100%" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
@ -707,7 +709,7 @@
<style:text-properties fo:color="#333333" loext:opacity="100%" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-weight-asian="bold" style:font-weight-complex="bold"/> <style:text-properties fo:color="#333333" loext:opacity="100%" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="T16" style:family="text"> <style:style style:name="T16" style:family="text">
<style:text-properties fo:color="#333333" loext:opacity="100%" style:text-underline-style="none" fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/> <style:text-properties fo:color="#333333" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="7pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="T17" style:family="text"> <style:style style:name="T17" style:family="text">
<style:text-properties fo:color="#333333" loext:opacity="100%" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-weight-asian="bold" style:font-weight-complex="bold"/> <style:text-properties fo:color="#333333" loext:opacity="100%" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
@ -719,85 +721,73 @@
<style:text-properties fo:color="#333333" loext:opacity="100%" style:text-underline-style="none" officeooo:rsid="0049dca0"/> <style:text-properties fo:color="#333333" loext:opacity="100%" style:text-underline-style="none" officeooo:rsid="0049dca0"/>
</style:style> </style:style>
<style:style style:name="T20" style:family="text"> <style:style style:name="T20" style:family="text">
<style:text-properties fo:color="#333333" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="7pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="T21" style:family="text">
<style:text-properties fo:color="#666666" loext:opacity="100%" fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/> <style:text-properties fo:color="#666666" loext:opacity="100%" fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="T22" style:family="text"> <style:style style:name="T21" style:family="text">
<style:text-properties fo:color="#666666" loext:opacity="100%" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-weight-asian="bold" style:font-weight-complex="bold"/> <style:text-properties fo:color="#666666" loext:opacity="100%" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="T23" style:family="text"> <style:style style:name="T22" style:family="text">
<style:text-properties fo:color="#666666" loext:opacity="100%" fo:font-weight="bold" officeooo:rsid="001cd488" style:font-weight-asian="bold" style:font-weight-complex="bold"/> <style:text-properties fo:color="#666666" loext:opacity="100%" fo:font-weight="bold" officeooo:rsid="001cd488" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="T24" style:family="text"> <style:style style:name="T23" style:family="text">
<style:text-properties fo:color="#666666" loext:opacity="100%" style:text-underline-style="none" fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="T25" style:family="text">
<style:text-properties fo:color="#666666" loext:opacity="100%" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="T26" style:family="text">
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-type="double" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/> <style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-type="double" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="T27" style:family="text"> <style:style style:name="T24" style:family="text">
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="7pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/> <style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese2" fo:font-size="7pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="T25" style:family="text">
<style:text-properties fo:color="#666666" loext:opacity="100%" style:text-underline-style="none" fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="T26" style:family="text">
<style:text-properties fo:color="#666666" loext:opacity="100%" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="T27" style:family="text">
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="7pt" fo:font-weight="bold" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="T28" style:family="text"> <style:style style:name="T28" style:family="text">
<style:text-properties officeooo:rsid="026544ec"/>
</style:style>
<style:style style:name="T29" style:family="text">
<style:text-properties officeooo:rsid="0014ed01"/>
</style:style>
<style:style style:name="T30" style:family="text">
<style:text-properties officeooo:rsid="000a7d47"/>
</style:style>
<style:style style:name="T31" style:family="text">
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" style:font-style-asian="normal" style:text-emphasize="none"/>
</style:style>
<style:style style:name="T32" style:family="text">
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" officeooo:rsid="0014ed01" style:font-style-asian="normal" style:text-emphasize="none"/>
</style:style>
<style:style style:name="T33" style:family="text">
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" officeooo:rsid="000cde7f" style:font-style-asian="normal" style:text-emphasize="none"/>
</style:style>
<style:style style:name="T34" style:family="text">
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-weight-complex="normal" style:text-emphasize="none"/>
</style:style>
<style:style style:name="T35" style:family="text">
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-weight-complex="normal" style:text-emphasize="none"/>
</style:style>
<style:style style:name="T36" style:family="text">
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
</style:style>
<style:style style:name="T37" style:family="text">
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:letter-spacing="-0.0075in" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" style:font-style-asian="normal" style:text-emphasize="none"/>
</style:style>
<style:style style:name="T38" style:family="text">
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:letter-spacing="-0.0071in" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" style:font-style-asian="normal" style:text-emphasize="none"/>
</style:style>
<style:style style:name="T39" style:family="text">
<style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="T40" style:family="text">
<style:text-properties fo:font-weight="bold" officeooo:rsid="000a7d47" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="T41" style:family="text">
<style:text-properties fo:font-weight="bold" officeooo:rsid="000cde7f" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="T42" style:family="text">
<style:text-properties officeooo:rsid="00106d28"/>
</style:style>
<style:style style:name="T43" style:family="text">
<style:text-properties style:text-underline-style="none" officeooo:rsid="026544ec"/> <style:text-properties style:text-underline-style="none" officeooo:rsid="026544ec"/>
</style:style> </style:style>
<style:style style:name="T44" style:family="text"> <style:style style:name="T29" style:family="text">
<style:text-properties fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/> <style:text-properties officeooo:rsid="000a7d47"/>
</style:style> </style:style>
<style:style style:name="T45" style:family="text"> <style:style style:name="T30" style:family="text">
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/> <style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" style:font-style-asian="normal" style:text-emphasize="none"/>
</style:style> </style:style>
<style:style style:name="T46" style:family="text"> <style:style style:name="T31" style:family="text">
<style:text-properties style:font-name="Droid Sans Japanese2" fo:font-size="7pt" fo:font-weight="bold" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/> <style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" officeooo:rsid="0014ed01" style:font-style-asian="normal" style:text-emphasize="none"/>
</style:style>
<style:style style:name="T32" style:family="text">
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" officeooo:rsid="000cde7f" style:font-style-asian="normal" style:text-emphasize="none"/>
</style:style>
<style:style style:name="T33" style:family="text">
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-weight-complex="normal" style:text-emphasize="none"/>
</style:style>
<style:style style:name="T34" style:family="text">
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-weight-complex="normal" style:text-emphasize="none"/>
</style:style>
<style:style style:name="T35" style:family="text">
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="000cde7f" style:font-size-asian="9pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal" style:text-emphasize="none"/>
</style:style>
<style:style style:name="T36" style:family="text">
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:letter-spacing="-0.0075in" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" style:font-style-asian="normal" style:text-emphasize="none"/>
</style:style>
<style:style style:name="T37" style:family="text">
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:letter-spacing="-0.0071in" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" style:font-style-asian="normal" style:text-emphasize="none"/>
</style:style>
<style:style style:name="T38" style:family="text">
<style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="T39" style:family="text">
<style:text-properties fo:font-weight="bold" officeooo:rsid="000a7d47" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="T40" style:family="text">
<style:text-properties fo:font-weight="bold" officeooo:rsid="000cde7f" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="T41" style:family="text">
<style:text-properties officeooo:rsid="00106d28"/>
</style:style>
<style:style style:name="T42" style:family="text">
<style:text-properties fo:font-size="10pt" fo:font-weight="bold" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="fr1" style:family="graphic" style:parent-style-name="Graphics"> <style:style style:name="fr1" style:family="graphic" style:parent-style-name="Graphics">
<style:graphic-properties style:vertical-pos="middle" style:vertical-rel="baseline" style:horizontal-pos="from-left" style:horizontal-rel="paragraph" style:mirror="none" fo:clip="rect(0in, 0in, 0in, 0in)" draw:luminance="0%" draw:contrast="0%" draw:red="0%" draw:green="0%" draw:blue="0%" draw:gamma="100%" draw:color-inversion="false" draw:image-opacity="100%" draw:color-mode="standard" draw:wrap-influence-on-position="once-concurrent" loext:allow-overlap="true"/> <style:graphic-properties style:vertical-pos="middle" style:vertical-rel="baseline" style:horizontal-pos="from-left" style:horizontal-rel="paragraph" style:mirror="none" fo:clip="rect(0in, 0in, 0in, 0in)" draw:luminance="0%" draw:contrast="0%" draw:red="0%" draw:green="0%" draw:blue="0%" draw:gamma="100%" draw:color-inversion="false" draw:image-opacity="100%" draw:color-mode="standard" draw:wrap-influence-on-position="once-concurrent" loext:allow-overlap="true"/>
@ -1384,62 +1374,63 @@
<text:sequence-decl text:display-outline-level="0" text:name="Drawing"/> <text:sequence-decl text:display-outline-level="0" text:name="Drawing"/>
<text:sequence-decl text:display-outline-level="0" text:name="Figure"/> <text:sequence-decl text:display-outline-level="0" text:name="Figure"/>
</text:sequence-decls> </text:sequence-decls>
<text:p text:style-name="P17"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;maintenance in records&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P16"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;maintenance in records&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P52"><text:placeholder text:placeholder-type="text">&lt;choose test=&quot;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P52"><text:placeholder text:placeholder-type="text">&lt;choose test=&quot;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P50"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;maintenance.maintenance_type == &apos;initial&apos;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P49"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;maintenance.maintenance_type == &apos;initial&apos;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P41">REGISTRO DE MANTENIMIENTO PREVENTIVO</text:p> <text:p text:style-name="P41">REGISTRO DE MANTENIMIENTO PREVENTIVO</text:p>
<text:p text:style-name="P50"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p> <text:p text:style-name="P49"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p>
<text:p text:style-name="P48"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;maintenance.maintenance_type == &apos;preventive&apos;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P47"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;maintenance.maintenance_type == &apos;preventive&apos;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P40">REGISTRO DE MANTENIMIENTO PREVENTIVO</text:p> <text:p text:style-name="P40">REGISTRO DE MANTENIMIENTO PREVENTIVO</text:p>
<text:p text:style-name="P48"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p> <text:p text:style-name="P47"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p>
<text:p text:style-name="P48"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;maintenance.maintenance_type == &apos;corrective&apos;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P47"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;maintenance.maintenance_type == &apos;corrective&apos;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P44">REGISTRO DE MANTENIMIENTO CORRECTIVO</text:p> <text:p text:style-name="P44">REGISTRO DE MANTENIMIENTO CORRECTIVO</text:p>
<text:p text:style-name="P48"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p> <text:p text:style-name="P47"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p>
<text:p text:style-name="P45"><text:placeholder text:placeholder-type="text">&lt;/choose&gt;</text:placeholder></text:p> <text:p text:style-name="P45"><text:placeholder text:placeholder-type="text">&lt;/choose&gt;</text:placeholder></text:p>
<text:p text:style-name="P38"><text:span text:style-name="T40">Fecha</text:span><text:span text:style-name="T30"> </text:span><text:span text:style-name="T35"><text:placeholder text:placeholder-type="text" text:description="format_datetime(datetime.datetime.now(),user.language, &apos;%25B %25d ,%25Y %25H:%25M%25p&apos;, maintenance.company.timezone)">&lt;format_datetime(datetime.datetime.now(),user.language, &apos;%b/%d/%Y&apos;, maintenance.company.timezone)&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P38"><text:span text:style-name="T39">Fecha</text:span><text:span text:style-name="T29"> </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text" text:description="format_datetime(datetime.datetime.now(),user.language, &apos;%25B %25d ,%25Y %25H:%25M%25p&apos;, maintenance.company.timezone)">&lt;format_datetime(datetime.datetime.now(),user.language, &apos;%b/%d/%Y&apos;, maintenance.company.timezone)&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P38"><text:span text:style-name="T39">Consecutivo</text:span> <text:span text:style-name="T41"><text:placeholder text:placeholder-type="text">&lt;maintenance.code&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P38"><text:span text:style-name="T38">Consecutivo</text:span> <text:span text:style-name="T40"><text:placeholder text:placeholder-type="text">&lt;maintenance.code&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P53"/> <text:p text:style-name="P53"/>
<text:p text:style-name="P39"><text:span text:style-name="T31">INFORMACIÓN</text:span><text:span text:style-name="T37"> </text:span><text:span text:style-name="T31">DEL</text:span><text:span text:style-name="T38"> </text:span><text:span text:style-name="T31">PROPIETARIO</text:span></text:p> <text:p text:style-name="P39"><text:span text:style-name="T30">INFORMACIÓN</text:span><text:span text:style-name="T36"> </text:span><text:span text:style-name="T30">DEL</text:span><text:span text:style-name="T37"> </text:span><text:span text:style-name="T30">PROPIETARIO</text:span></text:p>
<table:table table:name="Tabla4" table:style-name="Tabla4"> <table:table table:name="Tabla4" table:style-name="Tabla4">
<table:table-column table:style-name="Tabla4.A"/> <table:table-column table:style-name="Tabla4.A"/>
<table:table-column table:style-name="Tabla4.B"/> <table:table-column table:style-name="Tabla4.B"/>
<table:table-row> <table:table-row>
<table:table-cell table:style-name="Tabla4.A1" office:value-type="string"> <table:table-cell table:style-name="Tabla4.A1" office:value-type="string">
<text:p text:style-name="P35"><text:span text:style-name="T31">Nombre / Razón Social: </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text">&lt;maintenance.propietary.name&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P35"><text:span text:style-name="T30">Nombre / Razón Social: </text:span><text:span text:style-name="T33"><text:placeholder text:placeholder-type="text">&lt;maintenance.propietary.name&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P35"><text:span text:style-name="T31">Ciudad: </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text">&lt;maintenance.propietary_address.subdivision_municipality.name&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P35"><text:span text:style-name="T30">Ciudad: </text:span><text:span text:style-name="T33"><text:placeholder text:placeholder-type="text">&lt;maintenance.propietary_address.subdivision_municipality.name&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P36"><text:span text:style-name="T31">Teléfono:</text:span><text:span text:style-name="T34"> </text:span><text:span text:style-name="T35"><text:placeholder text:placeholder-type="text">&lt;maintenance.propietary.phone&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P36"><text:span text:style-name="T30">Teléfono:</text:span><text:span text:style-name="T33"> </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text">&lt;maintenance.propietary.phone&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P37"><text:span text:style-name="T32">Movil</text:span><text:span text:style-name="T33">:</text:span><text:span text:style-name="T35"> </text:span><text:span text:style-name="T35"><text:placeholder text:placeholder-type="text">&lt;maintenance.propietary.mobile&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P37"><text:span text:style-name="T31">Movil</text:span><text:span text:style-name="T32">:</text:span><text:span text:style-name="T34"> </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text">&lt;maintenance.propietary.mobile&gt;</text:placeholder></text:span></text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla4.A1" office:value-type="string"> <table:table-cell table:style-name="Tabla4.A1" office:value-type="string">
<text:p text:style-name="P35"><text:span text:style-name="T31">Tipo Documento: </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text">&lt;&quot;NIT&quot; if maintenance.propietary.tax_identifier.type==&quot;31&quot; else &quot;CC&quot;&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P35"><text:span text:style-name="T30">Tipo Documento: </text:span><text:span text:style-name="T33"><text:placeholder text:placeholder-type="text">&lt;&quot;NIT&quot; if maintenance.propietary.tax_identifier.type==&quot;31&quot; else &quot;CC&quot;&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P35"><text:span text:style-name="T31">Documento:</text:span><text:span text:style-name="T34"> </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text">&lt;maintenance.propietary.tax_identifier.code&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P35"><text:span text:style-name="T30">Documento:</text:span><text:span text:style-name="T33"> </text:span><text:span text:style-name="T33"><text:placeholder text:placeholder-type="text">&lt;maintenance.propietary.tax_identifier.code&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P35"><text:span text:style-name="T31">Dirección:</text:span><text:span text:style-name="T34"> </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text">&lt;maintenance.propietary_address.street&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P35"><text:span text:style-name="T30">Dirección:</text:span><text:span text:style-name="T33"> </text:span><text:span text:style-name="T33"><text:placeholder text:placeholder-type="text">&lt;maintenance.propietary_address.street&gt;</text:placeholder></text:span></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
</table:table> </table:table>
<text:p text:style-name="P29"/> <text:p text:style-name="P28"/>
<text:p text:style-name="P30">INFORMACIÓN DEL DISPOSITIVO</text:p> <text:p text:style-name="P29">INFORMACIÓN DEL DISPOSITIVO</text:p>
<table:table table:name="Tabla2" table:style-name="Tabla2"> <table:table table:name="Tabla2" table:style-name="Tabla2">
<table:table-column table:style-name="Tabla2.A"/> <table:table-column table:style-name="Tabla2.A"/>
<table:table-column table:style-name="Tabla2.B"/> <table:table-column table:style-name="Tabla2.B"/>
<table:table-row table:style-name="Tabla2.1"> <table:table-row table:style-name="Tabla2.1">
<table:table-cell table:style-name="Tabla2.A1" office:value-type="string"> <table:table-cell table:style-name="Tabla2.A1" office:value-type="string">
<text:p text:style-name="P16"><text:span text:style-name="T31">Nombre del Dispositivo: </text:span><text:span text:style-name="T35"><text:placeholder text:placeholder-type="text">&lt;maintenance.equipment.product.name&gt;</text:placeholder></text:span><text:span text:style-name="T35"><text:s text:c="2"/></text:span></text:p> <text:p text:style-name="P15"><text:span text:style-name="T30">Nombre del Dispositivo: </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text">&lt;maintenance.equipment.product.name&gt;</text:placeholder></text:span><text:span text:style-name="T34"><text:s text:c="2"/></text:span></text:p>
<text:p text:style-name="P16"><text:span text:style-name="T31">Marca: </text:span><text:span text:style-name="T35"><text:placeholder text:placeholder-type="text">&lt;maintenance.equipment.mark_category.name&gt;</text:placeholder></text:span><text:span text:style-name="T35"><text:s text:c="11"/></text:span></text:p> <text:p text:style-name="P15"><text:span text:style-name="T30">Marca: </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text">&lt;maintenance.equipment.mark_category.name&gt;</text:placeholder></text:span><text:span text:style-name="T34"><text:s text:c="11"/></text:span></text:p>
<text:p text:style-name="P16"><text:span text:style-name="T33">Serial:</text:span><text:span text:style-name="T35"> </text:span><text:span text:style-name="T35"><text:placeholder text:placeholder-type="text">&lt;maintenance.equipment.serial&gt;</text:placeholder></text:span><text:span text:style-name="T35"><text:s text:c="2"/></text:span></text:p> <text:p text:style-name="P15"><text:span text:style-name="T32">Serial:</text:span><text:span text:style-name="T34"> </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text">&lt;maintenance.equipment.serial&gt;</text:placeholder></text:span><text:span text:style-name="T34"><text:s text:c="2"/></text:span></text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla2.A1" office:value-type="string"> <table:table-cell table:style-name="Tabla2.A1" office:value-type="string">
<text:p text:style-name="P16"><text:span text:style-name="T31">Modelo:</text:span><text:span text:style-name="T34"> </text:span><text:span text:style-name="T35"><text:placeholder text:placeholder-type="text">&lt;maintenance.equipment.model_category.name&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P15"><text:span text:style-name="T30">Modelo:</text:span><text:span text:style-name="T33"> </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text">&lt;maintenance.equipment.model_category.name&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P16"><text:span text:style-name="T31">Referencia: </text:span><text:span text:style-name="T35"><text:placeholder text:placeholder-type="text">&lt;maintenance.equipment.reference_category.name&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P15"><text:span text:style-name="T30">Referencia: </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text">&lt;maintenance.equipment.reference_category.name&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P16"><text:span text:style-name="T33">Registro Invima:</text:span><text:span text:style-name="T35"> </text:span><text:span text:style-name="T35"><text:placeholder text:placeholder-type="text">&lt;maintenance.equipment.health_register&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P15"><text:span text:style-name="T32">Registro Invima:</text:span><text:span text:style-name="T34"> </text:span><text:span text:style-name="T34"><text:placeholder text:placeholder-type="text">&lt;maintenance.equipment.health_register&gt;</text:placeholder></text:span></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
</table:table> </table:table>
<text:p text:style-name="P30"/> <text:p text:style-name="P29"/>
<text:p text:style-name="P20"/> <text:p text:style-name="P19"/>
<text:p text:style-name="P52"><text:placeholder text:placeholder-type="text">&lt;choose test=&quot;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P52"><text:placeholder text:placeholder-type="text">&lt;choose test=&quot;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P18"><text:soft-page-break/>Trabajo Realizado</text:p> <text:p text:style-name="P50"><text:soft-page-break/><text:placeholder text:placeholder-type="text">&lt;when test=&quot;maintenance.maintenance_type == &apos;preventive&apos;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P18"/> <text:p text:style-name="P17">Trabajo Realizado</text:p>
<text:p text:style-name="P17"/>
<table:table table:name="Tabla5" table:style-name="Tabla5"> <table:table table:name="Tabla5" table:style-name="Tabla5">
<table:table-column table:style-name="Tabla5.A"/> <table:table-column table:style-name="Tabla5.A"/>
<table:table-column table:style-name="Tabla5.B"/> <table:table-column table:style-name="Tabla5.B"/>
@ -1448,7 +1439,7 @@
<text:p text:style-name="P33">1. Verificación inicial de funcionamiento:</text:p> <text:p text:style-name="P33">1. Verificación inicial de funcionamiento:</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla5.B1" office:value-type="string"> <table:table-cell table:style-name="Tabla5.B1" office:value-type="string">
<text:p text:style-name="P28"><text:placeholder text:placeholder-type="text">&lt;&quot;SI&quot; if maintenance.initial_operation else &quot;NO&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P27"><text:placeholder text:placeholder-type="text">&lt;&quot;SI&quot; if maintenance.initial_operation else &quot;NO&quot;&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
<table:table-row> <table:table-row>
@ -1456,7 +1447,7 @@
<text:p text:style-name="P33">2. Revisión del Equipo:</text:p> <text:p text:style-name="P33">2. Revisión del Equipo:</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla5.B2" office:value-type="string"> <table:table-cell table:style-name="Tabla5.B2" office:value-type="string">
<text:p text:style-name="P28"><text:placeholder text:placeholder-type="text">&lt;&quot;SI&quot; if maintenance.check_equipment else &quot;NO&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P27"><text:placeholder text:placeholder-type="text">&lt;&quot;SI&quot; if maintenance.check_equipment else &quot;NO&quot;&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
<table:table-row> <table:table-row>
@ -1464,7 +1455,7 @@
<text:p text:style-name="P33">3. Revisión del sistema eléctrico:</text:p> <text:p text:style-name="P33">3. Revisión del sistema eléctrico:</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla5.B2" office:value-type="string"> <table:table-cell table:style-name="Tabla5.B2" office:value-type="string">
<text:p text:style-name="P28"><text:placeholder text:placeholder-type="text">&lt;&quot;SI&quot; if maintenance.check_electric_system else &quot;NO&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P27"><text:placeholder text:placeholder-type="text">&lt;&quot;SI&quot; if maintenance.check_electric_system else &quot;NO&quot;&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
<table:table-row> <table:table-row>
@ -1472,7 +1463,7 @@
<text:p text:style-name="P33">4. Limpieza interior y exterior:</text:p> <text:p text:style-name="P33">4. Limpieza interior y exterior:</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla5.B2" office:value-type="string"> <table:table-cell table:style-name="Tabla5.B2" office:value-type="string">
<text:p text:style-name="P28"><text:placeholder text:placeholder-type="text">&lt;&quot;SI&quot; if maintenance.clean_int_ext else &quot;NO&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P27"><text:placeholder text:placeholder-type="text">&lt;&quot;SI&quot; if maintenance.clean_int_ext else &quot;NO&quot;&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
<table:table-row> <table:table-row>
@ -1480,7 +1471,7 @@
<text:p text:style-name="P33">5. Limpieza de lentes y espejos:</text:p> <text:p text:style-name="P33">5. Limpieza de lentes y espejos:</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla5.B2" office:value-type="string"> <table:table-cell table:style-name="Tabla5.B2" office:value-type="string">
<text:p text:style-name="P28"><text:placeholder text:placeholder-type="text">&lt;&quot;SI&quot; if maintenance.clean_eyes else &quot;NO&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P27"><text:placeholder text:placeholder-type="text">&lt;&quot;SI&quot; if maintenance.clean_eyes else &quot;NO&quot;&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
<table:table-row> <table:table-row>
@ -1488,13 +1479,13 @@
<text:p text:style-name="P33">6. Verificar Calibración:</text:p> <text:p text:style-name="P33">6. Verificar Calibración:</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla5.B2" office:value-type="string"> <table:table-cell table:style-name="Tabla5.B2" office:value-type="string">
<text:p text:style-name="P28"><text:placeholder text:placeholder-type="text">&lt;&quot;SI&quot; if maintenance.check_calibration else &quot;NO&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P27"><text:placeholder text:placeholder-type="text">&lt;&quot;SI&quot; if maintenance.check_calibration else &quot;NO&quot;&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
</table:table> </table:table>
<text:p text:style-name="P46"/> <text:p text:style-name="P50"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p>
<text:p text:style-name="P49"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;maintenance.maintenance_type == &apos;corrective&apos;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P48"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;maintenance.maintenance_type == &apos;corrective&apos;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P47">Trabajo Realizado</text:p> <text:p text:style-name="P46">Trabajo Realizado</text:p>
<table:table table:name="Tabla1" table:style-name="Tabla1"> <table:table table:name="Tabla1" table:style-name="Tabla1">
<table:table-column table:style-name="Tabla1.A"/> <table:table-column table:style-name="Tabla1.A"/>
<table:table-column table:style-name="Tabla1.B"/> <table:table-column table:style-name="Tabla1.B"/>
@ -1526,6 +1517,12 @@
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla1.A2" office:value-type="string"> <table:table-cell table:style-name="Tabla1.A2" office:value-type="string">
<text:p text:style-name="P51"><text:placeholder text:placeholder-type="text">&lt;line.maintenance_activity.name if line.line_maintenance_activity else line.replacement.name&gt;</text:placeholder></text:p> <text:p text:style-name="P51"><text:placeholder text:placeholder-type="text">&lt;line.maintenance_activity.name if line.line_maintenance_activity else line.replacement.name&gt;</text:placeholder></text:p>
<text:p text:style-name="P21"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;line.description&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P21"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;description in line.description.split(&apos;\n&apos;)&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P22"><text:placeholder text:placeholder-type="text">&lt;description&gt;</text:placeholder></text:p>
<text:p text:style-name="P22"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
<text:p text:style-name="P22"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p>
<text:p text:style-name="P51"/>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
<table:table-row> <table:table-row>
@ -1536,26 +1533,26 @@
<table:covered-table-cell/> <table:covered-table-cell/>
</table:table-row> </table:table-row>
</table:table> </table:table>
<text:p text:style-name="P48"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p> <text:p text:style-name="P47"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p>
<text:p text:style-name="P45"><text:placeholder text:placeholder-type="text">&lt;/choose&gt;</text:placeholder></text:p> <text:p text:style-name="P45"><text:placeholder text:placeholder-type="text">&lt;/choose&gt;</text:placeholder></text:p>
<text:p text:style-name="P19">Observaciones</text:p> <text:p text:style-name="P18">Observaciones</text:p>
<text:p text:style-name="P32"><text:placeholder text:placeholder-type="text">&lt;maintenance.description_activity&gt;</text:placeholder></text:p> <text:p text:style-name="P32"><text:placeholder text:placeholder-type="text">&lt;maintenance.description_activity&gt;</text:placeholder></text:p>
<text:p text:style-name="P32"/> <text:p text:style-name="P32"/>
<text:p text:style-name="P32"/> <text:p text:style-name="P32"><text:soft-page-break/></text:p>
<text:p text:style-name="P19">Fecha del <text:span text:style-name="T42">p</text:span>róximo mantenimiento <text:span text:style-name="T36"><text:placeholder text:placeholder-type="text">&lt;str(maintenance.next_maintenance)[0:11]&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P18">Fecha del <text:span text:style-name="T41">p</text:span>róximo mantenimiento <text:span text:style-name="T35"><text:placeholder text:placeholder-type="text">&lt;str(maintenance.next_maintenance)[0:11]&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P19"/> <text:p text:style-name="P18"/>
<table:table table:name="Tabla10" table:style-name="Tabla10"> <table:table table:name="Tabla10" table:style-name="Tabla10">
<table:table-column table:style-name="Tabla10.A"/> <table:table-column table:style-name="Tabla10.A"/>
<table:table-row table:style-name="Tabla10.1"> <table:table-row table:style-name="Tabla10.1">
<table:table-cell table:style-name="Tabla10.A1" office:value-type="string"> <table:table-cell table:style-name="Tabla10.A1" office:value-type="string">
<text:p text:style-name="P31">ANTHONY STIVEN RODRIGUEZ FONSECA </text:p> <text:p text:style-name="P54"><text:placeholder text:placeholder-type="text">&lt;maintenance.technician_responsible&gt;</text:placeholder></text:p>
<text:p text:style-name="P31">INVIMA : RH-202208-01301</text:p> <text:p text:style-name="P54">INVIMA :<text:placeholder text:placeholder-type="text">&lt;maintenance.invima&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
</table:table> </table:table>
<text:p text:style-name="P21"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p> <text:p text:style-name="P20"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
<text:p text:style-name="P34"/> <text:p text:style-name="P34"/>
<text:p text:style-name="P21"><text:soft-page-break/></text:p> <text:p text:style-name="P20"/>
</office:text> </office:text>
</office:body> </office:body>
</office:document> </office:document>

View File

@ -1,10 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text"> <office:document xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:creation-date>2023-02-23T18:21:56.246355174</meta:creation-date><dc:date>2023-04-24T09:43:15.067795581</dc:date><meta:editing-duration>PT1H56M59S</meta:editing-duration><meta:editing-cycles>31</meta:editing-cycles><meta:generator>LibreOffice/7.4.6.2$Linux_X86_64 LibreOffice_project/40$Build-2</meta:generator><meta:document-statistic meta:table-count="4" meta:image-count="2" meta:object-count="0" meta:page-count="1" meta:paragraph-count="21" meta:word-count="122" meta:character-count="977" meta:non-whitespace-character-count="872"/></office:meta> <office:meta><meta:creation-date>2023-02-23T18:21:56.246355174</meta:creation-date><dc:date>2023-08-10T08:57:23.084235155</dc:date><meta:editing-duration>PT1H57M43S</meta:editing-duration><meta:editing-cycles>32</meta:editing-cycles><meta:generator>LibreOffice/7.4.7.2$Linux_X86_64 LibreOffice_project/40$Build-2</meta:generator><meta:document-statistic meta:table-count="3" meta:image-count="1" meta:object-count="0" meta:page-count="1" meta:paragraph-count="20" meta:word-count="101" meta:character-count="842" meta:non-whitespace-character-count="759"/></office:meta>
<office:settings> <office:settings>
<config:config-item-set config:name="ooo:view-settings"> <config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">11906</config:config-item> <config:config-item config:name="ViewAreaTop" config:type="long">9260</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item> <config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">30628</config:config-item> <config:config-item config:name="ViewAreaWidth" config:type="long">30628</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">14372</config:config-item> <config:config-item config:name="ViewAreaHeight" config:type="long">14372</config:config-item>
@ -13,19 +13,18 @@
<config:config-item-map-indexed config:name="Views"> <config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry> <config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item> <config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">20066</config:config-item> <config:config-item config:name="ViewLeft" config:type="long">7952</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">18579</config:config-item> <config:config-item config:name="ViewTop" config:type="long">10971</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item> <config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">11906</config:config-item> <config:config-item config:name="VisibleTop" config:type="long">9260</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">30626</config:config-item> <config:config-item config:name="VisibleRight" config:type="long">30626</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">26277</config:config-item> <config:config-item config:name="VisibleBottom" config:type="long">23631</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item> <config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns" config:type="short">1</config:config-item> <config:config-item config:name="ViewLayoutColumns" config:type="short">1</config:config-item>
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item> <config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">160</config:config-item> <config:config-item config:name="ZoomFactor" config:type="short">160</config:config-item>
<config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item> <config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item>
<config:config-item config:name="KeepRatio" config:type="boolean">false</config:config-item> <config:config-item config:name="KeepRatio" config:type="boolean">false</config:config-item>
<config:config-item config:name="HideWhitespace" config:type="boolean">false</config:config-item>
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item> <config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
</config:config-item-map-entry> </config:config-item-map-entry>
</config:config-item-map-indexed> </config:config-item-map-indexed>
@ -91,7 +90,7 @@
<config:config-item config:name="ChartAutoUpdate" config:type="boolean">true</config:config-item> <config:config-item config:name="ChartAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrinterSetup" config:type="base64Binary"/> <config:config-item config:name="PrinterSetup" config:type="base64Binary"/>
<config:config-item config:name="AddParaTableSpacingAtStart" config:type="boolean">true</config:config-item> <config:config-item config:name="AddParaTableSpacingAtStart" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">3467757</config:config-item> <config:config-item config:name="Rsid" config:type="int">3490778</config:config-item>
<config:config-item config:name="EmbeddedDatabaseName" config:type="string"/> <config:config-item config:name="EmbeddedDatabaseName" config:type="string"/>
<config:config-item config:name="FieldAutoUpdate" config:type="boolean">true</config:config-item> <config:config-item config:name="FieldAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="OutlineLevelYieldsNumbering" config:type="boolean">false</config:config-item> <config:config-item config:name="OutlineLevelYieldsNumbering" config:type="boolean">false</config:config-item>
@ -161,7 +160,7 @@
<office:styles> <office:styles>
<style:default-style style:family="graphic"> <style:default-style style:family="graphic">
<style:graphic-properties svg:stroke-color="#3465a4" draw:fill-color="#729fcf" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.1181in" draw:shadow-offset-y="0.1181in" draw:start-line-spacing-horizontal="0.1114in" draw:start-line-spacing-vertical="0.1114in" draw:end-line-spacing-horizontal="0.1114in" draw:end-line-spacing-vertical="0.1114in" style:flow-with-text="false"/> <style:graphic-properties svg:stroke-color="#3465a4" draw:fill-color="#729fcf" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.1181in" draw:shadow-offset-y="0.1181in" draw:start-line-spacing-horizontal="0.1114in" draw:start-line-spacing-vertical="0.1114in" draw:end-line-spacing-horizontal="0.1114in" draw:end-line-spacing-vertical="0.1114in" style:flow-with-text="false"/>
<style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" style:writing-mode="lr-tb" style:font-independent-line-spacing="false"> <style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" style:font-independent-line-spacing="false">
<style:tab-stops/> <style:tab-stops/>
</style:paragraph-properties> </style:paragraph-properties>
<style:text-properties style:use-window-font-color="true" loext:opacity="0%" loext:color-lum-mod="100%" loext:color-lum-off="0%" style:font-name="DejaVu Serif" fo:font-size="12pt" fo:language="es" fo:country="CO" style:letter-kerning="true" style:font-name-asian="DejaVu Sans1" style:font-size-asian="10.5pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="DejaVu Sans1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN"/> <style:text-properties style:use-window-font-color="true" loext:opacity="0%" loext:color-lum-mod="100%" loext:color-lum-off="0%" style:font-name="DejaVu Serif" fo:font-size="12pt" fo:language="es" fo:country="CO" style:letter-kerning="true" style:font-name-asian="DejaVu Sans1" style:font-size-asian="10.5pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="DejaVu Sans1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN"/>
@ -318,16 +317,16 @@
<style:style style:name="Table2.A1" style:family="table-cell"> <style:style style:name="Table2.A1" style:family="table-cell">
<style:table-cell-properties fo:padding="0.0382in" fo:border="none"/> <style:table-cell-properties fo:padding="0.0382in" fo:border="none"/>
</style:style> </style:style>
<style:style style:name="Tabla4" style:family="table"> <style:style style:name="Table2" style:family="table">
<style:table-properties table:align="margins"/> <style:table-properties style:width="6.925in" table:align="margins"/>
</style:style> </style:style>
<style:style style:name="Tabla4.A" style:family="table-column"> <style:style style:name="Table2.A" style:family="table-column">
<style:table-column-properties style:rel-column-width="32767*"/> <style:table-column-properties style:column-width="3.4625in" style:rel-column-width="32767*"/>
</style:style> </style:style>
<style:style style:name="Tabla4.B" style:family="table-column"> <style:style style:name="Table2.B" style:family="table-column">
<style:table-column-properties style:rel-column-width="32768*"/> <style:table-column-properties style:column-width="3.4625in" style:rel-column-width="32768*"/>
</style:style> </style:style>
<style:style style:name="Tabla4.A1" style:family="table-cell"> <style:style style:name="Table2.A1" style:family="table-cell">
<style:table-cell-properties fo:padding="0.0382in" fo:border="none"/> <style:table-cell-properties fo:padding="0.0382in" fo:border="none"/>
</style:style> </style:style>
<style:style style:name="Tabla1" style:family="table"> <style:style style:name="Tabla1" style:family="table">
@ -351,7 +350,10 @@
<style:table-column-properties style:column-width="1.7313in" style:rel-column-width="16383*"/> <style:table-column-properties style:column-width="1.7313in" style:rel-column-width="16383*"/>
</style:style> </style:style>
<style:style style:name="Table1.B" style:family="table-column"> <style:style style:name="Table1.B" style:family="table-column">
<style:table-column-properties style:column-width="3.4625in" style:rel-column-width="32766*"/> <style:table-column-properties style:column-width="3.4625in" style:rel-column-width="32767*"/>
</style:style>
<style:style style:name="Table1.C" style:family="table-column">
<style:table-column-properties style:column-width="1.7313in" style:rel-column-width="16385*"/>
</style:style> </style:style>
<style:style style:name="Table1.1" style:family="table-row"> <style:style style:name="Table1.1" style:family="table-row">
<style:table-row-properties fo:background-color="transparent"> <style:table-row-properties fo:background-color="transparent">
@ -369,18 +371,6 @@
<style:style style:name="Table1.C2" style:family="table-cell"> <style:style style:name="Table1.C2" style:family="table-cell">
<style:table-cell-properties fo:padding="0.0382in" fo:border-left="none" fo:border-right="0.05pt solid #000000" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"/> <style:table-cell-properties fo:padding="0.0382in" fo:border-left="none" fo:border-right="0.05pt solid #000000" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"/>
</style:style> </style:style>
<style:style style:name="Table2" style:family="table">
<style:table-properties style:width="6.925in" table:align="margins"/>
</style:style>
<style:style style:name="Table2.A" style:family="table-column">
<style:table-column-properties style:column-width="3.4625in" style:rel-column-width="32767*"/>
</style:style>
<style:style style:name="Table2.B" style:family="table-column">
<style:table-column-properties style:column-width="3.4625in" style:rel-column-width="32768*"/>
</style:style>
<style:style style:name="Table2.A1" style:family="table-cell">
<style:table-cell-properties fo:padding="0.0382in" fo:border="none"/>
</style:style>
<style:style style:name="P1" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P1" style:family="paragraph" style:parent-style-name="Header">
<style:text-properties officeooo:paragraph-rsid="002364de"/> <style:text-properties officeooo:paragraph-rsid="002364de"/>
</style:style> </style:style>
@ -412,265 +402,270 @@
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/> <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties fo:font-variant="normal" fo:text-transform="none" fo:color="#000000" loext:opacity="100%" style:text-line-through-style="none" style:text-line-through-type="none" style:text-position="0% 100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="002364de" style:font-name-asian="Calibri" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Calibri" style:font-size-complex="7pt" style:font-weight-complex="normal"/> <style:text-properties fo:font-variant="normal" fo:text-transform="none" fo:color="#000000" loext:opacity="100%" style:text-line-through-style="none" style:text-line-through-type="none" style:text-position="0% 100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="002364de" style:font-name-asian="Calibri" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Calibri" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="P10" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P10" style:family="paragraph" style:parent-style-name="Normal_20__28_Web_29_">
<loext:graphic-properties draw:fill="solid" draw:fill-color="#ffffff"/>
<style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0874in" style:contextual-spacing="false" fo:line-height="100%" fo:text-align="center" style:justify-single-word="false" fo:background-color="#ffffff"/>
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:paragraph-rsid="0034e9ed" style:font-size-asian="8pt" style:font-name-complex="Segoe UI" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P11" style:family="paragraph" style:parent-style-name="Normal_20__28_Web_29_">
<loext:graphic-properties draw:fill="solid" draw:fill-color="#ffffff"/>
<style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0874in" style:contextual-spacing="false" fo:line-height="100%" fo:text-align="center" style:justify-single-word="false" fo:background-color="#ffffff"/>
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-style="italic" officeooo:paragraph-rsid="0034e9ed" style:font-size-asian="9pt" style:font-style-asian="italic" style:font-name-complex="Segoe UI" style:font-size-complex="9pt" style:font-style-complex="italic"/>
</style:style>
<style:style style:name="P12" style:family="paragraph" style:parent-style-name="Normal_20__28_Web_29_">
<loext:graphic-properties draw:fill="solid" draw:fill-color="#ffffff"/>
<style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0083in" style:contextual-spacing="false" fo:line-height="100%" fo:text-align="center" style:justify-single-word="false" fo:background-color="#ffffff"/>
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-style="italic" officeooo:paragraph-rsid="0034e9ed" style:font-size-asian="9pt" style:font-style-asian="italic" style:font-name-complex="Segoe UI" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P13" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/> <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="12pt" officeooo:paragraph-rsid="001f7ecf" style:font-size-asian="12pt" style:font-size-complex="12pt"/> <style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="12pt" officeooo:paragraph-rsid="001f7ecf" style:font-size-asian="12pt" style:font-size-complex="12pt"/>
</style:style> </style:style>
<style:style style:name="P11" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P14" style:family="paragraph" style:parent-style-name="Standard">
<loext:graphic-properties draw:fill="none"/> <loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="12pt" officeooo:paragraph-rsid="001f7ecf" style:font-size-asian="12pt" style:font-size-complex="12pt"/> <style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="12pt" officeooo:paragraph-rsid="001f7ecf" style:font-size-asian="12pt" style:font-size-complex="12pt"/>
</style:style> </style:style>
<style:style style:name="P12" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P15" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/> <loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="end" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="end" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="12pt" fo:font-weight="bold" officeooo:rsid="00185504" officeooo:paragraph-rsid="00185504" style:font-size-asian="12pt" style:font-weight-asian="bold" style:font-size-complex="12pt" style:font-weight-complex="bold"/> <style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="12pt" fo:font-weight="bold" officeooo:rsid="00185504" officeooo:paragraph-rsid="00185504" style:font-size-asian="12pt" style:font-weight-asian="bold" style:font-size-complex="12pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P13" style:family="paragraph" style:parent-style-name="Footer"> <style:style style:name="P16" style:family="paragraph" style:parent-style-name="Footer">
<loext:graphic-properties draw:fill="none"/> <loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="12pt" fo:font-weight="normal" officeooo:paragraph-rsid="001f7ecf" style:font-size-asian="12pt" style:font-weight-asian="normal" style:font-size-complex="12pt" style:font-weight-complex="normal"/> <style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="12pt" fo:font-weight="normal" officeooo:paragraph-rsid="001f7ecf" style:font-size-asian="12pt" style:font-weight-asian="normal" style:font-size-complex="12pt" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="P14" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P17" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/> <loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="00185504" officeooo:paragraph-rsid="0018eb87" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/> <style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="00185504" officeooo:paragraph-rsid="0018eb87" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P18" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/> <loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="00185504" officeooo:paragraph-rsid="001d294c" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/> <style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="00185504" officeooo:paragraph-rsid="001d294c" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P16" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P19" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/> <loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="001d294c" officeooo:paragraph-rsid="001d294c" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/> <style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="001d294c" officeooo:paragraph-rsid="001d294c" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P17" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P20" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/> <loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="0032b08b" officeooo:paragraph-rsid="0032b08b" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/> <style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="0032b08b" officeooo:paragraph-rsid="0032b08b" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P18" style:family="paragraph" style:parent-style-name="Table_20_Contents"> <style:style style:name="P21" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="10pt" officeooo:paragraph-rsid="0018eb87" style:font-size-asian="10pt" style:font-size-complex="10pt"/> <style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="10pt" officeooo:paragraph-rsid="0018eb87" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style> </style:style>
<style:style style:name="P19" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P22" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/> <loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="10pt" fo:font-weight="normal" officeooo:rsid="00185504" officeooo:paragraph-rsid="00185504" style:font-size-asian="10pt" style:font-weight-asian="normal" style:font-size-complex="10pt" style:font-weight-complex="normal"/> <style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="10pt" fo:font-weight="normal" officeooo:rsid="00185504" officeooo:paragraph-rsid="00185504" style:font-size-asian="10pt" style:font-weight-asian="normal" style:font-size-complex="10pt" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="P20" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P23" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/> <loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="10pt" fo:font-weight="normal" officeooo:rsid="00185504" officeooo:paragraph-rsid="001d294c" style:font-size-asian="10pt" style:font-weight-asian="normal" style:font-size-complex="10pt" style:font-weight-complex="normal"/> <style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="10pt" fo:font-weight="normal" officeooo:rsid="00185504" officeooo:paragraph-rsid="001d294c" style:font-size-asian="10pt" style:font-weight-asian="normal" style:font-size-complex="10pt" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="P21" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P24" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/> <loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="10pt" fo:font-weight="normal" officeooo:rsid="00185504" officeooo:paragraph-rsid="0033306b" style:font-size-asian="10pt" style:font-weight-asian="normal" style:font-size-complex="10pt" style:font-weight-complex="normal"/> <style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="10pt" fo:font-weight="normal" officeooo:rsid="00185504" officeooo:paragraph-rsid="0033306b" style:font-size-asian="10pt" style:font-weight-asian="normal" style:font-size-complex="10pt" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="P22" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P25" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/> <loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="end" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="end" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese" fo:font-weight="bold" officeooo:paragraph-rsid="00185504" style:font-weight-asian="bold" style:font-weight-complex="bold"/> <style:text-properties style:font-name="Droid Sans Japanese" fo:font-weight="bold" officeooo:paragraph-rsid="00185504" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P23" style:family="paragraph" style:parent-style-name="Standard">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-weight="normal" officeooo:paragraph-rsid="0015f698" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P24" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-weight="normal" officeooo:paragraph-rsid="0015f698" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P25" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-weight="normal" officeooo:rsid="002b856d" officeooo:paragraph-rsid="00185504" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P26" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P26" style:family="paragraph" style:parent-style-name="Standard">
<loext:graphic-properties draw:fill="none"/> <loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-weight="normal" officeooo:paragraph-rsid="001f7ecf" style:font-weight-asian="normal" style:font-weight-complex="normal"/> <style:text-properties style:font-name="Liberation Sans" fo:font-weight="normal" officeooo:paragraph-rsid="0015f698" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="P27" style:family="paragraph" style:parent-style-name="Table_20_Contents"> <style:style style:name="P27" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/> <loext:graphic-properties draw:fill="none"/>
<style:text-properties style:font-name="Liberation Sans"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-weight="normal" officeooo:paragraph-rsid="0015f698" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="P28" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P28" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-weight="normal" officeooo:rsid="002b856d" officeooo:paragraph-rsid="00185504" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P29" style:family="paragraph" style:parent-style-name="Standard">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-weight="normal" officeooo:paragraph-rsid="001f7ecf" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P30" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans"/>
</style:style>
<style:style style:name="P31" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/> <loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="12pt" fo:font-weight="bold" officeooo:rsid="00185504" officeooo:paragraph-rsid="00185504" style:font-size-asian="12pt" style:font-weight-asian="bold" style:font-size-complex="12pt" style:font-weight-complex="bold"/> <style:text-properties style:font-name="Liberation Sans" fo:font-size="12pt" fo:font-weight="bold" officeooo:rsid="00185504" officeooo:paragraph-rsid="00185504" style:font-size-asian="12pt" style:font-weight-asian="bold" style:font-size-complex="12pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P29" style:family="paragraph" style:parent-style-name="Footer"> <style:style style:name="P32" style:family="paragraph" style:parent-style-name="Footer">
<loext:graphic-properties draw:fill="none"/> <loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="12pt" fo:font-weight="normal" officeooo:paragraph-rsid="001f7ecf" style:font-size-asian="12pt" style:font-weight-asian="normal" style:font-size-complex="12pt" style:font-weight-complex="normal"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="12pt" fo:font-weight="normal" officeooo:paragraph-rsid="001f7ecf" style:font-size-asian="12pt" style:font-weight-asian="normal" style:font-size-complex="12pt" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="P30" style:family="paragraph" style:parent-style-name="Header">
<style:text-properties officeooo:paragraph-rsid="002364de"/>
</style:style>
<style:style style:name="P31" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties fo:font-variant="normal" fo:text-transform="none" fo:color="#000000" loext:opacity="100%" style:text-line-through-style="none" style:text-line-through-type="none" style:text-position="0% 100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="002364de" style:font-name-asian="Calibri" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Calibri" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P32" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties officeooo:paragraph-rsid="0034e9ed"/>
</style:style>
<style:style style:name="P33" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P33" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/> <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="12pt" officeooo:paragraph-rsid="001f7ecf" style:font-size-asian="12pt" style:font-size-complex="12pt"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="12pt" officeooo:paragraph-rsid="001f7ecf" style:font-size-asian="12pt" style:font-size-complex="12pt"/>
</style:style> </style:style>
<style:style style:name="P34" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P34" style:family="paragraph" style:parent-style-name="Standard">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="end" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="12pt" fo:font-weight="bold" officeooo:rsid="00185504" officeooo:paragraph-rsid="00185504" style:font-size-asian="12pt" style:font-weight-asian="bold" style:font-size-complex="12pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P35" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="end" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-weight="bold" officeooo:paragraph-rsid="00185504" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P36" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="00185504" officeooo:paragraph-rsid="001d294c" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P37" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="001d294c" officeooo:paragraph-rsid="001d294c" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P38" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="0032b08b" officeooo:paragraph-rsid="0032b08b" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P39" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="normal" officeooo:rsid="00185504" officeooo:paragraph-rsid="0033306b" style:font-size-asian="10pt" style:font-weight-asian="normal" style:font-size-complex="10pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P40" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="normal" officeooo:rsid="00185504" officeooo:paragraph-rsid="001d294c" style:font-size-asian="10pt" style:font-weight-asian="normal" style:font-size-complex="10pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P41" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="00185504" officeooo:paragraph-rsid="0018eb87" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P42" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="00185504" officeooo:paragraph-rsid="00185504" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P43" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="normal" officeooo:rsid="00185504" officeooo:paragraph-rsid="00185504" style:font-size-asian="9pt" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P44" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="normal" officeooo:rsid="00185504" officeooo:paragraph-rsid="0034e9ed" style:font-size-asian="9pt" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P45" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" officeooo:paragraph-rsid="0034e9ed" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P46" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties fo:color="#ffffff" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="001d294c" officeooo:paragraph-rsid="0034e9ed" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P47" style:family="paragraph" style:parent-style-name="Normal_20__28_Web_29_">
<loext:graphic-properties draw:fill="solid" draw:fill-color="#ffffff"/>
<style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0874in" style:contextual-spacing="false" fo:line-height="100%" fo:text-align="center" style:justify-single-word="false" fo:background-color="#ffffff"/>
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:paragraph-rsid="0034e9ed" style:font-size-asian="8pt" style:font-name-complex="Segoe UI" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P48" style:family="paragraph" style:parent-style-name="Normal_20__28_Web_29_">
<loext:graphic-properties draw:fill="solid" draw:fill-color="#ffffff"/>
<style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0874in" style:contextual-spacing="false" fo:line-height="100%" fo:text-align="center" style:justify-single-word="false" fo:background-color="#ffffff"/>
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-style="italic" officeooo:paragraph-rsid="0034e9ed" style:font-size-asian="9pt" style:font-style-asian="italic" style:font-name-complex="Segoe UI" style:font-size-complex="9pt" style:font-style-complex="italic"/>
</style:style>
<style:style style:name="P49" style:family="paragraph" style:parent-style-name="Normal_20__28_Web_29_">
<loext:graphic-properties draw:fill="solid" draw:fill-color="#ffffff"/>
<style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0083in" style:contextual-spacing="false" fo:line-height="100%" fo:text-align="center" style:justify-single-word="false" fo:background-color="#ffffff"/>
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-style="italic" officeooo:paragraph-rsid="0034e9ed" style:font-size-asian="9pt" style:font-style-asian="italic" style:font-name-complex="Segoe UI" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P50" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties officeooo:paragraph-rsid="002364de"/>
</style:style>
<style:style style:name="P51" style:family="paragraph" style:parent-style-name="Standard">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-weight="normal" officeooo:paragraph-rsid="001f7ecf" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P52" style:family="paragraph" style:parent-style-name="Standard">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-weight="normal" officeooo:paragraph-rsid="0015f698" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P53" style:family="paragraph" style:parent-style-name="Standard">
<loext:graphic-properties draw:fill="none"/> <loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="12pt" officeooo:paragraph-rsid="001f7ecf" style:font-size-asian="12pt" style:font-size-complex="12pt"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="12pt" officeooo:paragraph-rsid="001f7ecf" style:font-size-asian="12pt" style:font-size-complex="12pt"/>
</style:style> </style:style>
<style:style style:name="P54" style:family="paragraph" style:parent-style-name="Table_20_Contents"> <style:style style:name="P35" style:family="paragraph" style:parent-style-name="Header">
<style:text-properties officeooo:paragraph-rsid="002364de"/> <loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="end" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="12pt" fo:font-weight="bold" officeooo:rsid="00185504" officeooo:paragraph-rsid="00185504" style:font-size-asian="12pt" style:font-weight-asian="bold" style:font-size-complex="12pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P55" style:family="paragraph" style:parent-style-name="Table_20_Contents"> <style:style style:name="P36" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="end" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-weight="bold" officeooo:paragraph-rsid="00185504" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P37" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="00185504" officeooo:paragraph-rsid="001d294c" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P38" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="001d294c" officeooo:paragraph-rsid="001d294c" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P39" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="0032b08b" officeooo:paragraph-rsid="0032b08b" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P40" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="normal" officeooo:rsid="00185504" officeooo:paragraph-rsid="0033306b" style:font-size-asian="10pt" style:font-weight-asian="normal" style:font-size-complex="10pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P41" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="10pt" fo:font-weight="normal" officeooo:rsid="00185504" officeooo:paragraph-rsid="001d294c" style:font-size-asian="10pt" style:font-weight-asian="normal" style:font-size-complex="10pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P42" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="00185504" officeooo:paragraph-rsid="0018eb87" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P43" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="00185504" officeooo:paragraph-rsid="00185504" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P44" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="normal" officeooo:rsid="00185504" officeooo:paragraph-rsid="00185504" style:font-size-asian="9pt" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P45" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="normal" officeooo:rsid="00185504" officeooo:paragraph-rsid="0034e9ed" style:font-size-asian="9pt" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P46" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" officeooo:paragraph-rsid="0034e9ed" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P47" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" officeooo:paragraph-rsid="0018eb87" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style> </style:style>
<style:style style:name="P56" style:family="paragraph" style:parent-style-name="Table_20_Contents"> <style:style style:name="P48" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P49" style:family="paragraph" style:parent-style-name="Standard">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-weight="normal" officeooo:paragraph-rsid="001f7ecf" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P50" style:family="paragraph" style:parent-style-name="Standard">
<loext:graphic-properties draw:fill="none"/> <loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-weight="normal" officeooo:paragraph-rsid="0015f698" style:font-weight-asian="normal" style:font-weight-complex="normal"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-weight="normal" officeooo:paragraph-rsid="0015f698" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="P57" style:family="paragraph" style:parent-style-name="Table_20_Contents"> <style:style style:name="P51" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/> <loext:graphic-properties draw:fill="none"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" officeooo:paragraph-rsid="0018eb87" style:font-size-asian="9pt" style:font-size-complex="9pt"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-weight="normal" officeooo:paragraph-rsid="0015f698" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="P58" style:family="paragraph" style:parent-style-name="Table_20_Contents"> <style:style style:name="P52" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" style:font-size-asian="9pt" style:font-size-complex="9pt"/> <style:text-properties style:font-name="Droid Sans Japanese1"/>
</style:style>
<style:style style:name="P53" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties officeooo:paragraph-rsid="0034e9ed"/>
</style:style>
<style:style style:name="P54" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties fo:color="#ffffff" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="001d294c" officeooo:paragraph-rsid="0034e9ed" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P55" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="normal" officeooo:rsid="00185504" officeooo:paragraph-rsid="0034e9ed" style:font-size-asian="9pt" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P56" style:family="paragraph" style:parent-style-name="Header">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false" fo:background-color="transparent"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="00185504" officeooo:paragraph-rsid="003543da" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P57" style:family="paragraph" style:parent-style-name="Normal_20__28_Web_29_">
<loext:graphic-properties draw:fill="solid" draw:fill-color="#ffffff"/>
<style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0083in" style:contextual-spacing="false" fo:line-height="100%" fo:text-align="center" style:justify-single-word="false" fo:background-color="#ffffff"/>
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:font-style="italic" fo:font-weight="bold" officeooo:paragraph-rsid="0034e9ed" style:font-size-asian="9pt" style:font-style-asian="italic" style:font-weight-asian="bold" style:font-name-complex="Segoe UI" style:font-size-complex="9pt"/>
</style:style> </style:style>
<style:style style:name="T1" style:family="text"> <style:style style:name="T1" style:family="text">
<style:text-properties style:font-name="sans-serif"/> <style:text-properties style:font-name="sans-serif"/>
</style:style> </style:style>
<style:style style:name="T2" style:family="text"> <style:style style:name="T2" style:family="text">
<style:text-properties fo:font-size="12pt" officeooo:rsid="00185504" style:font-size-asian="12pt" style:font-size-complex="12pt"/> <style:text-properties style:font-name="sans-serif"/>
</style:style> </style:style>
<style:style style:name="T3" style:family="text"> <style:style style:name="T3" style:family="text">
<style:text-properties officeooo:rsid="0018eb87"/> <style:text-properties fo:font-size="12pt" officeooo:rsid="00185504" style:font-size-asian="12pt" style:font-size-complex="12pt"/>
</style:style> </style:style>
<style:style style:name="T4" style:family="text"> <style:style style:name="T4" style:family="text">
<style:text-properties fo:font-weight="bold" style:font-weight-asian="bold"/> <style:text-properties officeooo:rsid="0018eb87"/>
</style:style> </style:style>
<style:style style:name="T5" style:family="text"> <style:style style:name="T5" style:family="text">
<style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/> <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold"/>
</style:style> </style:style>
<style:style style:name="T6" style:family="text"> <style:style style:name="T6" style:family="text">
<style:text-properties fo:font-weight="bold" officeooo:rsid="0018eb87" style:font-weight-asian="bold" style:font-weight-complex="bold"/> <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="T7" style:family="text"> <style:style style:name="T7" style:family="text">
<style:text-properties fo:font-weight="normal" style:font-weight-asian="normal" style:font-weight-complex="normal"/> <style:text-properties fo:font-weight="bold" officeooo:rsid="0018eb87" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="T8" style:family="text"> <style:style style:name="T8" style:family="text">
<style:text-properties fo:font-weight="normal" officeooo:rsid="00185504" style:font-weight-asian="normal" style:font-weight-complex="normal"/> <style:text-properties fo:font-weight="normal" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="T9" style:family="text"> <style:style style:name="T9" style:family="text">
<style:text-properties fo:font-variant="normal" fo:text-transform="none" fo:color="#000000" loext:opacity="100%" style:text-line-through-style="none" style:text-line-through-type="none" style:text-position="0% 100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" style:font-name-asian="Calibri" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Calibri" style:font-size-complex="7pt" style:font-weight-complex="normal"/> <style:text-properties fo:font-weight="normal" officeooo:rsid="00185504" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="T10" style:family="text"> <style:style style:name="T10" style:family="text">
<style:text-properties style:font-name="sans-serif"/> <style:text-properties fo:font-variant="normal" fo:text-transform="none" fo:color="#000000" loext:opacity="100%" style:text-line-through-style="none" style:text-line-through-type="none" style:text-position="0% 100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" style:font-name-asian="Calibri" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Calibri" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="T11" style:family="text">
<style:text-properties officeooo:rsid="003543da"/>
</style:style> </style:style>
<style:style style:name="fr1" style:family="graphic" style:parent-style-name="Graphics"> <style:style style:name="fr1" style:family="graphic" style:parent-style-name="Graphics">
<style:graphic-properties style:vertical-pos="from-top" style:horizontal-pos="from-left" style:horizontal-rel="paragraph" style:mirror="none" fo:clip="rect(0in, 0in, 0in, 0in)" draw:luminance="0%" draw:contrast="0%" draw:red="0%" draw:green="0%" draw:blue="0%" draw:gamma="100%" draw:color-inversion="false" draw:image-opacity="100%" draw:color-mode="standard"/> <style:graphic-properties style:vertical-pos="from-top" style:horizontal-pos="from-left" style:horizontal-rel="paragraph" style:mirror="none" fo:clip="rect(0in, 0in, 0in, 0in)" draw:luminance="0%" draw:contrast="0%" draw:red="0%" draw:green="0%" draw:blue="0%" draw:gamma="100%" draw:color-inversion="false" draw:image-opacity="100%" draw:color-mode="standard"/>
@ -683,7 +678,7 @@
<style:header-footer-properties fo:min-height="0in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-bottom="0.1965in" fo:background-color="transparent" draw:fill="none" draw:fill-color="#729fcf"/> <style:header-footer-properties fo:min-height="0in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-bottom="0.1965in" fo:background-color="transparent" draw:fill="none" draw:fill-color="#729fcf"/>
</style:header-style> </style:header-style>
<style:footer-style> <style:footer-style>
<style:header-footer-properties fo:min-height="0in" fo:margin-top="0.1965in" fo:background-color="transparent" draw:fill="none"/> <style:header-footer-properties fo:min-height="0in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0.1965in" fo:background-color="transparent" draw:fill="none" draw:fill-color="#729fcf"/>
</style:footer-style> </style:footer-style>
</style:page-layout> </style:page-layout>
<style:style style:name="dp1" style:family="drawing-page"> <style:style style:name="dp1" style:family="drawing-page">
@ -1374,62 +1369,62 @@
<text:sequence-decl text:display-outline-level="0" text:name="Drawing"/> <text:sequence-decl text:display-outline-level="0" text:name="Drawing"/>
<text:sequence-decl text:display-outline-level="0" text:name="Figure"/> <text:sequence-decl text:display-outline-level="0" text:name="Figure"/>
</text:sequence-decls> </text:sequence-decls>
<text:p text:style-name="P51"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;line in records&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P49"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;line in records&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P53"><text:placeholder text:placeholder-type="text" text:description="if test=&quot;line.statament.company.header&quot;">&lt;if test=&quot;line.statement.company.header&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P34"><text:placeholder text:placeholder-type="text" text:description="if test=&quot;line.statament.company.header&quot;">&lt;if test=&quot;line.statement.company.header&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P33"><text:placeholder text:placeholder-type="text" text:description="for each=&quot;line in move.company.header.split(&apos;\n&apos;)&quot;">&lt;for each=&quot;line in move.company.header.split(&apos;\n&apos;)&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P33"><text:placeholder text:placeholder-type="text" text:description="for each=&quot;line in move.company.header.split(&apos;\n&apos;)&quot;">&lt;for each=&quot;line in move.company.header.split(&apos;\n&apos;)&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P33"><text:placeholder text:placeholder-type="text">&lt;line&gt;</text:placeholder></text:p> <text:p text:style-name="P33"><text:placeholder text:placeholder-type="text">&lt;line&gt;</text:placeholder></text:p>
<text:p text:style-name="P33"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p> <text:p text:style-name="P33"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
<text:p text:style-name="P29"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p> <text:p text:style-name="P32"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p>
<text:p text:style-name="P52"/> <text:p text:style-name="P50"/>
<text:p text:style-name="P35"/> <text:p text:style-name="P36"/>
<text:p text:style-name="P34"/> <text:p text:style-name="P56"><text:span text:style-name="T11">Número</text:span>:<text:span text:style-name="T8"> </text:span><text:span text:style-name="T8"><text:placeholder text:placeholder-type="text" text:description="line.id">&lt;line.id&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P41"><text:s/>Fecha:<text:span text:style-name="T7"> </text:span><text:span text:style-name="T7"><text:placeholder text:placeholder-type="text" text:description="line.date">&lt;line.date&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P42">Fecha:<text:span text:style-name="T8"> </text:span><text:span text:style-name="T8"><text:placeholder text:placeholder-type="text" text:description="line.date">&lt;line.date&gt;</text:placeholder></text:span></text:p>
<table:table table:name="Tabla1" table:style-name="Tabla1"> <table:table table:name="Tabla1" table:style-name="Tabla1">
<table:table-column table:style-name="Tabla1.A"/> <table:table-column table:style-name="Tabla1.A"/>
<table:table-column table:style-name="Tabla1.B"/> <table:table-column table:style-name="Tabla1.B"/>
<table:table-row> <table:table-row>
<table:table-cell table:style-name="Tabla1.A1" office:value-type="string"> <table:table-cell table:style-name="Tabla1.A1" office:value-type="string">
<text:p text:style-name="P41">Recibido de: <text:span text:style-name="T7"><text:placeholder text:placeholder-type="text" text:description="line.party.name">&lt;line.party.name&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P42">Recibido de: <text:span text:style-name="T8"><text:placeholder text:placeholder-type="text" text:description="line.party.name">&lt;line.party.name&gt;</text:placeholder></text:span></text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla1.A1" office:value-type="string"> <table:table-cell table:style-name="Tabla1.A1" office:value-type="string">
<text:p text:style-name="P57"><text:span text:style-name="T6">Nit / CC:</text:span><text:span text:style-name="T3"> </text:span><text:placeholder text:placeholder-type="text" text:description="line.party.tax_identifier.code">&lt;line.party.tax_identifier.code&gt;</text:placeholder></text:p> <text:p text:style-name="P47"><text:span text:style-name="T7">Nit / CC:</text:span><text:span text:style-name="T4"> </text:span><text:placeholder text:placeholder-type="text" text:description="line.party.tax_identifier.code">&lt;line.party.tax_identifier.code&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
</table:table> </table:table>
<text:p text:style-name="P41"><text:s/>Forma de Pago: <text:span text:style-name="T7"><text:placeholder text:placeholder-type="text" text:description="line.statement.name">&lt;line.statement.name&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P42"><text:s/>Forma de Pago: <text:span text:style-name="T8"><text:placeholder text:placeholder-type="text" text:description="line.statement.name">&lt;line.statement.name&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P44"/>
<text:p text:style-name="P43"/> <text:p text:style-name="P43"/>
<text:p text:style-name="P42"/>
<table:table table:name="Table1" table:style-name="Table1"> <table:table table:name="Table1" table:style-name="Table1">
<table:table-column table:style-name="Table1.A"/> <table:table-column table:style-name="Table1.A"/>
<table:table-column table:style-name="Table1.B"/> <table:table-column table:style-name="Table1.B"/>
<table:table-column table:style-name="Table1.A"/> <table:table-column table:style-name="Table1.C"/>
<table:table-row table:style-name="Table1.1"> <table:table-row table:style-name="Table1.1">
<table:table-cell table:style-name="Table1.A1" office:value-type="string"> <table:table-cell table:style-name="Table1.A1" office:value-type="string">
<text:p text:style-name="P46">Descripción</text:p> <text:p text:style-name="P54">Descripción</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Table1.A1" office:value-type="string"> <table:table-cell table:style-name="Table1.A1" office:value-type="string">
<text:p text:style-name="P58"/> <text:p text:style-name="P48"/>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Table1.A1" office:value-type="string"> <table:table-cell table:style-name="Table1.A1" office:value-type="string">
<text:p text:style-name="P46">Valor</text:p> <text:p text:style-name="P54">Valor</text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
<table:table-row table:style-name="Table1.1"> <table:table-row table:style-name="Table1.1">
<table:table-cell table:style-name="Table1.A2" table:number-columns-spanned="2" office:value-type="string"> <table:table-cell table:style-name="Table1.A2" table:number-columns-spanned="2" office:value-type="string">
<text:p text:style-name="P45"><text:span text:style-name="T8"><text:placeholder text:placeholder-type="text" text:description="line.description">&lt;line.description&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P55"><text:placeholder text:placeholder-type="text" text:description="line.description">&lt;line.description&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
<table:covered-table-cell/> <table:covered-table-cell/>
<table:table-cell table:style-name="Table1.C2" office:value-type="string"> <table:table-cell table:style-name="Table1.C2" office:value-type="string">
<text:p text:style-name="P44"><text:placeholder text:placeholder-type="text" text:description="format_currency(line.amount, line.party.lang, line.currency)">&lt;format_currency(line.amount, line.party.lang, line.currency)&gt;</text:placeholder></text:p> <text:p text:style-name="P45"><text:placeholder text:placeholder-type="text" text:description="format_currency(line.amount, line.party.lang, line.currency)">&lt;format_currency(line.amount, line.party.lang, line.currency)&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
</table:table> </table:table>
<text:p text:style-name="P42"/> <text:p text:style-name="P43"/>
<text:p text:style-name="P42"/> <text:p text:style-name="P43"/>
<text:p text:style-name="P42"/> <text:p text:style-name="P43"/>
<text:p text:style-name="P48">Somos <text:span text:style-name="T5">SMART VISION</text:span>, la compañía que está revolucionando el mercado óptico en Colombia, ofrecemos productos y servicios ópticos con la mejor calidad y tecnología de punta. Nuestra mayor prioridad es satisfacer las necesidades de nuestros clientes.</text:p> <text:p text:style-name="P11">Somos <text:span text:style-name="T6">SMART VISION</text:span>, la compañía que está revolucionando el mercado óptico en Colombia, ofrecemos productos y servicios ópticos con la mejor calidad y tecnología de punta. Nuestra mayor prioridad es satisfacer las necesidades de nuestros clientes.</text:p>
<text:p text:style-name="P49"><text:span text:style-name="T4">Agradecemos sinceramente el habernos elegido como opción.</text:span></text:p> <text:p text:style-name="P57">Agradecemos sinceramente el habernos elegido como opción.</text:p>
<text:p text:style-name="P56"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p> <text:p text:style-name="P51"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
</office:text> </office:text>
</office:body> </office:body>
</office:document> </office:document>

4872
report/Prorrogation.fodt Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,31 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text"> <office:document xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:generator>LibreOffice/7.4.6.2$Linux_X86_64 LibreOffice_project/40$Build-2</meta:generator><meta:creation-date>2008-06-07T15:28:22</meta:creation-date><dc:date>2009-01-10T16:03:33</dc:date><meta:editing-cycles>1</meta:editing-cycles><meta:editing-duration>PT0S</meta:editing-duration><meta:document-statistic meta:table-count="4" meta:image-count="2" meta:object-count="0" meta:page-count="4" meta:paragraph-count="146" meta:word-count="462" meta:character-count="4423" meta:non-whitespace-character-count="4077"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta> <office:meta><meta:generator>LibreOffice/7.4.7.2$Linux_X86_64 LibreOffice_project/40$Build-2</meta:generator><meta:creation-date>2008-06-07T15:28:22</meta:creation-date><dc:date>2009-01-10T16:03:33</dc:date><meta:editing-cycles>1</meta:editing-cycles><meta:editing-duration>PT0S</meta:editing-duration><meta:document-statistic meta:table-count="4" meta:image-count="2" meta:object-count="0" meta:page-count="4" meta:paragraph-count="147" meta:word-count="462" meta:character-count="4423" meta:non-whitespace-character-count="4077"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:settings> <office:settings>
<config:config-item-set config:name="ooo:view-settings"> <config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">0</config:config-item> <config:config-item config:name="ViewAreaTop" config:type="long">68703</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item> <config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">40836</config:config-item> <config:config-item config:name="ViewAreaWidth" config:type="long">30628</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">18302</config:config-item> <config:config-item config:name="ViewAreaHeight" config:type="long">13744</config:config-item>
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item> <config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item> <config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="Views"> <config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry> <config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item> <config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">14041</config:config-item> <config:config-item config:name="ViewLeft" config:type="long">5383</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">17293</config:config-item> <config:config-item config:name="ViewTop" config:type="long">77264</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item> <config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">0</config:config-item> <config:config-item config:name="VisibleTop" config:type="long">68703</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">40834</config:config-item> <config:config-item config:name="VisibleRight" config:type="long">30626</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">18300</config:config-item> <config:config-item config:name="VisibleBottom" config:type="long">82446</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item> <config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns" config:type="short">0</config:config-item> <config:config-item config:name="ViewLayoutColumns" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item> <config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">120</config:config-item> <config:config-item config:name="ZoomFactor" config:type="short">160</config:config-item>
<config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item> <config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item>
<config:config-item config:name="KeepRatio" config:type="boolean">false</config:config-item> <config:config-item config:name="KeepRatio" config:type="boolean">false</config:config-item>
<config:config-item config:name="HideWhitespace" config:type="boolean">false</config:config-item>
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item> <config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
</config:config-item-map-entry> </config:config-item-map-entry>
</config:config-item-map-indexed> </config:config-item-map-indexed>
@ -91,7 +90,7 @@
<config:config-item config:name="ChartAutoUpdate" config:type="boolean">true</config:config-item> <config:config-item config:name="ChartAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrinterSetup" config:type="base64Binary"/> <config:config-item config:name="PrinterSetup" config:type="base64Binary"/>
<config:config-item config:name="AddParaTableSpacingAtStart" config:type="boolean">true</config:config-item> <config:config-item config:name="AddParaTableSpacingAtStart" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">3302014</config:config-item> <config:config-item config:name="Rsid" config:type="int">3302942</config:config-item>
<config:config-item config:name="EmbeddedDatabaseName" config:type="string"/> <config:config-item config:name="EmbeddedDatabaseName" config:type="string"/>
<config:config-item config:name="FieldAutoUpdate" config:type="boolean">true</config:config-item> <config:config-item config:name="FieldAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="OutlineLevelYieldsNumbering" config:type="boolean">false</config:config-item> <config:config-item config:name="OutlineLevelYieldsNumbering" config:type="boolean">false</config:config-item>
@ -168,7 +167,7 @@
<office:styles> <office:styles>
<style:default-style style:family="graphic"> <style:default-style style:family="graphic">
<style:graphic-properties svg:stroke-color="#000000" draw:fill-color="#99ccff" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.1181in" draw:shadow-offset-y="0.1181in" draw:start-line-spacing-horizontal="0.1114in" draw:start-line-spacing-vertical="0.1114in" draw:end-line-spacing-horizontal="0.1114in" draw:end-line-spacing-vertical="0.1114in" style:flow-with-text="false"/> <style:graphic-properties svg:stroke-color="#000000" draw:fill-color="#99ccff" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.1181in" draw:shadow-offset-y="0.1181in" draw:start-line-spacing-horizontal="0.1114in" draw:start-line-spacing-vertical="0.1114in" draw:end-line-spacing-horizontal="0.1114in" draw:end-line-spacing-vertical="0.1114in" style:flow-with-text="false"/>
<style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" style:font-independent-line-spacing="false"> <style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" style:writing-mode="lr-tb" style:font-independent-line-spacing="false">
<style:tab-stops/> <style:tab-stops/>
</style:paragraph-properties> </style:paragraph-properties>
<style:text-properties style:use-window-font-color="true" loext:opacity="0%" loext:color-lum-mod="100%" loext:color-lum-off="0%" style:font-name="Thorndale AMT" fo:font-size="12pt" fo:language="en" fo:country="US" style:letter-kerning="true" style:font-name-asian="Andale Sans UI" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-name-complex="Andale Sans UI" style:font-size-complex="12pt" style:language-complex="zxx" style:country-complex="none"/> <style:text-properties style:use-window-font-color="true" loext:opacity="0%" loext:color-lum-mod="100%" loext:color-lum-off="0%" style:font-name="Thorndale AMT" fo:font-size="12pt" fo:language="en" fo:country="US" style:letter-kerning="true" style:font-name-asian="Andale Sans UI" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-name-complex="Andale Sans UI" style:font-size-complex="12pt" style:language-complex="zxx" style:country-complex="none"/>
@ -327,16 +326,16 @@
<text:notes-configuration text:note-class="footnote" style:num-format="1" text:start-value="0" text:footnotes-position="page" text:start-numbering-at="document"/> <text:notes-configuration text:note-class="footnote" style:num-format="1" text:start-value="0" text:footnotes-position="page" text:start-numbering-at="document"/>
<text:notes-configuration text:note-class="endnote" style:num-format="i" text:start-value="0"/> <text:notes-configuration text:note-class="endnote" style:num-format="i" text:start-value="0"/>
<text:linenumbering-configuration text:number-lines="false" text:offset="0.1965in" style:num-format="1" text:number-position="left" text:increment="5"/> <text:linenumbering-configuration text:number-lines="false" text:offset="0.1965in" style:num-format="1" text:number-position="left" text:increment="5"/>
<number:currency-style style:name="N108P0" style:volatile="true"> <number:currency-style style:name="N122P0" style:volatile="true">
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol> <number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> <number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
</number:currency-style> </number:currency-style>
<number:currency-style style:name="N108"> <number:currency-style style:name="N122">
<style:text-properties fo:color="#ff0000"/> <style:text-properties fo:color="#ff0000"/>
<number:text>-</number:text> <number:text>-</number:text>
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol> <number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> <number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
<style:map style:condition="value()&gt;=0" style:apply-style-name="N108P0"/> <style:map style:condition="value()&gt;=0" style:apply-style-name="N122P0"/>
</number:currency-style> </number:currency-style>
</office:styles> </office:styles>
<office:automatic-styles> <office:automatic-styles>
@ -652,192 +651,192 @@
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:paragraph-rsid="003077b6" style:font-size-asian="8pt" style:font-size-complex="8pt"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:paragraph-rsid="003077b6" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style> </style:style>
<style:style style:name="P34" style:family="paragraph" style:parent-style-name="Text_20_body"> <style:style style:name="P34" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" style:text-underline-style="none" officeooo:rsid="026544ec" officeooo:paragraph-rsid="02b1d5d8" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P35" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" style:text-underline-style="none" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="02b1d5d8" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P36" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0043in" style:contextual-spacing="false"/> <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0043in" style:contextual-spacing="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-weight="bold" officeooo:paragraph-rsid="001ae359" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-weight="bold" officeooo:paragraph-rsid="001ae359" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P35" style:family="paragraph" style:parent-style-name="Text_20_body"> <style:style style:name="P37" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0043in" style:contextual-spacing="false" fo:line-height="100%"/> <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0043in" style:contextual-spacing="false" fo:line-height="100%"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" officeooo:paragraph-rsid="00244514" style:font-size-asian="7pt" style:font-size-complex="7pt"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" officeooo:paragraph-rsid="00244514" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style> </style:style>
<style:style style:name="P36" style:family="paragraph" style:parent-style-name="Text_20_body"> <style:style style:name="P38" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0043in" style:contextual-spacing="false" fo:line-height="100%"/> <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0043in" style:contextual-spacing="false" fo:line-height="100%"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" officeooo:paragraph-rsid="0027ed94" style:font-size-asian="7pt" style:font-size-complex="7pt"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" officeooo:paragraph-rsid="0027ed94" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style> </style:style>
<style:style style:name="P37" style:family="paragraph" style:parent-style-name="Text_20_body"> <style:style style:name="P39" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0043in" style:contextual-spacing="false"/> <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0043in" style:contextual-spacing="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" officeooo:paragraph-rsid="001ae359" style:font-size-asian="7pt" style:font-size-complex="7pt"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" officeooo:paragraph-rsid="001ae359" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style> </style:style>
<style:style style:name="P38" style:family="paragraph" style:parent-style-name="Table_20_Contents"> <style:style style:name="P40" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style> </style:style>
<style:style style:name="P39" style:family="paragraph" style:parent-style-name="Table_20_Contents"> <style:style style:name="P41" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/> <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style> </style:style>
<style:style style:name="P40" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P42" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" officeooo:paragraph-rsid="0021bfc5" style:font-size-asian="7pt" style:font-size-complex="7pt"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" officeooo:paragraph-rsid="0021bfc5" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style> </style:style>
<style:style style:name="P41" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P43" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" officeooo:paragraph-rsid="00203939" style:font-size-asian="7pt" style:font-size-complex="7pt"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" officeooo:paragraph-rsid="00203939" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style> </style:style>
<style:style style:name="P42" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P44" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" officeooo:paragraph-rsid="002db4b9" style:font-size-asian="7pt" style:font-size-complex="7pt"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" officeooo:paragraph-rsid="002db4b9" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style> </style:style>
<style:style style:name="P43" style:family="paragraph" style:parent-style-name="Table_20_Contents"> <style:style style:name="P45" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/> <style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" officeooo:paragraph-rsid="0008048e" style:font-size-asian="7pt" style:font-size-complex="7pt"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" officeooo:paragraph-rsid="0008048e" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style> </style:style>
<style:style style:name="P44" style:family="paragraph" style:parent-style-name="Table_20_Contents"> <style:style style:name="P46" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/> <style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style> </style:style>
<style:style style:name="P45" style:family="paragraph" style:parent-style-name="Heading_20_2"> <style:style style:name="P47" style:family="paragraph" style:parent-style-name="Heading_20_2">
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style> </style:style>
<style:style style:name="P46" style:family="paragraph" style:parent-style-name="Heading_20_2"> <style:style style:name="P48" style:family="paragraph" style:parent-style-name="Heading_20_2">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style> </style:style>
<style:style style:name="P47" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P49" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style> </style:style>
<style:style style:name="P48" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P50" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style> </style:style>
<style:style style:name="P49" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P51" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" officeooo:paragraph-rsid="0014b27d" style:font-size-asian="7pt" style:font-size-complex="7pt"/> <style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" officeooo:paragraph-rsid="0014b27d" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style> </style:style>
<style:style style:name="P50" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P52" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties officeooo:paragraph-rsid="0023d589"/> <style:text-properties officeooo:paragraph-rsid="0023d589"/>
</style:style> </style:style>
<style:style style:name="P51" style:family="paragraph" style:parent-style-name="Normal_20__28_Web_29_"> <style:style style:name="P53" style:family="paragraph" style:parent-style-name="Normal_20__28_Web_29_">
<loext:graphic-properties draw:fill="solid" draw:fill-color="#ffffff"/> <loext:graphic-properties draw:fill="solid" draw:fill-color="#ffffff"/>
<style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0874in" style:contextual-spacing="false" fo:line-height="100%" fo:text-align="center" style:justify-single-word="false" fo:background-color="#ffffff"/> <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0874in" style:contextual-spacing="false" fo:line-height="100%" fo:text-align="center" style:justify-single-word="false" fo:background-color="#ffffff"/>
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:paragraph-rsid="001cd488" style:font-size-asian="8pt" style:font-name-complex="Segoe UI" style:font-size-complex="8pt"/> <style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:paragraph-rsid="001cd488" style:font-size-asian="8pt" style:font-name-complex="Segoe UI" style:font-size-complex="8pt"/>
</style:style> </style:style>
<style:style style:name="P52" style:family="paragraph" style:parent-style-name="Normal_20__28_Web_29_"> <style:style style:name="P54" style:family="paragraph" style:parent-style-name="Normal_20__28_Web_29_">
<loext:graphic-properties draw:fill="solid" draw:fill-color="#ffffff"/> <loext:graphic-properties draw:fill="solid" draw:fill-color="#ffffff"/>
<style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0083in" style:contextual-spacing="false" fo:line-height="100%" fo:text-align="center" style:justify-single-word="false" fo:background-color="#ffffff"/> <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0083in" style:contextual-spacing="false" fo:line-height="100%" fo:text-align="center" style:justify-single-word="false" fo:background-color="#ffffff"/>
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:paragraph-rsid="0023d589" style:font-size-asian="8pt" style:font-size-complex="8pt"/> <style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" officeooo:paragraph-rsid="0023d589" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style> </style:style>
<style:style style:name="P53" style:family="paragraph" style:parent-style-name="Normal_20__28_Web_29_"> <style:style style:name="P55" style:family="paragraph" style:parent-style-name="Normal_20__28_Web_29_">
<loext:graphic-properties draw:fill="solid" draw:fill-color="#ffffff"/> <loext:graphic-properties draw:fill="solid" draw:fill-color="#ffffff"/>
<style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0083in" style:contextual-spacing="false" fo:line-height="100%" fo:text-align="center" style:justify-single-word="false" fo:background-color="#ffffff"/> <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0083in" style:contextual-spacing="false" fo:line-height="100%" fo:text-align="center" style:justify-single-word="false" fo:background-color="#ffffff"/>
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="italic" fo:font-weight="bold" officeooo:paragraph-rsid="0023d589" style:font-size-asian="8pt" style:font-style-asian="italic" style:font-weight-asian="bold" style:font-name-complex="Segoe UI" style:font-size-complex="8pt"/> <style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="italic" fo:font-weight="bold" officeooo:paragraph-rsid="0023d589" style:font-size-asian="8pt" style:font-style-asian="italic" style:font-weight-asian="bold" style:font-name-complex="Segoe UI" style:font-size-complex="8pt"/>
</style:style> </style:style>
<style:style style:name="P54" style:family="paragraph" style:parent-style-name="Table_20_Heading"> <style:style style:name="P56" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/> <style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P55" style:family="paragraph" style:parent-style-name="Table_20_Heading"> <style:style style:name="P57" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="00203939" officeooo:paragraph-rsid="00203939" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/> <style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="00203939" officeooo:paragraph-rsid="00203939" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P56" style:family="paragraph" style:parent-style-name="Table_20_Heading"> <style:style style:name="P58" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="003bba97" officeooo:paragraph-rsid="003bba97" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/> <style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="003bba97" officeooo:paragraph-rsid="003bba97" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P57" style:family="paragraph" style:parent-style-name="Text_20_body_20__28_user_29_"> <style:style style:name="P59" style:family="paragraph" style:parent-style-name="Text_20_body_20__28_user_29_">
<style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0043in" style:contextual-spacing="false"/> <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0043in" style:contextual-spacing="false"/>
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-weight="bold" officeooo:paragraph-rsid="001cd488" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-name-complex="Cantarell1" style:font-size-complex="7pt" style:font-weight-complex="bold"/> <style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-weight="bold" officeooo:paragraph-rsid="001cd488" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-name-complex="Cantarell1" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P58" style:family="paragraph" style:parent-style-name="Text_20_body_20__28_user_29_"> <style:style style:name="P60" style:family="paragraph" style:parent-style-name="Text_20_body_20__28_user_29_">
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-weight="bold" officeooo:paragraph-rsid="00244514" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-name-complex="Cantarell1" style:font-size-complex="7pt" style:font-weight-complex="bold"/> <style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-weight="bold" officeooo:paragraph-rsid="00244514" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-name-complex="Cantarell1" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P59" style:family="paragraph" style:parent-style-name="Text_20_body"> <style:style style:name="P61" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0043in" style:contextual-spacing="false" fo:line-height="100%"/> <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0043in" style:contextual-spacing="false" fo:line-height="100%"/>
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-weight="bold" officeooo:paragraph-rsid="0027ed94" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-name-complex="Cantarell1" style:font-size-complex="7pt" style:font-weight-complex="bold"/> <style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="7pt" fo:font-weight="bold" officeooo:paragraph-rsid="0027ed94" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-name-complex="Cantarell1" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P60" style:family="paragraph" style:parent-style-name="Text_20_body"> <style:style style:name="P62" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:line-height="100%" fo:text-align="start" style:justify-single-word="false"/> <style:paragraph-properties fo:line-height="100%" fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:language="en" fo:country="US" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="002a4c57" officeooo:paragraph-rsid="002ee59e" style:letter-kerning="true" style:font-name-asian="Liberation Sans1" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-name-complex="Cantarell1" style:font-size-complex="9pt" style:language-complex="ar" style:country-complex="SA" style:font-weight-complex="bold"/> <style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:language="en" fo:country="US" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="002a4c57" officeooo:paragraph-rsid="002ee59e" style:letter-kerning="true" style:font-name-asian="Liberation Sans1" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-name-complex="Cantarell1" style:font-size-complex="9pt" style:language-complex="ar" style:country-complex="SA" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P61" style:family="paragraph" style:parent-style-name="Text_20_body"> <style:style style:name="P63" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:language="en" fo:country="US" fo:font-weight="bold" officeooo:rsid="002a4c57" officeooo:paragraph-rsid="002ee59e" style:letter-kerning="true" style:font-name-asian="Liberation Sans1" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-name-complex="Cantarell1" style:font-size-complex="9pt" style:language-complex="ar" style:country-complex="SA" style:font-weight-complex="bold"/> <style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="9pt" fo:language="en" fo:country="US" fo:font-weight="bold" officeooo:rsid="002a4c57" officeooo:paragraph-rsid="002ee59e" style:letter-kerning="true" style:font-name-asian="Liberation Sans1" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-name-complex="Cantarell1" style:font-size-complex="9pt" style:language-complex="ar" style:country-complex="SA" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P62" style:family="paragraph" style:parent-style-name="Text_20_body_20__28_user_29_"> <style:style style:name="P64" style:family="paragraph" style:parent-style-name="Text_20_body_20__28_user_29_">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0in" fo:margin-bottom="0.0043in" style:contextual-spacing="false" fo:text-indent="0in" style:auto-text-indent="false"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0in" fo:margin-bottom="0.0043in" style:contextual-spacing="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Cantarell1" fo:font-size="7pt" fo:font-weight="bold" officeooo:rsid="001dc758" officeooo:paragraph-rsid="002706d3" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-name-complex="Cantarell1" style:font-size-complex="7pt" style:font-weight-complex="bold"/> <style:text-properties style:font-name="Cantarell1" fo:font-size="7pt" fo:font-weight="bold" officeooo:rsid="001dc758" officeooo:paragraph-rsid="002706d3" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-name-complex="Cantarell1" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P63" style:family="paragraph" style:parent-style-name="Text_20_body_20__28_user_29_"> <style:style style:name="P65" style:family="paragraph" style:parent-style-name="Text_20_body_20__28_user_29_">
<style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0043in" style:contextual-spacing="false"/> <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0043in" style:contextual-spacing="false"/>
<style:text-properties style:font-name="Cantarell1" fo:font-size="7pt" officeooo:paragraph-rsid="002706d3" style:font-size-asian="7pt" style:font-name-complex="Cantarell1" style:font-size-complex="7pt"/> <style:text-properties style:font-name="Cantarell1" fo:font-size="7pt" officeooo:paragraph-rsid="002706d3" style:font-size-asian="7pt" style:font-name-complex="Cantarell1" style:font-size-complex="7pt"/>
</style:style> </style:style>
<style:style style:name="P64" style:family="paragraph" style:parent-style-name="Text_20_body_20__28_user_29_"> <style:style style:name="P66" style:family="paragraph" style:parent-style-name="Text_20_body_20__28_user_29_">
<style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0043in" style:contextual-spacing="false"/> <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0043in" style:contextual-spacing="false"/>
<style:text-properties style:font-name="Cantarell" fo:font-size="7pt" officeooo:paragraph-rsid="0027ed94" style:font-size-asian="7pt" style:font-size-complex="7pt"/> <style:text-properties style:font-name="Cantarell" fo:font-size="7pt" officeooo:paragraph-rsid="0027ed94" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style> </style:style>
<style:style style:name="P65" style:family="paragraph" style:parent-style-name="Text_20_body"> <style:style style:name="P67" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0in" fo:margin-bottom="0.0043in" style:contextual-spacing="false" fo:text-indent="0in" style:auto-text-indent="false"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0in" fo:margin-bottom="0.0043in" style:contextual-spacing="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="001cd488" officeooo:paragraph-rsid="001dc758" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/> <style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="001cd488" officeooo:paragraph-rsid="001dc758" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P66" style:family="paragraph" style:parent-style-name="Text_20_body"> <style:style style:name="P68" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0in" fo:margin-bottom="0.0043in" style:contextual-spacing="false" fo:text-indent="0in" style:auto-text-indent="false"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0in" fo:margin-bottom="0.0043in" style:contextual-spacing="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="001dc758" officeooo:paragraph-rsid="0023d589" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/> <style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="001dc758" officeooo:paragraph-rsid="0023d589" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P67" style:family="paragraph" style:parent-style-name="Text_20_body"> <style:style style:name="P69" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0in" fo:margin-bottom="0.0043in" style:contextual-spacing="false" fo:text-indent="0in" style:auto-text-indent="false"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0in" fo:margin-bottom="0.0043in" style:contextual-spacing="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="001dc758" officeooo:paragraph-rsid="001dc758" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/> <style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="001dc758" officeooo:paragraph-rsid="001dc758" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P68" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="8pt" officeooo:paragraph-rsid="001cd488" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P69" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="8pt" officeooo:paragraph-rsid="001cd488" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P70" style:family="paragraph" style:parent-style-name="Standard"> <style:style style:name="P70" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="8pt" officeooo:paragraph-rsid="001cd488" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P71" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="8pt" officeooo:paragraph-rsid="001cd488" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P72" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0in" fo:margin-bottom="0.0043in" style:contextual-spacing="false" fo:text-indent="0in" style:auto-text-indent="false"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0in" fo:margin-bottom="0.0043in" style:contextual-spacing="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="001cd488" officeooo:paragraph-rsid="001cd488" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/> <style:text-properties style:font-name="Droid Sans Japanese" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="001cd488" officeooo:paragraph-rsid="001cd488" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="P71" style:family="paragraph" style:parent-style-name="Text_20_body"> <style:style style:name="P73" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:text-properties officeooo:paragraph-rsid="002ee59e"/> <style:text-properties officeooo:paragraph-rsid="002ee59e"/>
</style:style> </style:style>
<style:style style:name="P72" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" style:text-underline-style="solid" style:text-underline-type="double" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="02b1d5d8" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P73" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" style:text-underline-style="solid" style:text-underline-type="double" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="0030ce45" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P74" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P74" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="normal" officeooo:paragraph-rsid="02b1d5d8" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/> <style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" style:text-underline-style="solid" style:text-underline-type="double" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="02b1d5d8" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P75" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P75" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:paragraph-rsid="02b1d5d8" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/> <style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" style:text-underline-style="solid" style:text-underline-type="double" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="0030ce45" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P76" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P76" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="02b1d5d8" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-style-complex="normal" style:font-weight-complex="normal"/> <style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="normal" officeooo:paragraph-rsid="02b1d5d8" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="P77" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P77" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" style:text-underline-style="none" officeooo:rsid="026544ec" officeooo:paragraph-rsid="02b1d5d8" style:font-size-asian="8pt" style:font-size-complex="8pt"/> <style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-weight="bold" officeooo:paragraph-rsid="02b1d5d8" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P78" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P78" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="8pt" style:text-underline-style="none" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="02b1d5d8" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P79" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/> <style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="02b1d5d8" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-style-complex="normal" style:font-weight-complex="normal"/> <style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="02b1d5d8" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="P80" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P79" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="02b1d5d8" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/> <style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="02b1d5d8" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P81" style:family="paragraph" style:parent-style-name="Header"> <style:style style:name="P80" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="0030ce45" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/> <style:text-properties fo:color="#666666" loext:opacity="100%" style:font-name="Droid Sans Japanese1" fo:font-size="8pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="0266c2a9" officeooo:paragraph-rsid="0030ce45" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
</style:style> </style:style>
<style:style style:name="P81" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0043in" style:contextual-spacing="false" fo:line-height="100%"/>
<style:text-properties style:font-name="Droid Sans Japanese1" fo:font-size="7pt" officeooo:paragraph-rsid="0032661e" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="T1" style:family="text"> <style:style style:name="T1" style:family="text">
<style:text-properties style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="00203939" style:font-weight-asian="bold" style:font-weight-complex="bold"/> <style:text-properties style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="00203939" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style> </style:style>
@ -1696,45 +1695,45 @@
<text:sequence-decl text:display-outline-level="0" text:name="Figure"/> <text:sequence-decl text:display-outline-level="0" text:name="Figure"/>
</text:sequence-decls> </text:sequence-decls>
<text:p text:style-name="P16"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;sale in records&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P16"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;sale in records&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P71"><text:placeholder text:placeholder-type="text">&lt;choose test=&quot;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P73"><text:placeholder text:placeholder-type="text">&lt;choose test=&quot;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P17"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;sale.quote_number != None or sale.number != None&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P17"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;sale.quote_number != None or sale.number != None&quot;&gt;</text:placeholder></text:p>
<table:table table:name="Tabla2" table:style-name="Tabla2"> <table:table table:name="Tabla2" table:style-name="Tabla2">
<table:table-column table:style-name="Tabla2.A"/> <table:table-column table:style-name="Tabla2.A"/>
<table:table-column table:style-name="Tabla2.B"/> <table:table-column table:style-name="Tabla2.B"/>
<table:table-row table:style-name="Tabla2.1"> <table:table-row table:style-name="Tabla2.1">
<table:table-cell table:style-name="Tabla2.A1" office:value-type="string"> <table:table-cell table:style-name="Tabla2.A1" office:value-type="string">
<text:p text:style-name="P69"><text:span text:style-name="T12">Fecha</text:span><text:span text:style-name="T11">: </text:span><text:span text:style-name="T11"><text:placeholder text:placeholder-type="text">&lt;format_date(sale.sale_date or today, sale.party.lang)&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P71"><text:span text:style-name="T12">Fecha</text:span><text:span text:style-name="T11">: </text:span><text:span text:style-name="T11"><text:placeholder text:placeholder-type="text">&lt;format_date(sale.sale_date or today, sale.party.lang)&gt;</text:placeholder></text:span></text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla2.A1" table:number-rows-spanned="2" office:value-type="string"> <table:table-cell table:style-name="Tabla2.A1" table:number-rows-spanned="2" office:value-type="string">
<text:p text:style-name="P74"><text:placeholder text:placeholder-type="text" text:description="if test=&quot;sale.company&quot;">&lt;if test=&quot;sale.company&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P76"><text:placeholder text:placeholder-type="text" text:description="if test=&quot;sale.company&quot;">&lt;if test=&quot;sale.company&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P75"><text:placeholder text:placeholder-type="text" text:description="sale.company and sale.company.rec_name">&lt;sale.company and sale.company.rec_name&gt;</text:placeholder></text:p> <text:p text:style-name="P77"><text:placeholder text:placeholder-type="text" text:description="sale.company and sale.company.rec_name">&lt;sale.company and sale.company.rec_name&gt;</text:placeholder></text:p>
<text:p text:style-name="P31"><text:span text:style-name="T33">NIT:</text:span><text:span text:style-name="T41"> </text:span><text:span text:style-name="T40"><text:placeholder text:placeholder-type="text">&lt;sale.company.party.identifiers[0].code&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P31"><text:span text:style-name="T33">NIT:</text:span><text:span text:style-name="T41"> </text:span><text:span text:style-name="T40"><text:placeholder text:placeholder-type="text">&lt;sale.company.party.identifiers[0].code&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P33">Regimen Común</text:p> <text:p text:style-name="P33">Regimen Común</text:p>
<text:p text:style-name="P33"><text:span text:style-name="T40">Actividad Economica 46</text:span><text:span text:style-name="T42">59</text:span></text:p> <text:p text:style-name="P33"><text:span text:style-name="T40">Actividad Economica 46</text:span><text:span text:style-name="T42">59</text:span></text:p>
<text:p text:style-name="P77"><text:span text:style-name="T32">Dirección: </text:span><text:span text:style-name="T40"><text:placeholder text:placeholder-type="text">&lt;sale.company.party.addresses[0].street&gt;</text:placeholder></text:span><text:span text:style-name="T40"><text:s/></text:span><text:span text:style-name="T40"><text:placeholder text:placeholder-type="text">&lt;sale.company.party.addresses[0].city&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P34"><text:span text:style-name="T32">Dirección: </text:span><text:span text:style-name="T40"><text:placeholder text:placeholder-type="text">&lt;sale.company.party.addresses[0].street&gt;</text:placeholder></text:span><text:span text:style-name="T40"><text:s/></text:span><text:span text:style-name="T40"><text:placeholder text:placeholder-type="text">&lt;sale.company.party.addresses[0].city&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P78"><text:span text:style-name="T33">Teléfono:</text:span><text:span text:style-name="T40"> </text:span><text:span text:style-name="T41"><text:placeholder text:placeholder-type="text">&lt;sale.company.party.phone&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P35"><text:span text:style-name="T33">Teléfono:</text:span><text:span text:style-name="T40"> </text:span><text:span text:style-name="T41"><text:placeholder text:placeholder-type="text">&lt;sale.company.party.phone&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P80"><text:span text:style-name="T34">Celular: </text:span><text:span text:style-name="T43"><text:placeholder text:placeholder-type="text">&lt;sale.company.party.mobile&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P79"><text:span text:style-name="T34">Celular: </text:span><text:span text:style-name="T43"><text:placeholder text:placeholder-type="text">&lt;sale.company.party.mobile&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P81"><text:span text:style-name="T35">E-mail</text:span><text:span text:style-name="T34">: </text:span><text:span text:style-name="T43"><text:placeholder text:placeholder-type="text">&lt;sale.company.party.email&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P80"><text:span text:style-name="T35">E-mail</text:span><text:span text:style-name="T34">: </text:span><text:span text:style-name="T43"><text:placeholder text:placeholder-type="text">&lt;sale.company.party.email&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P76"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p> <text:p text:style-name="P78"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
<table:table-row table:style-name="Tabla2.2"> <table:table-row table:style-name="Tabla2.2">
<table:table-cell table:style-name="Tabla2.A1" office:value-type="string"> <table:table-cell table:style-name="Tabla2.A1" office:value-type="string">
<text:p text:style-name="P65">Cotizado a: <text:span text:style-name="T17"><text:placeholder text:placeholder-type="text" text:description="sale.propietary.name">&lt;sale.party.name&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P67">Cotizado a: <text:span text:style-name="T17"><text:placeholder text:placeholder-type="text" text:description="sale.propietary.name">&lt;sale.party.name&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P68"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;sale.party.tax_identifier&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P70"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;sale.party.tax_identifier&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P68"><text:span text:style-name="T13">Nit o Cedula</text:span><text:span text:style-name="T11">:</text:span> <text:placeholder text:placeholder-type="text">&lt;sale.party.tax_identifier.code&gt;</text:placeholder></text:p> <text:p text:style-name="P70"><text:span text:style-name="T13">Nit o Cedula</text:span><text:span text:style-name="T11">:</text:span> <text:placeholder text:placeholder-type="text">&lt;sale.party.tax_identifier.code&gt;</text:placeholder></text:p>
<text:p text:style-name="P70"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p> <text:p text:style-name="P72"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p>
<text:p text:style-name="P66">Dirección: <text:span text:style-name="T17"><text:placeholder text:placeholder-type="text" text:description="sale.invoice_address.street">&lt;sale.invoice_address.street&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P68">Dirección: <text:span text:style-name="T17"><text:placeholder text:placeholder-type="text" text:description="sale.invoice_address.street">&lt;sale.invoice_address.street&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P67">Ciudad: <text:span text:style-name="T17"><text:placeholder text:placeholder-type="text" text:description="sale.invoice_address.subdivision_municipality">&lt;sale.invoice_address.subdivision_municipality.name&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P69">Ciudad: <text:span text:style-name="T17"><text:placeholder text:placeholder-type="text" text:description="sale.invoice_address.subdivision_municipality">&lt;sale.invoice_address.subdivision_municipality.name&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P67"><text:span text:style-name="T20">T</text:span><text:span text:style-name="T19">elefono: </text:span><text:span text:style-name="T17"><text:placeholder text:placeholder-type="text" text:description="sale.contact.value">&lt;sale.contact.value&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P69"><text:span text:style-name="T20">T</text:span><text:span text:style-name="T19">elefono: </text:span><text:span text:style-name="T17"><text:placeholder text:placeholder-type="text" text:description="sale.contact.value">&lt;sale.contact.value&gt;</text:placeholder></text:span></text:p>
</table:table-cell> </table:table-cell>
<table:covered-table-cell table:style-name="Tabla2.A1"/> <table:covered-table-cell table:style-name="Tabla2.A1"/>
</table:table-row> </table:table-row>
</table:table> </table:table>
<text:p text:style-name="P51"/> <text:p text:style-name="P53"/>
<text:p text:style-name="P51">Somos SMART VISION, la compañía que está revolucionando el mercado óptico en Colombia, ofrecemos productos y servicios ópticos con la mejor calidad y tecnología de punta. Nuestra mayor prioridad es satisfacer las necesidades de nuestros clientes</text:p> <text:p text:style-name="P53">Somos SMART VISION, la compañía que está revolucionando el mercado óptico en Colombia, ofrecemos productos y servicios ópticos con la mejor calidad y tecnología de punta. Nuestra mayor prioridad es satisfacer las necesidades de nuestros clientes</text:p>
<text:p text:style-name="P53">Agradecemos sinceramente el habernos elegido como opción; a continuación, relacionamos los productos solicitados.</text:p> <text:p text:style-name="P55">Agradecemos sinceramente el habernos elegido como opción; a continuación, relacionamos los productos solicitados.</text:p>
<text:p text:style-name="P52"><text:span text:style-name="T16">&quot; SMART VISION cambia tu forma de ver el mundo</text:span><text:span text:style-name="T15">&quot;</text:span></text:p> <text:p text:style-name="P54"><text:span text:style-name="T16">&quot; SMART VISION cambia tu forma de ver el mundo</text:span><text:span text:style-name="T15">&quot;</text:span></text:p>
<table:table table:name="Tabla4" table:style-name="Tabla4"> <table:table table:name="Tabla4" table:style-name="Tabla4">
<table:table-column table:style-name="Tabla4.A"/> <table:table-column table:style-name="Tabla4.A"/>
<table:table-column table:style-name="Tabla4.B"/> <table:table-column table:style-name="Tabla4.B"/>
@ -1748,37 +1747,37 @@
<table:table-header-rows> <table:table-header-rows>
<table:table-row> <table:table-row>
<table:table-cell table:style-name="Tabla4.A1" office:value-type="string"> <table:table-cell table:style-name="Tabla4.A1" office:value-type="string">
<text:p text:style-name="P54">Descrip<text:span text:style-name="T3">c</text:span>ión</text:p> <text:p text:style-name="P56">Descrip<text:span text:style-name="T3">c</text:span>ión</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla4.A1" office:value-type="string"> <table:table-cell table:style-name="Tabla4.A1" office:value-type="string">
<text:p text:style-name="P55">Modelo</text:p> <text:p text:style-name="P57">Modelo</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla4.A1" office:value-type="string"> <table:table-cell table:style-name="Tabla4.A1" office:value-type="string">
<text:p text:style-name="P55">Marca</text:p> <text:p text:style-name="P57">Marca</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla4.A1" office:value-type="string"> <table:table-cell table:style-name="Tabla4.A1" office:value-type="string">
<text:p text:style-name="P55">Origen</text:p> <text:p text:style-name="P57">Origen</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla4.A1" office:value-type="string"> <table:table-cell table:style-name="Tabla4.A1" office:value-type="string">
<text:p text:style-name="P55">Garantia</text:p> <text:p text:style-name="P57">Garantia</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla4.A1" office:value-type="string"> <table:table-cell table:style-name="Tabla4.A1" office:value-type="string">
<text:p text:style-name="P56">Cantidad</text:p> <text:p text:style-name="P58">Cantidad</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla4.A1" office:value-type="string"> <table:table-cell table:style-name="Tabla4.A1" office:value-type="string">
<text:p text:style-name="P56">Precio u/n</text:p> <text:p text:style-name="P58">Precio u/n</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla4.A1" office:value-type="string"> <table:table-cell table:style-name="Tabla4.A1" office:value-type="string">
<text:p text:style-name="P55">IVA</text:p> <text:p text:style-name="P57">IVA</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla4.I1" office:value-type="string"> <table:table-cell table:style-name="Tabla4.I1" office:value-type="string">
<text:p text:style-name="P56">Total</text:p> <text:p text:style-name="P58">Total</text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
</table:table-header-rows> </table:table-header-rows>
<table:table-row> <table:table-row>
<table:table-cell table:style-name="Tabla4.A2" table:number-columns-spanned="9" office:value-type="string"> <table:table-cell table:style-name="Tabla4.A2" table:number-columns-spanned="9" office:value-type="string">
<text:p text:style-name="P38"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;line in sale.lines&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P40"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;line in sale.lines&quot;&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
<table:covered-table-cell/> <table:covered-table-cell/>
<table:covered-table-cell/> <table:covered-table-cell/>
@ -1791,7 +1790,7 @@
</table:table-row> </table:table-row>
<table:table-row> <table:table-row>
<table:table-cell table:style-name="Tabla4.A3" table:number-columns-spanned="9" office:value-type="string"> <table:table-cell table:style-name="Tabla4.A3" table:number-columns-spanned="9" office:value-type="string">
<text:p text:style-name="P38"><text:placeholder text:placeholder-type="text">&lt;choose test=&quot;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P40"><text:placeholder text:placeholder-type="text">&lt;choose test=&quot;&quot;&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
<table:covered-table-cell/> <table:covered-table-cell/>
<table:covered-table-cell/> <table:covered-table-cell/>
@ -1804,7 +1803,7 @@
</table:table-row> </table:table-row>
<table:table-row> <table:table-row>
<table:table-cell table:style-name="Tabla4.A4" table:number-columns-spanned="9" office:value-type="string"> <table:table-cell table:style-name="Tabla4.A4" table:number-columns-spanned="9" office:value-type="string">
<text:p text:style-name="P38"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;line.type == &apos;line&apos;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P40"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;line.type == &apos;line&apos;&quot;&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
<table:covered-table-cell/> <table:covered-table-cell/>
<table:covered-table-cell/> <table:covered-table-cell/>
@ -1817,61 +1816,61 @@
</table:table-row> </table:table-row>
<table:table-row> <table:table-row>
<table:table-cell table:style-name="Tabla4.A5" office:value-type="string"> <table:table-cell table:style-name="Tabla4.A5" office:value-type="string">
<text:p text:style-name="P48"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;line.product&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P50"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;line.product&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P48"><text:placeholder text:placeholder-type="text">&lt;line.product.rec_name&gt;</text:placeholder></text:p> <text:p text:style-name="P50"><text:placeholder text:placeholder-type="text">&lt;line.product.rec_name&gt;</text:placeholder></text:p>
<text:p text:style-name="P48"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p> <text:p text:style-name="P50"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p>
<text:p text:style-name="P48"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;line.description&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P50"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;line.description&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P48"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;description in line.description.split(&apos;\n&apos;)&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P50"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;description in line.description.split(&apos;\n&apos;)&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P49"><text:placeholder text:placeholder-type="text">&lt;description&gt;</text:placeholder></text:p> <text:p text:style-name="P51"><text:placeholder text:placeholder-type="text">&lt;description&gt;</text:placeholder></text:p>
<text:p text:style-name="P49"><text:soft-page-break/><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p> <text:p text:style-name="P51"><text:soft-page-break/><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
<text:p text:style-name="P49"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p> <text:p text:style-name="P51"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla4.B5" office:value-type="string"> <table:table-cell table:style-name="Tabla4.B5" office:value-type="string">
<text:p text:style-name="P42"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;line.product&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P44"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;line.product&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P40"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;line.product.model_category&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P42"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;line.product.model_category&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P41"><text:placeholder text:placeholder-type="text">&lt;line.product.model_category.name&gt;</text:placeholder><text:soft-page-break/></text:p> <text:p text:style-name="P43"><text:placeholder text:placeholder-type="text">&lt;line.product.model_category.name&gt;</text:placeholder><text:soft-page-break/></text:p>
<text:p text:style-name="P40"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p>
<text:p text:style-name="P42"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p> <text:p text:style-name="P42"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p>
<text:p text:style-name="P44"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla4.C5" office:value-type="string"> <table:table-cell table:style-name="Tabla4.C5" office:value-type="string">
<text:p text:style-name="P42"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;line.product&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P44"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;line.product&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P40"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;line.product.mark_category&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P42"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;line.product.mark_category&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P40"><text:soft-page-break/><text:placeholder text:placeholder-type="text">&lt;line.product.mark_category.name&gt;</text:placeholder></text:p> <text:p text:style-name="P42"><text:soft-page-break/><text:placeholder text:placeholder-type="text">&lt;line.product.mark_category.name&gt;</text:placeholder></text:p>
<text:p text:style-name="P40"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p>
<text:p text:style-name="P42"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p> <text:p text:style-name="P42"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p>
<text:p text:style-name="P44"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla4.D5" office:value-type="string"> <table:table-cell table:style-name="Tabla4.D5" office:value-type="string">
<text:p text:style-name="P42"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;line.product&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P44"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;line.product&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P40"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;line.product.origin_country&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P42"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;line.product.origin_country&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P40"><text:placeholder text:placeholder-type="text">&lt;line.product.origin_country.name&gt;</text:placeholder><text:soft-page-break/></text:p> <text:p text:style-name="P42"><text:placeholder text:placeholder-type="text">&lt;line.product.origin_country.name&gt;</text:placeholder><text:soft-page-break/></text:p>
<text:p text:style-name="P40"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p>
<text:p text:style-name="P42"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p> <text:p text:style-name="P42"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p>
<text:p text:style-name="P44"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla4.E5" office:value-type="string"> <table:table-cell table:style-name="Tabla4.E5" office:value-type="string">
<text:p text:style-name="P42"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;line.product&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P44"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;line.product&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P40"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;line.product.warranty&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P42"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;line.product.warranty&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P40"><text:placeholder text:placeholder-type="text">&lt;line.product.warranty&gt;</text:placeholder><text:soft-page-break/><text:s/><text:span text:style-name="T21">Meses</text:span></text:p> <text:p text:style-name="P42"><text:placeholder text:placeholder-type="text">&lt;line.product.warranty&gt;</text:placeholder><text:soft-page-break/><text:s/><text:span text:style-name="T21">Meses</text:span></text:p>
<text:p text:style-name="P40"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p>
<text:p text:style-name="P42"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p> <text:p text:style-name="P42"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p>
<text:p text:style-name="P44"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla4.F5" office:value-type="string"> <table:table-cell table:style-name="Tabla4.F5" office:value-type="string">
<text:p text:style-name="P39"><text:placeholder text:placeholder-type="text">&lt;format_number_symbol(line.quantity, sale.party.lang, line.unit, digits=line.unit.digits) if line.unit else format_number(line.quantity, sale.party.lang)&gt;</text:placeholder><text:soft-page-break/></text:p> <text:p text:style-name="P41"><text:placeholder text:placeholder-type="text">&lt;format_number_symbol(line.quantity, sale.party.lang, line.unit, digits=line.unit.digits) if line.unit else format_number(line.quantity, sale.party.lang)&gt;</text:placeholder><text:soft-page-break/></text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla4.G5" office:value-type="string"> <table:table-cell table:style-name="Tabla4.G5" office:value-type="string">
<text:p text:style-name="P43"><text:placeholder text:placeholder-type="text">&lt;format_currency(line.unit_price, sale.party.lang, sale.currency)&gt;</text:placeholder></text:p> <text:p text:style-name="P45"><text:placeholder text:placeholder-type="text">&lt;format_currency(line.unit_price, sale.party.lang, sale.currency)&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla4.H5" office:value-type="string"> <table:table-cell table:style-name="Tabla4.H5" office:value-type="string">
<text:p text:style-name="P39"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;tax in line.taxes&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P41"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;tax in line.taxes&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P39"><text:placeholder text:placeholder-type="text">&lt;tax.description&gt;</text:placeholder></text:p> <text:p text:style-name="P41"><text:placeholder text:placeholder-type="text">&lt;tax.description&gt;</text:placeholder></text:p>
<text:p text:style-name="P39"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p> <text:p text:style-name="P41"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabla4.I5" office:value-type="string"> <table:table-cell table:style-name="Tabla4.I5" office:value-type="string">
<text:p text:style-name="P44"><text:placeholder text:placeholder-type="text">&lt;format_currency(line.amount, sale.party.lang, sale.currency)&gt;</text:placeholder></text:p> <text:p text:style-name="P46"><text:placeholder text:placeholder-type="text">&lt;format_currency(line.amount, sale.party.lang, sale.currency)&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
<table:table-row> <table:table-row>
<table:table-cell table:style-name="Tabla4.A6" table:number-columns-spanned="9" office:value-type="string"> <table:table-cell table:style-name="Tabla4.A6" table:number-columns-spanned="9" office:value-type="string">
<text:p text:style-name="P38"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p> <text:p text:style-name="P40"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
<table:covered-table-cell/> <table:covered-table-cell/>
<table:covered-table-cell/> <table:covered-table-cell/>
@ -1884,7 +1883,7 @@
</table:table-row> </table:table-row>
<table:table-row> <table:table-row>
<table:table-cell table:style-name="Tabla4.A7" table:number-columns-spanned="9" office:value-type="string"> <table:table-cell table:style-name="Tabla4.A7" table:number-columns-spanned="9" office:value-type="string">
<text:p text:style-name="P38"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;line.type == &apos;subtotal&apos;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P40"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;line.type == &apos;subtotal&apos;&quot;&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
<table:covered-table-cell/> <table:covered-table-cell/>
<table:covered-table-cell/> <table:covered-table-cell/>
@ -1897,10 +1896,10 @@
</table:table-row> </table:table-row>
<table:table-row> <table:table-row>
<table:table-cell table:style-name="Tabla4.A8" table:number-columns-spanned="9" office:value-type="string"> <table:table-cell table:style-name="Tabla4.A8" table:number-columns-spanned="9" office:value-type="string">
<text:p text:style-name="P45"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;description in (line.description or &apos;&apos;).split(&apos;\n&apos;)&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P47"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;description in (line.description or &apos;&apos;).split(&apos;\n&apos;)&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P45"><text:placeholder text:placeholder-type="text">&lt;description&gt;</text:placeholder></text:p> <text:p text:style-name="P47"><text:placeholder text:placeholder-type="text">&lt;description&gt;</text:placeholder></text:p>
<text:p text:style-name="P46"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p> <text:p text:style-name="P48"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
<text:p text:style-name="P44"><text:placeholder text:placeholder-type="text">&lt;format_currency(line.amount, sale.party.lang, sale.currency)&gt;</text:placeholder></text:p> <text:p text:style-name="P46"><text:placeholder text:placeholder-type="text">&lt;format_currency(line.amount, sale.party.lang, sale.currency)&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
<table:covered-table-cell/> <table:covered-table-cell/>
<table:covered-table-cell/> <table:covered-table-cell/>
@ -1913,7 +1912,7 @@
</table:table-row> </table:table-row>
<table:table-row> <table:table-row>
<table:table-cell table:style-name="Tabla4.A9" table:number-columns-spanned="9" office:value-type="string"> <table:table-cell table:style-name="Tabla4.A9" table:number-columns-spanned="9" office:value-type="string">
<text:p text:style-name="P38"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p> <text:p text:style-name="P40"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
<table:covered-table-cell/> <table:covered-table-cell/>
<table:covered-table-cell/> <table:covered-table-cell/>
@ -1926,7 +1925,7 @@
</table:table-row> </table:table-row>
<table:table-row> <table:table-row>
<table:table-cell table:style-name="Tabla4.A10" table:number-columns-spanned="9" office:value-type="string"> <table:table-cell table:style-name="Tabla4.A10" table:number-columns-spanned="9" office:value-type="string">
<text:p text:style-name="P38"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;line.type == &apos;title&apos;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P40"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;line.type == &apos;title&apos;&quot;&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
<table:covered-table-cell/> <table:covered-table-cell/>
<table:covered-table-cell/> <table:covered-table-cell/>
@ -1939,9 +1938,9 @@
</table:table-row> </table:table-row>
<table:table-row> <table:table-row>
<table:table-cell table:style-name="Tabla4.A11" table:number-columns-spanned="9" office:value-type="string"> <table:table-cell table:style-name="Tabla4.A11" table:number-columns-spanned="9" office:value-type="string">
<text:p text:style-name="P45"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;description in (line.description or &apos;&apos;).split(&apos;\n&apos;)&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P47"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;description in (line.description or &apos;&apos;).split(&apos;\n&apos;)&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P45"><text:placeholder text:placeholder-type="text">&lt;description&gt;</text:placeholder></text:p> <text:p text:style-name="P47"><text:placeholder text:placeholder-type="text">&lt;description&gt;</text:placeholder></text:p>
<text:p text:style-name="P45"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p> <text:p text:style-name="P47"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
<table:covered-table-cell/> <table:covered-table-cell/>
<table:covered-table-cell/> <table:covered-table-cell/>
@ -1954,7 +1953,7 @@
</table:table-row> </table:table-row>
<table:table-row> <table:table-row>
<table:table-cell table:style-name="Tabla4.A11" table:number-columns-spanned="9" office:value-type="string"> <table:table-cell table:style-name="Tabla4.A11" table:number-columns-spanned="9" office:value-type="string">
<text:p text:style-name="P38"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p> <text:p text:style-name="P40"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
<table:covered-table-cell/> <table:covered-table-cell/>
<table:covered-table-cell/> <table:covered-table-cell/>
@ -1967,7 +1966,7 @@
</table:table-row> </table:table-row>
<table:table-row> <table:table-row>
<table:table-cell table:style-name="Tabla4.A11" table:number-columns-spanned="9" office:value-type="string"> <table:table-cell table:style-name="Tabla4.A11" table:number-columns-spanned="9" office:value-type="string">
<text:p text:style-name="P38"><text:placeholder text:placeholder-type="text">&lt;otherwise test=&quot;&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P40"><text:placeholder text:placeholder-type="text">&lt;otherwise test=&quot;&quot;&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
<table:covered-table-cell/> <table:covered-table-cell/>
<table:covered-table-cell/> <table:covered-table-cell/>
@ -1980,9 +1979,9 @@
</table:table-row> </table:table-row>
<table:table-row> <table:table-row>
<table:table-cell table:style-name="Tabla4.A11" table:number-columns-spanned="9" office:value-type="string"> <table:table-cell table:style-name="Tabla4.A11" table:number-columns-spanned="9" office:value-type="string">
<text:p text:style-name="P48"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;description in (line.description or &apos;&apos;).split(&apos;\n&apos;)&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P50"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;description in (line.description or &apos;&apos;).split(&apos;\n&apos;)&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P48"><text:placeholder text:placeholder-type="text">&lt;description&gt;</text:placeholder></text:p> <text:p text:style-name="P50"><text:placeholder text:placeholder-type="text">&lt;description&gt;</text:placeholder></text:p>
<text:p text:style-name="P47"><text:soft-page-break/><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p> <text:p text:style-name="P49"><text:soft-page-break/><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
</table:table-cell> </table:table-cell>
<table:covered-table-cell/> <table:covered-table-cell/>
<table:covered-table-cell/> <table:covered-table-cell/>
@ -2080,28 +2079,29 @@
</table:table> </table:table>
<text:p text:style-name="P14"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;comment in (sale.comment or &apos;&apos;).split(&apos;\n&apos;)&quot;&gt;</text:placeholder></text:p> <text:p text:style-name="P14"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;comment in (sale.comment or &apos;&apos;).split(&apos;\n&apos;)&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P14"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p> <text:p text:style-name="P14"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
<text:p text:style-name="P34">CONDICIONES DE NEGOCIACION Y PAGO:</text:p> <text:p text:style-name="P36">CONDICIONES DE NEGOCIACION Y PAGO:</text:p>
<text:p text:style-name="P35"><text:s text:c="2"/>Tiempo de entrega: <text:span text:style-name="T17"><text:placeholder text:placeholder-type="text" text:description="sale.description">&lt;sale.description&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P37"><text:s text:c="2"/>Tiempo de entrega: <text:span text:style-name="T17"><text:placeholder text:placeholder-type="text" text:description="sale.description">&lt;sale.description&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P36"><text:s text:c="2"/>Forma de pago: <text:span text:style-name="T17"><text:placeholder text:placeholder-type="text" text:description="sale.payment_term.name if sale.payment_term else &quot;&quot;">&lt;sale.payment_term.name if sale.payment_term else &quot;&quot;&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P81"><text:s text:c="2"/>Forma de pago:</text:p>
<text:p text:style-name="P34">Medios de pago:</text:p> <text:p text:style-name="P81"><text:s/><text:span text:style-name="T17"><text:placeholder text:placeholder-type="text" text:description="sale.payment_term.name if sale.payment_term else &quot;&quot;">&lt;sale.payment_term_description if sale.payment_term_description else &quot;&quot;&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P63"><text:span text:style-name="T23"><text:s text:c="2"/></text:span>Efectivo, Consignación o transferencia a la cuenta corriente Bancolombia # 053813599-86 a nombre de SMART VISION SAS</text:p> <text:p text:style-name="P36">Medios de pago:</text:p>
<text:p text:style-name="P34">DOCUMENTACIÓN ENTREGADA CON LOS EQUIPOS</text:p> <text:p text:style-name="P65"><text:span text:style-name="T23"><text:s text:c="2"/></text:span>Efectivo, Consignación o transferencia a la cuenta corriente Bancolombia # 053813599-86 a nombre de SMART VISION SAS</text:p>
<text:p text:style-name="P37"><text:s text:c="2"/>- Factura</text:p> <text:p text:style-name="P36">DOCUMENTACIÓN ENTREGADA CON LOS EQUIPOS</text:p>
<text:p text:style-name="P64"><text:s text:c="2"/>- Certificado de capacitación</text:p> <text:p text:style-name="P39"><text:s text:c="2"/>- Factura</text:p>
<text:p text:style-name="P64"><text:s text:c="2"/>- Manifiesto de importación (si aplica)</text:p> <text:p text:style-name="P66"><text:s text:c="2"/>- Certificado de capacitación</text:p>
<text:p text:style-name="P64"><text:s text:c="2"/>- Hoja de vida de cada equipo </text:p> <text:p text:style-name="P66"><text:s text:c="2"/>- Manifiesto de importación (si aplica)</text:p>
<text:p text:style-name="P64"><text:s text:c="2"/>- Certificado de calibración (Para equipos usados)</text:p> <text:p text:style-name="P66"><text:s text:c="2"/>- Hoja de vida de cada equipo </text:p>
<text:p text:style-name="P34">Otras condiciones:</text:p> <text:p text:style-name="P66"><text:s text:c="2"/>- Certificado de calibración (Para equipos usados)</text:p>
<text:p text:style-name="P63"><text:span text:style-name="T23"><text:s text:c="2"/></text:span>- El costo del envío es responsabilidad del comprador (para otras ciudades diferentes a <text:s text:c="2"/>Bogotá).</text:p> <text:p text:style-name="P36">Otras condiciones:</text:p>
<text:p text:style-name="P63"><text:span text:style-name="T23"><text:s text:c="2"/></text:span>- Garantía no incluye bombillos o piezas de desgaste por uso.</text:p> <text:p text:style-name="P65"><text:span text:style-name="T23"><text:s text:c="2"/></text:span>- El costo del envío es responsabilidad del comprador (para otras ciudades diferentes a <text:s text:c="2"/>Bogotá).</text:p>
<text:p text:style-name="P63"><text:span text:style-name="T23"><text:s text:c="2"/></text:span>- Con el envío de los equipos se entregarán las hojas de vida.</text:p> <text:p text:style-name="P65"><text:span text:style-name="T23"><text:s text:c="2"/></text:span>- Garantía no incluye bombillos o piezas de desgaste por uso.</text:p>
<text:p text:style-name="P62"><text:span text:style-name="T18"><text:s text:c="2"/></text:span><text:span text:style-name="T17">- La Factura de venta definitiva será entregada al confirmar el pago total.</text:span></text:p> <text:p text:style-name="P65"><text:span text:style-name="T23"><text:s text:c="2"/></text:span>- Con el envío de los equipos se entregarán las hojas de vida.</text:p>
<text:p text:style-name="P57"/> <text:p text:style-name="P64"><text:span text:style-name="T18"><text:s text:c="2"/></text:span><text:span text:style-name="T17">- La Factura de venta definitiva será entregada al confirmar el pago total.</text:span></text:p>
<text:p text:style-name="P57">OBSERVACIONES ADICIONALES</text:p> <text:p text:style-name="P59"/>
<text:p text:style-name="P59"><text:soft-page-break/><text:span text:style-name="T22"><text:s text:c="2"/>- </text:span><text:span text:style-name="T22"><text:placeholder text:placeholder-type="text" text:description="sale.comment">&lt;sale.comment&gt;</text:placeholder></text:span></text:p> <text:p text:style-name="P59"><text:soft-page-break/>OBSERVACIONES ADICIONALES</text:p>
<text:p text:style-name="P34"/> <text:p text:style-name="P61"><text:span text:style-name="T22"><text:s text:c="2"/>- </text:span><text:span text:style-name="T22"><text:placeholder text:placeholder-type="text" text:description="sale.comment">&lt;sale.comment&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P58">VIGENCIA DE LA COTIZACIÓN: <text:span text:style-name="T24">30 D</text:span><text:span text:style-name="T25">ías</text:span></text:p> <text:p text:style-name="P36"/>
<text:p text:style-name="P61">Cordialmente</text:p> <text:p text:style-name="P60">VIGENCIA DE LA COTIZACIÓN: <text:span text:style-name="T24">30 D</text:span><text:span text:style-name="T25">ías</text:span></text:p>
<text:p text:style-name="P63">Cordialmente</text:p>
<table:table table:name="Tabla3" table:style-name="Tabla3"> <table:table table:name="Tabla3" table:style-name="Tabla3">
<table:table-column table:style-name="Tabla3.A"/> <table:table-column table:style-name="Tabla3.A"/>
<table:table-column table:style-name="Tabla3.B"/> <table:table-column table:style-name="Tabla3.B"/>
@ -5211,8 +5211,8 @@
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
</table:table> </table:table>
<text:p text:style-name="P60"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p> <text:p text:style-name="P62"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p>
<text:p text:style-name="P60"><text:placeholder text:placeholder-type="text">&lt;/choose&gt;</text:placeholder></text:p> <text:p text:style-name="P62"><text:placeholder text:placeholder-type="text">&lt;/choose&gt;</text:placeholder></text:p>
<text:p text:style-name="P23"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p> <text:p text:style-name="P23"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
<text:p text:style-name="P20"/> <text:p text:style-name="P20"/>
<text:p text:style-name="P20"/> <text:p text:style-name="P20"/>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,19 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.spreadsheet"> <office:document xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.spreadsheet">
<office:meta><meta:creation-date>2015-03-21T09:18:00.143995121</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/7.4.6.2$Linux_X86_64 LibreOffice_project/40$Build-2</meta:generator><meta:document-statistic meta:table-count="1" meta:cell-count="45" meta:object-count="0"/></office:meta> <office:meta><meta:creation-date>2015-03-21T09:18:00.143995121</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/7.4.7.2$Linux_X86_64 LibreOffice_project/40$Build-2</meta:generator><meta:document-statistic meta:table-count="1" meta:cell-count="47" meta:object-count="0"/></office:meta>
<office:settings> <office:settings>
<config:config-item-set config:name="ooo:view-settings"> <config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="VisibleAreaTop" config:type="int">187</config:config-item> <config:config-item config:name="VisibleAreaTop" config:type="int">187</config:config-item>
<config:config-item config:name="VisibleAreaLeft" config:type="int">0</config:config-item> <config:config-item config:name="VisibleAreaLeft" config:type="int">0</config:config-item>
<config:config-item config:name="VisibleAreaWidth" config:type="int">30177</config:config-item> <config:config-item config:name="VisibleAreaWidth" config:type="int">31339</config:config-item>
<config:config-item config:name="VisibleAreaHeight" config:type="int">10797</config:config-item> <config:config-item config:name="VisibleAreaHeight" config:type="int">10797</config:config-item>
<config:config-item-map-indexed config:name="Views"> <config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry> <config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view1</config:config-item> <config:config-item config:name="ViewId" config:type="string">view1</config:config-item>
<config:config-item-map-named config:name="Tables"> <config:config-item-map-named config:name="Tables">
<config:config-item-map-entry config:name="Hoja1"> <config:config-item-map-entry config:name="Hoja1">
<config:config-item config:name="CursorPositionX" config:type="int">6</config:config-item> <config:config-item config:name="CursorPositionX" config:type="int">2</config:config-item>
<config:config-item config:name="CursorPositionY" config:type="int">12</config:config-item> <config:config-item config:name="CursorPositionY" config:type="int">12</config:config-item>
<config:config-item config:name="ActiveSplitRange" config:type="short">2</config:config-item> <config:config-item config:name="ActiveSplitRange" config:type="short">2</config:config-item>
<config:config-item config:name="PositionLeft" config:type="int">0</config:config-item> <config:config-item config:name="PositionLeft" config:type="int">0</config:config-item>
@ -22,7 +22,7 @@
<config:config-item config:name="PositionBottom" config:type="int">0</config:config-item> <config:config-item config:name="PositionBottom" config:type="int">0</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item> <config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ZoomValue" config:type="int">100</config:config-item> <config:config-item config:name="ZoomValue" config:type="int">100</config:config-item>
<config:config-item config:name="PageViewZoomValue" config:type="int">140</config:config-item> <config:config-item config:name="PageViewZoomValue" config:type="int">160</config:config-item>
<config:config-item config:name="ShowGrid" config:type="boolean">false</config:config-item> <config:config-item config:name="ShowGrid" config:type="boolean">false</config:config-item>
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item> <config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
</config:config-item-map-entry> </config:config-item-map-entry>
@ -31,7 +31,7 @@
<config:config-item config:name="HorizontalScrollbarWidth" config:type="int">1853</config:config-item> <config:config-item config:name="HorizontalScrollbarWidth" config:type="int">1853</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item> <config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ZoomValue" config:type="int">100</config:config-item> <config:config-item config:name="ZoomValue" config:type="int">100</config:config-item>
<config:config-item config:name="PageViewZoomValue" config:type="int">140</config:config-item> <config:config-item config:name="PageViewZoomValue" config:type="int">160</config:config-item>
<config:config-item config:name="ShowPageBreakPreview" config:type="boolean">true</config:config-item> <config:config-item config:name="ShowPageBreakPreview" config:type="boolean">true</config:config-item>
<config:config-item config:name="ShowZeroValues" config:type="boolean">true</config:config-item> <config:config-item config:name="ShowZeroValues" config:type="boolean">true</config:config-item>
<config:config-item config:name="ShowNotes" config:type="boolean">true</config:config-item> <config:config-item config:name="ShowNotes" config:type="boolean">true</config:config-item>
@ -564,25 +564,25 @@
<style:table-column-properties fo:break-before="auto" style:column-width="1.6429in"/> <style:table-column-properties fo:break-before="auto" style:column-width="1.6429in"/>
</style:style> </style:style>
<style:style style:name="co3" style:family="table-column"> <style:style style:name="co3" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="2.7in"/> <style:table-column-properties fo:break-before="auto" style:column-width="0.889in"/>
</style:style> </style:style>
<style:style style:name="co4" style:family="table-column"> <style:style style:name="co4" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="0.7638in"/> <style:table-column-properties fo:break-before="auto" style:column-width="2.2689in"/>
</style:style> </style:style>
<style:style style:name="co5" style:family="table-column"> <style:style style:name="co5" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="1.6764in"/> <style:table-column-properties fo:break-before="auto" style:column-width="0.7638in"/>
</style:style> </style:style>
<style:style style:name="co6" style:family="table-column"> <style:style style:name="co6" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="1.2189in"/> <style:table-column-properties fo:break-before="auto" style:column-width="1.6764in"/>
</style:style> </style:style>
<style:style style:name="co7" style:family="table-column"> <style:style style:name="co7" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="1.1902in"/> <style:table-column-properties fo:break-before="auto" style:column-width="1.2189in"/>
</style:style> </style:style>
<style:style style:name="co8" style:family="table-column"> <style:style style:name="co8" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="0.6992in"/> <style:table-column-properties fo:break-before="auto" style:column-width="1.1902in"/>
</style:style> </style:style>
<style:style style:name="co9" style:family="table-column"> <style:style style:name="co9" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="0.889in"/> <style:table-column-properties fo:break-before="auto" style:column-width="0.6992in"/>
</style:style> </style:style>
<style:style style:name="ro1" style:family="table-row"> <style:style style:name="ro1" style:family="table-row">
<style:table-row-properties style:row-height="0.0736in" fo:break-before="auto" style:use-optimal-row-height="false"/> <style:table-row-properties style:row-height="0.0736in" fo:break-before="auto" style:use-optimal-row-height="false"/>
@ -602,9 +602,6 @@
<style:style style:name="ro6" style:family="table-row"> <style:style style:name="ro6" style:family="table-row">
<style:table-row-properties style:row-height="0.148in" fo:break-before="auto" style:use-optimal-row-height="false"/> <style:table-row-properties style:row-height="0.148in" fo:break-before="auto" style:use-optimal-row-height="false"/>
</style:style> </style:style>
<style:style style:name="ro7" style:family="table-row">
<style:table-row-properties style:row-height="0.178in" fo:break-before="auto" style:use-optimal-row-height="true"/>
</style:style>
<style:style style:name="ta1" style:family="table" style:master-page-name="Default"> <style:style style:name="ta1" style:family="table" style:master-page-name="Default">
<style:table-properties table:display="true" style:writing-mode="lr-tb"/> <style:table-properties table:display="true" style:writing-mode="lr-tb"/>
</style:style> </style:style>
@ -677,7 +674,7 @@
<style:table-cell-properties fo:background-color="#cfe7f5" style:vertical-align="middle"/> <style:table-cell-properties fo:background-color="#cfe7f5" style:vertical-align="middle"/>
<style:text-properties fo:color="#333333" style:font-name="DejaVu Sans" fo:font-size="9pt" style:font-size-asian="9pt" style:font-size-complex="9pt"/> <style:text-properties fo:color="#333333" style:font-name="DejaVu Sans" fo:font-size="9pt" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style> </style:style>
<style:style style:name="ce88" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000"> <style:style style:name="ce7" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/> <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0in"/> <style:paragraph-properties fo:text-align="start" fo:margin-left="0in"/>
<style:text-properties fo:color="#000000" style:font-name="DejaVu Sans" fo:font-size="7pt" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt"/> <style:text-properties fo:color="#000000" style:font-name="DejaVu Sans" fo:font-size="7pt" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt"/>
@ -692,12 +689,12 @@
<style:paragraph-properties fo:text-align="start" fo:margin-left="0in"/> <style:paragraph-properties fo:text-align="start" fo:margin-left="0in"/>
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/> <style:text-properties style:font-name="DejaVu Sans" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style> </style:style>
<style:style style:name="ce10" style:family="table-cell" style:parent-style-name="Default"> <style:style style:name="ce11" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties fo:background-color="#eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border="0.06pt solid #ffffff" style:vertical-align="middle"/> <style:table-cell-properties fo:background-color="#eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border="0.06pt solid #ffffff" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="center" fo:margin-left="0in"/> <style:paragraph-properties fo:text-align="center" fo:margin-left="0in"/>
<style:text-properties fo:color="#1c1c1c" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="6pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="6pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/> <style:text-properties fo:color="#1c1c1c" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="6pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="6pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
</style:style> </style:style>
<style:style style:name="ce11" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N36"> <style:style style:name="ce12" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N36">
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/> <style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0in"/> <style:paragraph-properties fo:text-align="start" fo:margin-left="0in"/>
<style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:language="es" fo:country="CO" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/> <style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:language="es" fo:country="CO" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
@ -707,7 +704,7 @@
<style:paragraph-properties fo:text-align="start" fo:margin-left="0in"/> <style:paragraph-properties fo:text-align="start" fo:margin-left="0in"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="11pt" style:font-size-asian="11pt" style:font-size-complex="11pt"/> <style:text-properties style:font-name="Liberation Sans" fo:font-size="11pt" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
</style:style> </style:style>
<style:style style:name="ce13" style:family="table-cell" style:parent-style-name="Default"> <style:style style:name="ce14" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" style:vertical-align="middle"/> <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0in"/> <style:paragraph-properties fo:text-align="start" fo:margin-left="0in"/>
<style:text-properties fo:color="#666666" style:font-name="DejaVu Sans Condensed" fo:font-size="9pt" fo:font-weight="bold" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/> <style:text-properties fo:color="#666666" style:font-name="DejaVu Sans Condensed" fo:font-size="9pt" fo:font-weight="bold" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
@ -732,7 +729,7 @@
<style:paragraph-properties fo:text-align="end" fo:margin-left="0in"/> <style:paragraph-properties fo:text-align="end" fo:margin-left="0in"/>
<style:text-properties fo:color="#666666" style:font-name="DejaVu Sans" fo:font-size="9pt" fo:font-weight="normal" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="9pt" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="9pt" style:font-weight-complex="normal"/> <style:text-properties fo:color="#666666" style:font-name="DejaVu Sans" fo:font-size="9pt" fo:font-weight="normal" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="9pt" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="9pt" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="ce18" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000"> <style:style style:name="ce19" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/> <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0in"/> <style:paragraph-properties fo:text-align="start" fo:margin-left="0in"/>
<style:text-properties fo:color="#333333" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:font-weight="bold" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-weight-asian="bold" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt" style:font-weight-complex="bold"/> <style:text-properties fo:color="#333333" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:font-weight="bold" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-weight-asian="bold" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt" style:font-weight-complex="bold"/>
@ -756,7 +753,7 @@
<style:paragraph-properties fo:text-align="end" fo:margin-left="0in"/> <style:paragraph-properties fo:text-align="end" fo:margin-left="0in"/>
<style:text-properties fo:color="#666666" style:font-name="DejaVu Sans Condensed" fo:font-size="9pt" fo:font-weight="normal" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="9pt" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="9pt" style:font-weight-complex="normal"/> <style:text-properties fo:color="#666666" style:font-name="DejaVu Sans Condensed" fo:font-size="9pt" fo:font-weight="normal" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="9pt" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="9pt" style:font-weight-complex="normal"/>
</style:style> </style:style>
<style:style style:name="ce23" style:family="table-cell" style:parent-style-name="Default"> <style:style style:name="ce24" style:family="table-cell" style:parent-style-name="Default">
<style:text-properties style:font-name="DejaVu Sans Condensed" fo:font-size="9pt" style:font-size-asian="9pt" style:font-size-complex="9pt"/> <style:text-properties style:font-name="DejaVu Sans Condensed" fo:font-size="9pt" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style> </style:style>
<style:style style:name="ce108" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000"> <style:style style:name="ce108" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
@ -899,7 +896,7 @@
</office:master-styles> </office:master-styles>
<office:body> <office:body>
<office:spreadsheet> <office:spreadsheet>
<table:table table:name="Hoja1" table:style-name="ta1" table:print-ranges="Hoja1.A1:Hoja1.H22"> <table:table table:name="Hoja1" table:style-name="ta1" table:print-ranges="Hoja1.A1:Hoja1.I22">
<office:forms form:automatic-focus="false" form:apply-design-mode="false"> <office:forms form:automatic-focus="false" form:apply-design-mode="false">
<form:form form:name="Formulario" form:apply-filter="true" form:command-type="table" form:control-implementation="ooo:com.sun.star.form.component.Form" office:target-frame=""> <form:form form:name="Formulario" form:apply-filter="true" form:command-type="table" form:control-implementation="ooo:com.sun.star.form.component.Form" office:target-frame="">
<form:properties> <form:properties>
@ -914,12 +911,13 @@
<table:table-column table:style-name="co4" table:default-cell-style-name="ce93"/> <table:table-column table:style-name="co4" table:default-cell-style-name="ce93"/>
<table:table-column table:style-name="co5" table:default-cell-style-name="ce93"/> <table:table-column table:style-name="co5" table:default-cell-style-name="ce93"/>
<table:table-column table:style-name="co6" table:default-cell-style-name="ce93"/> <table:table-column table:style-name="co6" table:default-cell-style-name="ce93"/>
<table:table-column table:style-name="co6" table:default-cell-style-name="ce130"/> <table:table-column table:style-name="co7" table:default-cell-style-name="ce93"/>
<table:table-column table:style-name="co7" table:default-cell-style-name="ce130"/> <table:table-column table:style-name="co7" table:default-cell-style-name="ce130"/>
<table:table-column table:style-name="co8" table:default-cell-style-name="Default"/> <table:table-column table:style-name="co8" table:default-cell-style-name="ce130"/>
<table:table-column table:style-name="co9" table:number-columns-repeated="56" table:default-cell-style-name="ce130"/> <table:table-column table:style-name="co9" table:default-cell-style-name="Default"/>
<table:table-column table:style-name="co3" table:number-columns-repeated="56" table:default-cell-style-name="ce130"/>
<table:table-row table:style-name="ro1"> <table:table-row table:style-name="ro1">
<table:table-cell table:style-name="ce82" table:number-columns-repeated="7"/> <table:table-cell table:style-name="ce82" table:number-columns-repeated="8"/>
<table:table-cell table:style-name="ce131"/> <table:table-cell table:style-name="ce131"/>
<table:table-cell table:number-columns-repeated="57"/> <table:table-cell table:number-columns-repeated="57"/>
</table:table-row> </table:table-row>
@ -927,11 +925,11 @@
<table:table-cell table:style-name="ce83" office:value-type="string" calcext:value-type="string"> <table:table-cell table:style-name="ce83" office:value-type="string" calcext:value-type="string">
<text:p>Nombre:</text:p> <text:p>Nombre:</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="ce13" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://company.rec_name" xlink:type="simple">company.rec_name</text:a></text:p> <table:table-cell table:style-name="ce14" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://company.rec_name" xlink:type="simple">company.rec_name</text:a></text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="ce13"/> <table:table-cell table:style-name="ce14" table:number-columns-repeated="2"/>
<table:table-cell table:style-name="ce110" table:number-columns-repeated="3"/> <table:table-cell table:style-name="ce110" table:number-columns-repeated="3"/>
<table:table-cell table:style-name="ce23"/> <table:table-cell table:style-name="ce24"/>
<table:table-cell table:style-name="ce133"/> <table:table-cell table:style-name="ce133"/>
<table:table-cell table:number-columns-repeated="57"/> <table:table-cell table:number-columns-repeated="57"/>
</table:table-row> </table:table-row>
@ -939,10 +937,10 @@
<table:table-cell table:style-name="ce83" office:value-type="string" calcext:value-type="string"> <table:table-cell table:style-name="ce83" office:value-type="string" calcext:value-type="string">
<text:p>NIT / C.C.:</text:p> <text:p>NIT / C.C.:</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="ce13" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://company.party.identifiers%20and%20company.party.identifiers[0].code" xlink:type="simple">company.party.identifiers and company.party.identifiers[0].code</text:a></text:p> <table:table-cell table:style-name="ce14" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://company.party.identifiers%20and%20company.party.identifiers[0].code" xlink:type="simple">company.party.identifiers and company.party.identifiers[0].code</text:a></text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="ce13"/> <table:table-cell table:style-name="ce14" table:number-columns-repeated="2"/>
<table:table-cell table:style-name="ce23"/> <table:table-cell table:style-name="ce24"/>
<table:table-cell table:style-name="ce110" table:number-columns-repeated="3"/> <table:table-cell table:style-name="ce110" table:number-columns-repeated="3"/>
<table:table-cell table:style-name="ce135"/> <table:table-cell table:style-name="ce135"/>
<table:table-cell table:number-columns-repeated="57"/> <table:table-cell table:number-columns-repeated="57"/>
@ -951,22 +949,23 @@
<table:table-cell table:style-name="ce83" office:value-type="string" calcext:value-type="string"> <table:table-cell table:style-name="ce83" office:value-type="string" calcext:value-type="string">
<text:p>Dirección:</text:p> <text:p>Dirección:</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="ce13" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://company.party.address_get().full_address" xlink:type="simple">company.party.address_get().full_address</text:a></text:p> <table:table-cell table:style-name="ce14" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://company.party.address_get().full_address" xlink:type="simple">company.party.address_get().full_address</text:a></text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="ce14"/>
<table:table-cell table:style-name="ce105" office:value-type="string" calcext:value-type="string"> <table:table-cell table:style-name="ce105" office:value-type="string" calcext:value-type="string">
<text:p>Teléfono:</text:p> <text:p>Teléfono:</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="ce13" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1"><text:p><text:a xlink:href="relatorio://company.party.get_contact_mechanism(&apos;phone&apos;)" xlink:type="simple">company.party.get_contact_mechanism(&apos;phone&apos;)</text:a></text:p> <table:table-cell table:style-name="ce14" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1"><text:p><text:a xlink:href="relatorio://company.party.get_contact_mechanism(&apos;phone&apos;)" xlink:type="simple">company.party.get_contact_mechanism(&apos;phone&apos;)</text:a></text:p>
</table:table-cell> </table:table-cell>
<table:covered-table-cell table:style-name="ce23"/> <table:covered-table-cell table:style-name="ce24"/>
<table:table-cell table:style-name="ce23" table:number-columns-repeated="2"/> <table:table-cell table:style-name="ce24" table:number-columns-repeated="2"/>
<table:table-cell table:style-name="ce133"/> <table:table-cell table:style-name="ce133"/>
<table:table-cell table:number-columns-repeated="57"/> <table:table-cell table:number-columns-repeated="57"/>
</table:table-row> </table:table-row>
<table:table-row table:style-name="ro4"> <table:table-row table:style-name="ro4">
<table:table-cell table:style-name="ce84"/> <table:table-cell table:style-name="ce84"/>
<table:table-cell table:style-name="ce95"/> <table:table-cell table:style-name="ce95" table:number-columns-repeated="2"/>
<table:table-cell table:style-name="ce23" table:number-columns-repeated="2"/> <table:table-cell table:style-name="ce24" table:number-columns-repeated="2"/>
<table:table-cell table:style-name="Default"/> <table:table-cell table:style-name="Default"/>
<table:table-cell table:style-name="ce118"/> <table:table-cell table:style-name="ce118"/>
<table:table-cell table:style-name="ce118" office:value-type="string" calcext:value-type="string"> <table:table-cell table:style-name="ce118" office:value-type="string" calcext:value-type="string">
@ -982,6 +981,7 @@
<table:table-cell table:style-name="ce96" office:value-type="string" calcext:value-type="string"> <table:table-cell table:style-name="ce96" office:value-type="string" calcext:value-type="string">
<text:p>ESTADO DE CUENTAS POR TERCERO</text:p> <text:p>ESTADO DE CUENTAS POR TERCERO</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="ce96"/>
<table:table-cell table:style-name="Default" table:number-columns-repeated="3"/> <table:table-cell table:style-name="Default" table:number-columns-repeated="3"/>
<table:table-cell table:style-name="ce120"/> <table:table-cell table:style-name="ce120"/>
<table:table-cell table:style-name="ce120" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://start_period" xlink:type="simple">start_period</text:a></text:p> <table:table-cell table:style-name="ce120" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://start_period" xlink:type="simple">start_period</text:a></text:p>
@ -993,7 +993,7 @@
<table:table-row table:style-name="ro6"> <table:table-row table:style-name="ro6">
<table:table-cell table:style-name="ce5" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://for%20each=&apos;record%20in%20records&apos;" xlink:type="simple">for each=&apos;record in records&apos;</text:a></text:p> <table:table-cell table:style-name="ce5" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://for%20each=&apos;record%20in%20records&apos;" xlink:type="simple">for each=&apos;record in records&apos;</text:a></text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="ce97" table:number-columns-repeated="2"/> <table:table-cell table:style-name="ce97" table:number-columns-repeated="3"/>
<table:table-cell table:style-name="ce111" table:number-columns-repeated="3"/> <table:table-cell table:style-name="ce111" table:number-columns-repeated="3"/>
<table:table-cell table:style-name="Default" table:number-columns-repeated="2"/> <table:table-cell table:style-name="Default" table:number-columns-repeated="2"/>
<table:table-cell table:number-columns-repeated="57"/> <table:table-cell table:number-columns-repeated="57"/>
@ -1003,6 +1003,7 @@
<table:table-cell table:style-name="ce98" office:value-type="string" calcext:value-type="string"> <table:table-cell table:style-name="ce98" office:value-type="string" calcext:value-type="string">
<text:p>ID:</text:p> <text:p>ID:</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="ce98"/>
<table:table-cell table:style-name="ce108" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://record[&apos;id_number&apos;]%20or%20&apos;&apos;" xlink:type="simple">record[&apos;id_number&apos;] or &apos;&apos;</text:a></text:p> <table:table-cell table:style-name="ce108" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://record[&apos;id_number&apos;]%20or%20&apos;&apos;" xlink:type="simple">record[&apos;id_number&apos;] or &apos;&apos;</text:a></text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="ce112" office:value-type="string" calcext:value-type="string"> <table:table-cell table:style-name="ce112" office:value-type="string" calcext:value-type="string">
@ -1017,7 +1018,7 @@
<table:table-row table:style-name="ro4"> <table:table-row table:style-name="ro4">
<table:table-cell table:style-name="ce5" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://for%20each=&apos;sale%20in%20record[&apos;sales&apos;]&apos;" xlink:type="simple">for each=&apos;sale in record[&apos;sales&apos;]&apos;</text:a></text:p> <table:table-cell table:style-name="ce5" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://for%20each=&apos;sale%20in%20record[&apos;sales&apos;]&apos;" xlink:type="simple">for each=&apos;sale in record[&apos;sales&apos;]&apos;</text:a></text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="ce18" table:number-columns-repeated="2"/> <table:table-cell table:style-name="ce19" table:number-columns-repeated="3"/>
<table:table-cell table:style-name="ce113"/> <table:table-cell table:style-name="ce113"/>
<table:table-cell table:style-name="ce115" table:number-columns-repeated="2"/> <table:table-cell table:style-name="ce115" table:number-columns-repeated="2"/>
<table:table-cell table:style-name="ce125"/> <table:table-cell table:style-name="ce125"/>
@ -1025,8 +1026,8 @@
<table:table-cell table:number-columns-repeated="57"/> <table:table-cell table:number-columns-repeated="57"/>
</table:table-row> </table:table-row>
<table:table-row table:style-name="ro4"> <table:table-row table:style-name="ro4">
<table:table-cell table:style-name="ce88" table:number-columns-spanned="3" table:number-rows-spanned="1"/> <table:table-cell table:style-name="ce7" table:number-columns-spanned="4" table:number-rows-spanned="1"/>
<table:covered-table-cell table:number-columns-repeated="2" table:style-name="ce18"/> <table:covered-table-cell table:number-columns-repeated="3" table:style-name="ce19"/>
<table:table-cell table:style-name="ce113"/> <table:table-cell table:style-name="ce113"/>
<table:table-cell table:style-name="ce115" table:number-columns-repeated="2"/> <table:table-cell table:style-name="ce115" table:number-columns-repeated="2"/>
<table:table-cell table:style-name="ce125"/> <table:table-cell table:style-name="ce125"/>
@ -1037,9 +1038,10 @@
<table:table-cell table:style-name="ce89" office:value-type="string" calcext:value-type="string"> <table:table-cell table:style-name="ce89" office:value-type="string" calcext:value-type="string">
<text:p>Orden de <text:s/>Venta #:</text:p> <text:p>Orden de <text:s/>Venta #:</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="ce11" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://sale.number" xlink:type="simple">sale.number</text:a></text:p> <table:table-cell table:style-name="ce12" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://sale.number" xlink:type="simple">sale.number</text:a></text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="ce18"/> <table:table-cell table:style-name="ce12"/>
<table:table-cell table:style-name="ce19"/>
<table:table-cell table:style-name="ce113"/> <table:table-cell table:style-name="ce113"/>
<table:table-cell table:style-name="ce115" table:number-columns-repeated="2"/> <table:table-cell table:style-name="ce115" table:number-columns-repeated="2"/>
<table:table-cell table:style-name="ce125"/> <table:table-cell table:style-name="ce125"/>
@ -1048,7 +1050,7 @@
</table:table-row> </table:table-row>
<table:table-row table:style-name="ro4"> <table:table-row table:style-name="ro4">
<table:table-cell table:style-name="ce90"/> <table:table-cell table:style-name="ce90"/>
<table:table-cell table:style-name="ce18" table:number-columns-repeated="2"/> <table:table-cell table:style-name="ce19" table:number-columns-repeated="3"/>
<table:table-cell table:style-name="ce113"/> <table:table-cell table:style-name="ce113"/>
<table:table-cell table:style-name="ce115" table:number-columns-repeated="2"/> <table:table-cell table:style-name="ce115" table:number-columns-repeated="2"/>
<table:table-cell table:style-name="ce125"/> <table:table-cell table:style-name="ce125"/>
@ -1056,20 +1058,23 @@
<table:table-cell table:number-columns-repeated="57"/> <table:table-cell table:number-columns-repeated="57"/>
</table:table-row> </table:table-row>
<table:table-row table:style-name="ro4"> <table:table-row table:style-name="ro4">
<table:table-cell table:style-name="ce10" office:value-type="string" calcext:value-type="string"> <table:table-cell table:style-name="ce11" office:value-type="string" calcext:value-type="string">
<text:p>FECHA</text:p> <text:p>FECHA</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="ce101" office:value-type="string" calcext:value-type="string"> <table:table-cell table:style-name="ce101" office:value-type="string" calcext:value-type="string">
<text:p>No DOC</text:p> <text:p>No DOC</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="ce10" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1"> <table:table-cell table:style-name="ce101" office:value-type="string" calcext:value-type="string">
<text:p>Número</text:p>
</table:table-cell>
<table:table-cell table:style-name="ce11" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1">
<text:p>DESCRIPCIÓN</text:p> <text:p>DESCRIPCIÓN</text:p>
</table:table-cell> </table:table-cell>
<table:covered-table-cell table:style-name="ce10"/> <table:covered-table-cell table:style-name="ce11"/>
<table:table-cell table:style-name="ce10" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1"> <table:table-cell table:style-name="ce11" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1">
<text:p>METODO DE PAGO</text:p> <text:p>METODO DE PAGO</text:p>
</table:table-cell> </table:table-cell>
<table:covered-table-cell table:style-name="ce10"/> <table:covered-table-cell table:style-name="ce11"/>
<table:table-cell table:style-name="ce126" office:value-type="string" calcext:value-type="string"> <table:table-cell table:style-name="ce126" office:value-type="string" calcext:value-type="string">
<text:p>VENTA</text:p> <text:p>VENTA</text:p>
</table:table-cell> </table:table-cell>
@ -1081,14 +1086,15 @@
<table:table-cell table:number-columns-repeated="54"/> <table:table-cell table:number-columns-repeated="54"/>
</table:table-row> </table:table-row>
<table:table-row table:style-name="ro4"> <table:table-row table:style-name="ro4">
<table:table-cell table:style-name="ce11" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://sale.sale_date" xlink:type="simple">sale.sale_date</text:a></text:p> <table:table-cell table:style-name="ce12" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://sale.sale_date" xlink:type="simple">sale.sale_date</text:a></text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="ce11" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://sale.number" xlink:type="simple">sale.number</text:a></text:p> <table:table-cell table:style-name="ce12" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://sale.number" xlink:type="simple">sale.number</text:a></text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="ce12"/>
<table:table-cell table:style-name="ce109" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1"><text:p><text:a xlink:href="relatorio://sale.reference" xlink:type="simple">sale.reference</text:a></text:p> <table:table-cell table:style-name="ce109" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1"><text:p><text:a xlink:href="relatorio://sale.reference" xlink:type="simple">sale.reference</text:a></text:p>
</table:table-cell> </table:table-cell>
<table:covered-table-cell table:style-name="ce11"/> <table:covered-table-cell table:style-name="ce12"/>
<table:table-cell table:style-name="ce11" table:number-columns-repeated="2"/> <table:table-cell table:style-name="ce12" table:number-columns-repeated="2"/>
<table:table-cell table:style-name="ce127" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://sale.total_amount" xlink:type="simple">sale.total_amount</text:a></text:p> <table:table-cell table:style-name="ce127" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://sale.total_amount" xlink:type="simple">sale.total_amount</text:a></text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="ce127" office:value-type="currency" office:currency="COP" office:value="0" calcext:value-type="currency"> <table:table-cell table:style-name="ce127" office:value-type="currency" office:currency="COP" office:value="0" calcext:value-type="currency">
@ -1101,15 +1107,17 @@
<table:table-row table:style-name="ro4"> <table:table-row table:style-name="ro4">
<table:table-cell table:style-name="ce5" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://for%20each=&apos;payment%20in%20sale.payments&apos;" xlink:type="simple">for each=&apos;payment in sale.payments&apos;</text:a></text:p> <table:table-cell table:style-name="ce5" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://for%20each=&apos;payment%20in%20sale.payments&apos;" xlink:type="simple">for each=&apos;payment in sale.payments&apos;</text:a></text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="ce11" table:number-columns-repeated="7"/> <table:table-cell table:style-name="ce12" table:number-columns-repeated="8"/>
<table:table-cell/> <table:table-cell/>
<table:table-cell table:style-name="Default" table:number-columns-repeated="2"/> <table:table-cell table:style-name="Default" table:number-columns-repeated="2"/>
<table:table-cell table:number-columns-repeated="54"/> <table:table-cell table:number-columns-repeated="54"/>
</table:table-row> </table:table-row>
<table:table-row table:style-name="ro4"> <table:table-row table:style-name="ro4">
<table:table-cell table:style-name="ce11" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://payment.date" xlink:type="simple">payment.date</text:a></text:p> <table:table-cell table:style-name="ce12" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://payment.date" xlink:type="simple">payment.date</text:a></text:p>
</table:table-cell>
<table:table-cell table:style-name="ce12"/>
<table:table-cell table:style-name="ce12" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://payment.id" xlink:type="simple">payment.id</text:a></text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="ce11"/>
<table:table-cell table:style-name="ce109" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1"><text:p><text:a xlink:href="relatorio://payment.description" xlink:type="simple">payment.description</text:a></text:p> <table:table-cell table:style-name="ce109" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1"><text:p><text:a xlink:href="relatorio://payment.description" xlink:type="simple">payment.description</text:a></text:p>
</table:table-cell> </table:table-cell>
<table:covered-table-cell table:style-name="ce5"/> <table:covered-table-cell table:style-name="ce5"/>
@ -1128,14 +1136,14 @@
<table:table-row table:style-name="ro4"> <table:table-row table:style-name="ro4">
<table:table-cell table:style-name="ce90" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio:///for" xlink:type="simple">/for</text:a></text:p> <table:table-cell table:style-name="ce90" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio:///for" xlink:type="simple">/for</text:a></text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Default" table:number-columns-repeated="7"/> <table:table-cell table:style-name="Default" table:number-columns-repeated="8"/>
<table:table-cell table:style-name="ce137"/> <table:table-cell table:style-name="ce137"/>
<table:table-cell table:style-name="Default" table:number-columns-repeated="2"/> <table:table-cell table:style-name="Default" table:number-columns-repeated="2"/>
<table:table-cell table:number-columns-repeated="54"/> <table:table-cell table:number-columns-repeated="54"/>
</table:table-row> </table:table-row>
<table:table-row table:style-name="ro4"> <table:table-row table:style-name="ro4">
<table:table-cell table:style-name="Default"/> <table:table-cell table:style-name="Default"/>
<table:table-cell table:style-name="ce102" table:number-columns-repeated="2"/> <table:table-cell table:style-name="ce102" table:number-columns-repeated="3"/>
<table:table-cell table:style-name="ce114" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1"> <table:table-cell table:style-name="ce114" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1">
<text:p>SALDO (VENTA ABONOS)</text:p> <text:p>SALDO (VENTA ABONOS)</text:p>
</table:table-cell> </table:table-cell>
@ -1150,7 +1158,7 @@
</table:table-row> </table:table-row>
<table:table-row table:style-name="ro4"> <table:table-row table:style-name="ro4">
<table:table-cell table:style-name="Default"/> <table:table-cell table:style-name="Default"/>
<table:table-cell table:style-name="ce103" table:number-columns-repeated="3"/> <table:table-cell table:style-name="ce103" table:number-columns-repeated="4"/>
<table:table-cell table:style-name="ce117" table:number-columns-repeated="2"/> <table:table-cell table:style-name="ce117" table:number-columns-repeated="2"/>
<table:table-cell table:style-name="ce129"/> <table:table-cell table:style-name="ce129"/>
<table:table-cell table:number-columns-repeated="58"/> <table:table-cell table:number-columns-repeated="58"/>
@ -1158,11 +1166,11 @@
<table:table-row table:style-name="ro4"> <table:table-row table:style-name="ro4">
<table:table-cell table:style-name="ce90" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio:///for" xlink:type="simple">/for</text:a></text:p> <table:table-cell table:style-name="ce90" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio:///for" xlink:type="simple">/for</text:a></text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:number-columns-repeated="64"/> <table:table-cell table:number-columns-repeated="65"/>
</table:table-row> </table:table-row>
<table:table-row table:style-name="ro4"> <table:table-row table:style-name="ro4">
<table:table-cell table:style-name="ce90"/> <table:table-cell table:style-name="ce90"/>
<table:table-cell table:number-columns-repeated="2"/> <table:table-cell table:number-columns-repeated="3"/>
<table:table-cell table:style-name="ce114" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1"> <table:table-cell table:style-name="ce114" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1">
<text:p>SALDO X COBRAR</text:p> <text:p>SALDO X COBRAR</text:p>
</table:table-cell> </table:table-cell>
@ -1176,24 +1184,21 @@
<table:table-row table:style-name="ro4"> <table:table-row table:style-name="ro4">
<table:table-cell table:style-name="ce90" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio:///for" xlink:type="simple">/for</text:a></text:p> <table:table-cell table:style-name="ce90" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio:///for" xlink:type="simple">/for</text:a></text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:number-columns-repeated="64"/> <table:table-cell table:number-columns-repeated="65"/>
</table:table-row> </table:table-row>
<table:table-row table:style-name="ro4"> <table:table-row table:style-name="ro4">
<table:table-cell table:number-columns-repeated="2"/> <table:table-cell table:number-columns-repeated="3"/>
<table:table-cell table:style-name="Default"/> <table:table-cell table:style-name="Default"/>
<table:table-cell table:number-columns-repeated="3"/> <table:table-cell table:number-columns-repeated="3"/>
<table:table-cell table:style-name="Default" table:number-columns-spanned="2" table:number-rows-spanned="1"/> <table:table-cell table:style-name="Default" table:number-columns-spanned="2" table:number-rows-spanned="1"/>
<table:covered-table-cell table:style-name="ce136"/> <table:covered-table-cell table:style-name="ce136"/>
<table:table-cell table:number-columns-repeated="57"/> <table:table-cell table:number-columns-repeated="57"/>
</table:table-row> </table:table-row>
<table:table-row table:style-name="ro4" table:number-rows-repeated="1048531"> <table:table-row table:style-name="ro4" table:number-rows-repeated="1048552">
<table:table-cell table:number-columns-repeated="65"/> <table:table-cell table:number-columns-repeated="66"/>
</table:table-row> </table:table-row>
<table:table-row table:style-name="ro7" table:number-rows-repeated="21"> <table:table-row table:style-name="ro4">
<table:table-cell table:number-columns-repeated="65"/> <table:table-cell table:number-columns-repeated="66"/>
</table:table-row>
<table:table-row table:style-name="ro7">
<table:table-cell table:number-columns-repeated="65"/>
</table:table-row> </table:table-row>
</table:table> </table:table>
<table:named-expressions/> <table:named-expressions/>

118
sale.py
View File

@ -28,11 +28,11 @@ class Sale(metaclass=PoolMeta):
('preventive', 'Preventive'), ('preventive', 'Preventive'),
('corrective', 'Corrective') ('corrective', 'Corrective')
], "Maintenance Type", ], "Maintenance Type",
states={ states={
'invisible': Eval('sale_type') != "maintenance", 'invisible': Eval('sale_type') != "maintenance",
'required': Eval('sale_type') == "maintenance", 'required': Eval('sale_type') == "maintenance",
'readonly': Eval('state') != 'draft'}, 'readonly': Eval('state') != 'draft'},
depends=['sale_type']) depends=['sale_type'])
contract_ref = fields.Reference("Contract Base", selection='get_origin_contract', contract_ref = fields.Reference("Contract Base", selection='get_origin_contract',
domain={'optical_equipment.contract': [ domain={'optical_equipment.contract': [
@ -41,44 +41,44 @@ class Sale(metaclass=PoolMeta):
]}, ]},
states={'invisible': (Eval('sale_type') != 'maintenance')}, states={'invisible': (Eval('sale_type') != 'maintenance')},
search_context={ search_context={
'related_party': Eval('party'), 'related_party': Eval('party'),
},) },)
agended = fields.Boolean("Scheduling",states={ agended = fields.Boolean("Scheduling", states={
'invisible': (Eval('sale_type') != 'maintenance'), 'invisible': (Eval('sale_type') != 'maintenance')})
'readonly': True}) payment_term_description = fields.Char("Payment Term", states={
'readonly': Eval('state') != 'draft',
}, depends=['state'])
@classmethod @classmethod
def __setup__(cls): def __setup__(cls):
super(Sale, cls).__setup__() super(Sale, cls).__setup__()
cls.contact.states['required']=True cls.contact.states['required'] = True
cls.description.states['required']=True cls.description.states['required'] = True
cls.sale_date.states['required']=True cls.sale_date.states['required'] = True
cls.payment_term.states['required']=True
cls._buttons.update({ cls._buttons.update({
'draft': { 'draft': {
'invisible': (Eval('state').in_( 'invisible': (Eval('state').in_(
['cancelled', 'draft']))}, ['cancelled', 'draft']))},
'report': {}}) 'report': {}})
cls._transitions |= set(( cls._transitions |= set((
('draft', 'quotation'), ('draft', 'quotation'),
('quotation', 'confirmed'), ('quotation', 'confirmed'),
('confirmed', 'processing'), ('confirmed', 'processing'),
('confirmed', 'draft'), ('confirmed', 'draft'),
('processing', 'processing'), ('processing', 'processing'),
('processing', 'done'), ('processing', 'done'),
('done', 'processing'), ('done', 'processing'),
('draft', 'cancelled'), ('draft', 'cancelled'),
('quotation', 'cancelled'), ('quotation', 'cancelled'),
('quotation', 'draft'), ('quotation', 'draft'),
('cancelled', 'draft'), ('cancelled', 'draft'),
('processing', 'draft') ('processing', 'draft')
)) ))
@fields.depends('lines', 'sale_type', 'agended') @fields.depends('lines', 'sale_type', 'agended')
def on_chage_sale_type(self): def on_chage_sale_type(self):
self.lines= [] self.lines = []
if self.sale_type != "maintenance": if self.sale_type != "maintenance":
self.agended = False self.agended = False
elif self.sale_type == "maintenance": elif self.sale_type == "maintenance":
@ -87,7 +87,7 @@ class Sale(metaclass=PoolMeta):
@classmethod @classmethod
def default_agended(self): def default_agended(self):
return False return False
@classmethod @classmethod
def _get_origin_contract(cls): def _get_origin_contract(cls):
'Return list of Model names for origin Reference' 'Return list of Model names for origin Reference'
@ -96,12 +96,11 @@ class Sale(metaclass=PoolMeta):
return [Contract.__name__] return [Contract.__name__]
@classmethod @classmethod
def get_origin_contract(cls): def get_origin_contract(cls):
Model = Pool().get('ir.model') Model = Pool().get('ir.model')
get_name = Model.get_name get_name = Model.get_name
models = cls._get_origin_contract() models = cls._get_origin_contract()
return [(None, '')] + [(m, get_name(m)) for m in models] return [(None, '')] + [(m, get_name(m)) for m in models]
@ -112,7 +111,7 @@ class Sale(metaclass=PoolMeta):
'company': self.company, 'company': self.company,
'sale_type': self.sale_type, 'sale_type': self.sale_type,
'service_maintenance_initial': True if self.sale_type != 'equipments' else False, 'service_maintenance_initial': True if self.sale_type != 'equipments' else False,
} }
values.update(dict(key)) values.update(dict(key))
return Shipment(**values) return Shipment(**values)
@ -126,7 +125,7 @@ class Sale(metaclass=PoolMeta):
Config = pool.get('optical_equipment.configuration') Config = pool.get('optical_equipment.configuration')
config = Config(1) config = Config(1)
for sale in sales: for sale in sales:
if config.equipment_sequence != None: if config.equipment_sequence is not None:
if not sale.quote_number: if not sale.quote_number:
try: try:
sale.quote_number = config.sale_quote_number.get() sale.quote_number = config.sale_quote_number.get()
@ -135,7 +134,7 @@ class Sale(metaclass=PoolMeta):
raise UserError(str('Validation Error')) raise UserError(str('Validation Error'))
else: else:
raise UserError(gettext('optical_equipment.msg_not_sequence_quote')) raise UserError(gettext('optical_equipment.msg_not_sequence_quote'))
@classmethod @classmethod
def copy(cls, sales, default=None): def copy(cls, sales, default=None):
if default is None: if default is None:
@ -168,11 +167,11 @@ class Sale(metaclass=PoolMeta):
for sale in sales: for sale in sales:
sale.check_for_quotation() sale.check_for_quotation()
cls.set_quote_number(sales) cls.set_quote_number(sales)
for sale in sales: for sale in sales:
sale.set_advance_payment_term() sale.set_advance_payment_term()
cls.save(sales) cls.save(sales)
@classmethod @classmethod
@ModelView.button_action( @ModelView.button_action(
'optical_equipment.wizard_confirm_sale_date') 'optical_equipment.wizard_confirm_sale_date')
@ -189,7 +188,7 @@ class Sale(metaclass=PoolMeta):
MaintenanceService = pool.get('optical_equipment_maintenance.service') MaintenanceService = pool.get('optical_equipment_maintenance.service')
for sale in sales: for sale in sales:
if sale.sale_type == 'maintenance': if sale.sale_type == 'maintenance' and not sale.agended:
for line in sale.lines: for line in sale.lines:
maintenanceService = MaintenanceService( maintenanceService = MaintenanceService(
description=sale.description, description=sale.description,
@ -204,25 +203,24 @@ class Sale(metaclass=PoolMeta):
) )
maintenanceService.save() maintenanceService.save()
sale.agended = True sale.agended = True
sale.state="confirmed" sale.state = "confirmed"
sale.save() sale.save()
cls.set_number([sale]) cls.set_number(sales)
with Transaction().set_context( with Transaction().set_context(
queue_name='sale', queue_name='sale',
queue_scheduled_at=config.sale_process_after): queue_scheduled_at=config.sale_process_after):
cls.__queue__.process(sales) cls.__queue__.process(sales)
class SaleLine(metaclass=PoolMeta): class SaleLine(metaclass=PoolMeta):
'SaleLine' 'SaleLine'
__name__ = 'sale.line' __name__ = 'sale.line'
product_equipment = fields.Boolean("Product Equipment") product_equipment = fields.Boolean("Product Equipment")
unit_digits = fields.Function(fields.Integer('Unit Digits'), unit_digits = fields.Function(fields.Integer('Unit Digits'),
'on_change_with_unit_digits') 'on_change_with_unit_digits')
@classmethod @classmethod
def __setup__(cls): def __setup__(cls):
super(SaleLine, cls).__setup__() super(SaleLine, cls).__setup__()
@ -231,20 +229,18 @@ class SaleLine(metaclass=PoolMeta):
[('type', '=', 'service'), [('type', '=', 'service'),
('maintenance_activity', '=', True)], [])) ('maintenance_activity', '=', True)], []))
cls.product.domain.append(If(Eval('_parent_sale.sale_type') == 'replaces', cls.product.domain.append(If(Eval('_parent_sale.sale_type') == 'replaces',
[('replacement', '=', True)], [])) [('replacement', '=', True)], []))
def on_change_with_unit_digits(self, name=None): def on_change_with_unit_digits(self, name=None):
if self.unit: if self.unit:
return self.unit.digits return self.unit.digits
return 2 return 2
@fields.depends('product', 'unit', 'quantity', 'sale', @fields.depends('product', 'unit', 'quantity', 'sale',
'_parent_sale.party', '_parent_sale.sale_type', methods=['_get_tax_rule_pattern', '_parent_sale.party', '_parent_sale.sale_type', methods=['_get_tax_rule_pattern',
'_get_context_sale_price','on_change_with_amount']) '_get_context_sale_price', 'on_change_with_amount'])
def on_change_product(self): def on_change_product(self):
Product = Pool().get('product.product') Product = Pool().get('product.product')
if not self.product: if not self.product:
self.product_equipment = False self.product_equipment = False
self.unit = None self.unit = None
@ -256,7 +252,7 @@ class SaleLine(metaclass=PoolMeta):
if self.sale.sale_type == 'equipments': if self.sale.sale_type == 'equipments':
self.quantity = 1 self.quantity = 1
if self.sale and self.sale.party: if self.sale and self.sale.party:
self.product_equipment = False self.product_equipment = False
party = self.sale.party party = self.sale.party
@ -285,7 +281,7 @@ class SaleLine(metaclass=PoolMeta):
with Transaction().set_context(self._get_context_sale_price()): with Transaction().set_context(self._get_context_sale_price()):
self.unit_price = Product.get_sale_price([self.product], self.unit_price = Product.get_sale_price([self.product],
self.quantity or 0)[self.product.id] self.quantity or 0)[self.product.id]
if self.unit_price: if self.unit_price:
self.unit_price = self.unit_price.quantize( self.unit_price = self.unit_price.quantize(
@ -317,9 +313,8 @@ class SaleLine(metaclass=PoolMeta):
if (shipment_type == 'out') != (self.quantity >= 0): if (shipment_type == 'out') != (self.quantity >= 0):
return return
quantity = (self._get_move_quantity(shipment_type) quantity = (self._get_move_quantity(shipment_type)
- self._get_shipped_quantity(shipment_type)) - self._get_shipped_quantity(shipment_type))
quantity = self.unit.round(quantity) quantity = self.unit.round(quantity)
@ -329,8 +324,8 @@ class SaleLine(metaclass=PoolMeta):
if not self.sale.party.customer_location: if not self.sale.party.customer_location:
raise PartyLocationError( raise PartyLocationError(
gettext('sale.msg_sale_customer_location_required', gettext('sale.msg_sale_customer_location_required',
sale=self.sale.rec_name, sale=self.sale.rec_name,
party=self.sale.party.rec_name)) party=self.sale.party.rec_name))
move = Move() move = Move()
move.quantity = quantity move.quantity = quantity
@ -344,36 +339,37 @@ class SaleLine(metaclass=PoolMeta):
if move.on_change_with_unit_price_required(): if move.on_change_with_unit_price_required():
move.unit_price = self.unit_price move.unit_price = self.unit_price
move.currency = self.sale.currency move.currency = self.sale.currency
move.planned_date = self.planned_shipping_date move.planned_date = self.planned_shipping_date
move.invoice_lines = self._get_move_invoice_lines(shipment_type) move.invoice_lines = self._get_move_invoice_lines(shipment_type)
move.origin = self move.origin = self
return move return move
class SaleDate(ModelView): class SaleDate(ModelView):
'Confirmacíon Fecha de Venta' 'Confirmacíon Fecha de Venta'
__name__ = 'optical_equipment.confirm_sale_date.form' __name__ = 'optical_equipment.confirm_sale_date.form'
sale_date = fields.Date("Fecha Venta", required=True) sale_date = fields.Date("Fecha Venta", required=True)
class ConfirmSaleDate(Wizard): class ConfirmSaleDate(Wizard):
'Confirmacíon Fecha de Venta' 'Confirmacíon Fecha de Venta'
__name__ = 'optical_equipment.confirm_sale_date' __name__ = 'optical_equipment.confirm_sale_date'
start = StateView('optical_equipment.confirm_sale_date.form', start = StateView('optical_equipment.confirm_sale_date.form',
'optical_equipment.confirm_sale_date_view_form',[ 'optical_equipment.confirm_sale_date_view_form', [
Button('Confirmar', 'confirm_date', 'tryton-ok', default=True), Button('Confirmar', 'confirm_date', 'tryton-ok', default=True),
]) ])
confirm_date = StateAction('sale.act_sale_form') confirm_date = StateAction('sale.act_sale_form')
def default_start(self, fields): def default_start(self, fields):
if self.record: if self.record:
return {'sale_date': self.record.sale_date} return {'sale_date': self.record.sale_date}
def do_confirm_date(self, action): def do_confirm_date(self, action):
self.record.sale_date = self.start.sale_date self.record.sale_date = self.start.sale_date
self.record.state = 'processing' self.record.state = 'processing'
self.record.save() self.record.save()

View File

@ -12,6 +12,7 @@ depends:
purchase purchase
sale sale
xml: xml:
company.xml
equipment.xml equipment.xml
calibration.xml calibration.xml
contract.xml contract.xml

View File

@ -20,7 +20,7 @@ this repository contains the full copyright notices and license terms. -->
<label name="sale_quote_number"/> <label name="sale_quote_number"/>
<field name="sale_quote_number"/> <field name="sale_quote_number"/>
<newline/> <newline/>
<separator id="separator_configuraton" colspan="4"/>
<separator id="environmental_conditions" string="Environmental Conditions" colspan="4"/> <separator id="environmental_conditions" string="Environmental Conditions" colspan="4"/>
<newline/> <newline/>
<label name="temperature_min"/> <label name="temperature_min"/>
@ -41,4 +41,11 @@ this repository contains the full copyright notices and license terms. -->
<label name="moisture_uom"/> <label name="moisture_uom"/>
<field name="moisture_uom"/> <field name="moisture_uom"/>
<newline/> <newline/>
<separator id="technician_responsible" string="Technician Responsible" colspan="4"/>
<label name="technician_responsible"/>
<field name="technician_responsible"/>
<label name="invima"/>
<field name="invima"/>
</form> </form>

View File

@ -27,7 +27,10 @@ this repository contains the full copyright notices and license terms. -->
<field name="maintenance_services"/> <field name="maintenance_services"/>
</page> </page>
<page string="Equipments" id="equipments"> <page string="Equipments" id="equipments">
<field name="equipments"/> <field name="current_equipments"/>
</page>
<page string="History Equipments" id="history_equipments">
<field name="history_equipments"/>
</page> </page>
<page string="Other Info" id="other"> <page string="Other Info" id="other">
<label name="company"/> <label name="company"/>
@ -39,9 +42,10 @@ this repository contains the full copyright notices and license terms. -->
<newline/> <newline/>
<label name="state"/> <label name="state"/>
<field name="state"/> <field name="state"/>
<group col="2" colspan="2" id="button"> <group col="6" id="button">
<button name="draft"/> <button name="draft"/>
<button name="cancelled"/> <button name="closed"/>
<button name="cancelled"/>
<button name="running"/> <button name="running"/>
</group> </group>
</form> </form>

10
view/employee_form.xml Normal file
View File

@ -0,0 +1,10 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<data>
<xpath expr="//field[@name='supervisor']" position="after">
<label name="invima"/>
<field name="invima"/>
<newline/>
</xpath>
</data>

View File

@ -73,6 +73,12 @@
</page> </page>
</notebook> </notebook>
<newline/> <newline/>
<label name="technician_responsible"/>
<field name="technician_responsible"/>
<label name="invima"/>
<field name="invima"/>
<label name="state"/> <label name="state"/>
<field name="state"/> <field name="state"/>
<group id="button"> <group id="button">

View File

@ -14,9 +14,11 @@
<label name="maintenance_activity"/> <label name="maintenance_activity"/>
<field name="maintenance_activity"/> <field name="maintenance_activity"/>
<newline/> <newline/>
<label name="quantity"/>
<field name="quantity"/>
<label name="unit"/> <label name="unit"/>
<field name="unit"/> <field name="unit"/>
<newline/> <newline/>
<label name="quantity"/> <label name="description"/>
<field name="quantity"/> <field name="description" xexpand="1"/>
</form> </form>

View File

@ -2,6 +2,13 @@
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of <!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. --> this repository contains the full copyright notices and license terms. -->
<data> <data>
<xpath expr="//field[@name='warehouse']" position="after">
<label name="payment_term_description"/>
<field name="payment_term_description" colspan="5"/>
<newline/>
</xpath>
<xpath expr="//label[@name='payment_term']" position="replace"></xpath>
<xpath expr="//field[@name='payment_term']" position="replace"></xpath>
<xpath expr="//label[@name='number']" position="before"> <xpath expr="//label[@name='number']" position="before">
<label name="quote_number"/> <label name="quote_number"/>
<field name="quote_number"/> <field name="quote_number"/>