InsuranceBizLogic 0.2.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
1
+ declare namespace xupdate="http://www.xmldb.org/xupdate";
2
+ for $result in collection("quotes.dbxml")/Telenexus
3
+ where $result//Profile/PersonalDetails/Client/Contact/Email = "EMAIL"
4
+ return
5
+ $result/dbxml:metadata("dbxml:name")
@@ -0,0 +1,59 @@
1
+ class Hash
2
+
3
+ def deep_merge0(hash)
4
+ target = dup
5
+
6
+ hash.keys.each do |key|
7
+ if hash[key].is_a? Hash and self[key].is_a? Hash
8
+ target[key] = target[key].deep_merge(hash[key])
9
+ next
10
+ end
11
+
12
+ target[key] = hash[key]
13
+ end
14
+
15
+ target
16
+ end
17
+
18
+ def deep_merge!(second)
19
+ second.each_pair do |k,v|
20
+ if self[k].is_a?(Hash) and second[k].is_a?(Hash)
21
+ self[k].deep_merge!(second[k])
22
+ else
23
+ self[k] = second[k]
24
+ end
25
+ end
26
+ end
27
+
28
+
29
+ def deep_merge2(other)
30
+ deep_proc = Proc.new { |k, s, o|
31
+ if s.kind_of?(Hash) && o.kind_of?(Hash)
32
+ next s.merge(o, &deep_proc)
33
+ end
34
+ next o
35
+ }
36
+ merge(other, &deep_proc)
37
+ end
38
+
39
+
40
+ def deep_merge(second)
41
+ merger = proc { |key,v1,v2| Hash === v1 && Hash === v2 ? v1.merge(v2, &merger) : v2 }
42
+ self.merge(second, &merger)
43
+ end
44
+
45
+
46
+ def keep_merge(hash)
47
+ target = dup
48
+ hash.keys.each do |key|
49
+ if hash[key].is_a? Hash and self[key].is_a? Hash
50
+ target[key] = target[key].keep_merge(hash[key])
51
+ next
52
+ end
53
+ #target[key] = hash[key]
54
+ target.update(hash) { |key, *values| values.flatten.uniq }
55
+ end
56
+ target
57
+ end
58
+
59
+ end
@@ -0,0 +1,18 @@
1
+ # Copyright (c) 2007-2008 Orangery Technology Limited
2
+ # You can redistribute it and/or modify it under the same terms as Ruby.
3
+ #
4
+ require 'processengine/engine'
5
+
6
+ class Communicator
7
+
8
+ @@instance = Communicator.new
9
+
10
+ def self.instance
11
+ @@instance
12
+ end
13
+
14
+ def handle(session,process,params)
15
+ eng = PEngine.new
16
+ eng.push(session,process,params)
17
+ end
18
+ end
@@ -0,0 +1,247 @@
1
+ # Copyright (c) 2007-2008 Orangery Technology Limited
2
+ # You can redistribute it and/or modify it under the same terms as Ruby.
3
+ #
4
+ require 'models/persist'
5
+ require 'cgi'
6
+ require 'net/http'
7
+
8
+ require 'servicebroker/broker'
9
+ require 'Marshaller'
10
+
11
+ require 'bizLogic/applymta'
12
+ require 'bizLogic/search'
13
+ require 'bizLogic/payment'
14
+ require 'bizLogic/diff'
15
+ require 'bizLogic/continualQNB'
16
+ require 'bizLogic/VPMSHelper'
17
+
18
+ require 'processengine/HashEnhancement'
19
+
20
+ require 'rexml/document'
21
+
22
+ require 'kerrylondon'
23
+
24
+ class PEngine
25
+ include XMLDiff
26
+ include Marshaller
27
+
28
+ include ApplyMTA
29
+ include Search
30
+ include Payment
31
+ include RefineQuote
32
+ include VPMSHelper
33
+ include REXML
34
+
35
+ PRODUCTMODELS = Hash.new
36
+
37
+ def deriveActiveRecordDefinitionOfProduct(product)
38
+ if (PRODUCTMODELS.has_key?(product))
39
+ return PRODUCTMODELS[product.to_sym]
40
+ else
41
+ return getRAILSClassRequiresForProductModelFromOilDef(product)
42
+ end
43
+ end
44
+
45
+ def addDefaults(p1)
46
+ #adds default values where no value currently exists
47
+ #these values should be extracted from the data model!!
48
+ p2 = {"ContentsCoverCoverDetailOtherContentsSumInsured" => {"Amount" => "1000000"},
49
+ "ContentsCoverCoverDetailOtherStockSumInsured" => {"Amount" => "1000000"},
50
+ "ContentsCoverCoverDetailTargetStockSumInsured" => {"Amount" => "1000000"},
51
+ "BuildingsCoverCoverDetailShopFrontCoverDetailSumInsured" => {"Amount" => "1000000"},
52
+ "BuildingsCoverCoverDetailTenantsImprovementsCoverDetailSumInsured" => {"Amount" => "1000000"},
53
+ "BookDebtsCoverCoverDetailSumInsured" => {"Amount" => "1000000"},
54
+ "BusinessInterruptionCoverCoverDetailSumInsured" => {"Amount" => "1000000"},
55
+ "EmployersLiabilityCoverCoverDetailSumInsured" => {"Amount" => "1000000"},
56
+ "GlassCoverCoverDetailSumInsured" => {"Amount" => "1000000"},
57
+ "LossOfLicenceCoverCoverDetailSumInsured" => {"Amount" => "1000000"},
58
+ "MoneyCoverCoverDetailSumInsured" => {"Amount" => "1000000"},
59
+ "ProductLiabilityCoverCoverDetailSumInsured" => {"Amount" => "1000000"},
60
+ "PublicLiabilityCoverCoverDetailSumInsured" => {"Amount" => "1000000"}}
61
+
62
+ p2.each do |k,v|
63
+ if p1.has_key?(k)
64
+ v.each do |ik,iv|
65
+ if (!p1[k].has_key?(ik) or p1[k][ik].length == 0)
66
+ #puts "replacing value for:#{k},#{ik}"
67
+ p1[k][ik] = iv
68
+ end
69
+ end
70
+ else
71
+ #puts "replacing value for:#{k}"
72
+ p1[k] = v
73
+ end
74
+ end
75
+ return p1
76
+ end
77
+
78
+ def drill(params,tweak)
79
+ params.each do |p,v|
80
+ if (v.class.to_s == "HashWithIndifferentAccess")
81
+ drill(v,tweak)
82
+ elsif Kerrylondon.mapping.has_key?(p)
83
+ newkey = Kerrylondon.mapping[p]
84
+ tweak[newkey] = v
85
+ end
86
+ end
87
+ end
88
+
89
+ def push(session,process,params)
90
+ package = 'CommercialProperty'
91
+
92
+ case process
93
+ when "ProcessDefinition"
94
+ require 'RailsProcessInterpreter'
95
+ open("#{PRODUCT_ROOT.gsub(/%product/,session[:product])}/DSL/processes.oil") {|f| @contents = f.read }
96
+ dsl = @contents.to_s
97
+ action_methods = RailsProcessInterpreter.execute(dsl)
98
+ action_methods
99
+
100
+ when "GetNBQuote"
101
+ eval(deriveActiveRecordDefinitionOfProduct(session[:product]))
102
+ xml = createXMLMessage(session[:product],params,false) { |k,v| "<#{k}>#{v}</#{k}>" }
103
+ persist = Persist.instance
104
+ key = persist.put("UUID",xml)
105
+ session[:policyKey] = key
106
+
107
+ if APP_CONFIG['use_rating_engine']
108
+ nvpxml = buildVPMSMessage(session[:product],package,session[:brand],params)
109
+ response = callVPMS(nvpxml)
110
+ parseVPMSresponse(response,session[:product])
111
+ xml = mergeIntoXMLDoc(xml,@premiums)
112
+ end
113
+ prepareModels(session[:product],xml)
114
+ #cmd = SBroker.RequestRatingService("NB",session[:product],true,false,false)
115
+ #quote = cmd.call(xml)
116
+
117
+ when "GetBrokerQuotes"
118
+ eval(deriveActiveRecordDefinitionOfProduct(session[:product]))
119
+ dataTweak = Hash.new
120
+ drill(params,dataTweak)
121
+ #dataTweaks contains values that override the kerry london adapter defaults
122
+ result = Kerrylondon.makeQuote("Tony Lorriman","liability1","CSP",false,Kerrylondon.keyfacts(dataTweak))
123
+ premiums = "<ContractorPlant><Quotes>#{result}#{result}</Quotes></ContractorPlant>"
124
+ prepareModels(session[:product],premiums)
125
+
126
+ when "RefineNBQuote"
127
+ eval(deriveActiveRecordDefinitionOfProduct(session[:product]))
128
+ persist = Persist.instance
129
+ origxml = persist.get(session[:policyKey])
130
+ h = prepareModels(session[:product],origxml)
131
+ params = h.deep_merge(params)
132
+ combinedxml = createXMLMessage(session[:product],params,false) { |k,v| "<#{k}>#{v}</#{k}>" }
133
+ key = persist.put(session[:policyKey],combinedxml)
134
+
135
+ if APP_CONFIG['use_rating_engine']
136
+ nvpxml = buildVPMSMessage(session[:product],package,session[:brand],params)
137
+ response = callVPMS(nvpxml)
138
+ parseVPMSresponse(response,session[:product])
139
+ combinedxml = mergeIntoXMLDoc(combinedxml,@premiums)
140
+ end
141
+
142
+ prepareModels(session[:product],combinedxml)
143
+
144
+ when "Search"
145
+ executeSearch(session[:product],params)
146
+
147
+ when "FindPolicyOrQuote"
148
+ persist = Persist.instance
149
+ xml = persist.get(params[:choosen][:one])
150
+ prepareModels(session[:product],xml)
151
+
152
+ when "Authenticate"
153
+ begin
154
+ if params[:User] and params[:User][:User] and params[:User][:User].length > 0
155
+ session[:user_email] = params[:User][:User]
156
+ elsif params[:ProfilePersonalDetailsClientContact] and params[:ProfilePersonalDetailsClientContact][:Email]
157
+ session[:user_email] = params[:ProfilePersonalDetailsClientContact][:Email]
158
+ end
159
+
160
+ eval(deriveActiveRecordDefinitionOfProduct(session[:product]))
161
+ open("#{File.dirname(__FILE__)}/../bizLogic/xquery2") {|f| @query = f.read }
162
+ persist = Persist.instance
163
+ results = persist.find(@query.gsub('EMAIL',session[:user_email]))
164
+ key = results[0]
165
+ xml = persist.get(key)
166
+ doc = Document.new(xml)
167
+ node = doc.elements['Telenexus/Profile/PersonalDetails/Client']
168
+ node.parent.delete(node) if node and session[:user_email].index("telenexus.com")
169
+ prepareModels(session[:product],doc.to_s)
170
+ rescue
171
+ if !session[:user_email]
172
+ raise "Credentials missing - you have not logged in"
173
+ end
174
+ raise "An error occurred during the authentication process"
175
+ end
176
+
177
+ when "SaveProfile"
178
+ begin
179
+ session[:user_email] = params[:ProfilePersonalDetailsClientContact][:Email]
180
+ eval(deriveActiveRecordDefinitionOfProduct(session[:product]))
181
+ xml = createXMLMessage(session[:product],params,false) { |k,v| "<#{k}>#{v}</#{k}>" }
182
+ open("#{File.dirname(__FILE__)}/../bizLogic/xquery2") {|f| @query = f.read }
183
+ persist = Persist.instance
184
+ results = persist.find(@query.gsub('EMAIL',session[:user_email]))
185
+ key = nil
186
+ if !results
187
+ key = persist.create_key_and_doc(xml)
188
+ else
189
+ key = results[0]
190
+ persist.put(key,xml)
191
+ end
192
+ xml = persist.get(key)
193
+ prepareModels(session[:product],xml)
194
+ rescue
195
+ if !session[:user_email]
196
+ raise "Credentials missing for new customer"
197
+ end
198
+ raise "An error occurred whilst saving a new profile"
199
+ end
200
+
201
+
202
+ when "SectionRating"
203
+ "1553.25"
204
+
205
+ when "MTAReason"
206
+ persist = Persist.instance
207
+ xml = persist.get(session[:policyKey])
208
+ prepareModels(session[:product],xml)
209
+
210
+ when "GetMTAQuote"
211
+ persist = Persist.instance
212
+ origImage = persist.get(session[:policyKey])
213
+ #TODO: the origImage will need any MTAs layering on there
214
+ xml = createXMLMessage(session[:product],params,false) { |k,v| "<#{k}>#{v}</#{k}>" }
215
+ applyMTA(session[:mtaStartDate],session[:mtaEndDate],session[:policyKey],origImage,xml)
216
+ prepareModels(session[:product],xml)
217
+
218
+ when "PolicyDocumentation"
219
+ #get XML quote/policy document
220
+ persist = Persist.instance
221
+ xml = persist.get(session[:policyKey])
222
+ #call the rating engine (again!) until we've preserved the quote
223
+ cmd = SBroker.RequestRatingService("NB",session[:product],true,false,false)
224
+ quote = cmd.call(xml)
225
+ prepareModels(session[:product],xml)
226
+
227
+ when "Checkout"
228
+ next_url = setup_payment(params)
229
+ next_url
230
+
231
+ when "ConfirmPayment"
232
+ get_gateway_payment_details(params)
233
+
234
+ when "CompletedPayment"
235
+ complete_payment(params)
236
+
237
+ when "CaptureInputXML"
238
+ eval(deriveActiveRecordDefinitionOfProduct(session[:product]))
239
+ xml = createXMLMessage(session[:product],params,false) { |k,v| "<#{k}>#{v}</#{k}>" }
240
+ File.open("dump.xml", 'w') {|f| f.write(xml) }
241
+
242
+
243
+ else
244
+ puts "**********> #{process} logic performed once it has been written <**********"
245
+ end
246
+ end
247
+ end
@@ -0,0 +1,74 @@
1
+ # Copyright (c) 2007-2008 Orangery Technology Limited
2
+ # You can redistribute it and/or modify it under the same terms as Ruby.
3
+ #
4
+ require 'net/http'
5
+ require 'RatingEngineResolver'
6
+
7
+ class SBroker
8
+ SERVICE_BROKER_ROOT = File.dirname(__FILE__)
9
+ XSL_ROOT = File.join(SERVICE_BROKER_ROOT, 'xsl')
10
+ MOCK_ROOT = File.join(SERVICE_BROKER_ROOT, 'mocks')
11
+
12
+ def self.RequestRatingService(process,product,full,partial,knockout)
13
+ open("#{PRODUCTS_ROOT}/#{product}/dsl.rb") {|f| @contents = f.read }
14
+ script = @contents.to_s
15
+ mycmd = RatingEngineResolver.execute(script)
16
+ cmd = eval(mycmd)
17
+ cmd
18
+ end
19
+
20
+ def self.InvokeRTE(msg)
21
+ Net::HTTP.start(APP_CONFIG['rte_restful_ip'], 80) do |http|
22
+ response = http.post('/RestfulXRTE.ashx/quote',msg)
23
+ response.body
24
+ end
25
+ end
26
+
27
+ def self.ApplyTransform(xml,transform,code)
28
+ require 'xml/xslt'
29
+
30
+ xslt = XML::XSLT.new()
31
+ xslt.xml = xml
32
+ xslt.xsl = File.join(XSL_ROOT, transform)
33
+ if (code != nil) then
34
+ xslt.parameters = { "code" => "#{code}" }
35
+ end
36
+ transformed_xml = xslt.serve()
37
+ transformed_xml
38
+ end
39
+
40
+ def self.ExtractSectionPremium(xml,response_xml)
41
+ begin
42
+ #expects a standard format message with a code value in
43
+ #will be ok since all the schemas are derived from the
44
+ #formal polaris library
45
+ transformed_xml = SBroker.ApplyTransform(xml,"extractCode.xsl",nil)
46
+ if (transformed_xml == nil)
47
+ transformed_xml = SBroker.ApplyTransform(xml,"extractDescription.xsl",nil)
48
+ end
49
+ msg = transformed_xml.strip
50
+ vals = msg.split('>')
51
+ #get some odd initial character here...quick hack to remove it
52
+ #need to figure out what it is
53
+ code = vals[1][1,vals[1].length]
54
+
55
+ #now extract the premium from the response
56
+ #this approach is taken so that the xslt can hide the nasties of a none XML dictionary
57
+ #TODO: provide a XSLT conversation on the way back from thre RTE
58
+ transformed_xml = SBroker.ApplyTransform(response_xml,"extractPremium.xsl",code)
59
+ msg = transformed_xml.strip
60
+
61
+ vals = msg.split('>')
62
+ #get some odd initial character here...quick hack to remove it
63
+ #need to figure out what it is
64
+ premium = vals[1][1,vals[1].length]
65
+ rescue Exception => e
66
+ puts "THE SECTION PREMIUM ERROR'ED WITH:#{e.message}"
67
+ end
68
+ end
69
+
70
+ def self.GetMockRatingResponse(mockFile)
71
+ quote = open("#{MOCK_ROOT}/" + mockFile) {|f| f.read }
72
+ quote.to_s
73
+ end
74
+ end
@@ -0,0 +1,2291 @@
1
+ <CommercialCombinedQuoteNBRs>
2
+ <DateGenerated>2006-05-04</DateGenerated>
3
+ <TimeGenerated>01:01:01.001</TimeGenerated>
4
+ <LastMessageReference>922337203</LastMessageReference>
5
+ <OurMessageReference>922337203</OurMessageReference>
6
+ <StartDate>2006-05-04</StartDate>
7
+ <StartTime>01:01:01.001</StartTime>
8
+ <EndDate>2006-05-04</EndDate>
9
+ <EndTime>01:01:01.001</EndTime>
10
+ <QuoteValidUntil>2006-05-04</QuoteValidUntil>
11
+ <AgencyAccountRef>AgencyAccountRef0</AgencyAccountRef>
12
+ <Insurer>
13
+ <PEMId>PEMId0</PEMId>
14
+ <InStepCode>InStepCode0</InStepCode>
15
+ <CompanyName>CompanyName0</CompanyName>
16
+ <FaxTelephoneNo>FaxTelephoneNo0</FaxTelephoneNo>
17
+ <QuoteReference>QuoteReference0</QuoteReference>
18
+ <Contact>
19
+ <IndividualName>
20
+ <FirstForename>FirstForename0</FirstForename>
21
+ <Surname>Surname0</Surname>
22
+ </IndividualName>
23
+ <WorkTelephoneNo>WorkTelephoneNo0</WorkTelephoneNo>
24
+ <EmailAddress>EmailAddress0</EmailAddress>
25
+ </Contact>
26
+ </Insurer>
27
+ <Intermediary>
28
+ <PEMId>PEMId1</PEMId>
29
+ <InStepCode>InStepCode1</InStepCode>
30
+ <CompanyName>CompanyName1</CompanyName>
31
+ <RiskReference>RiskReference0</RiskReference>
32
+ <TransactionReference>TransactionReference0</TransactionReference>
33
+ <Contact>
34
+ <IndividualName>
35
+ <FirstForename>FirstForename1</FirstForename>
36
+ <Surname>Surname1</Surname>
37
+ </IndividualName>
38
+ <WorkTelephoneNo>WorkTelephoneNo1</WorkTelephoneNo>
39
+ <EmailAddress>EmailAddress1</EmailAddress>
40
+ </Contact>
41
+ </Intermediary>
42
+ <Insured>
43
+ <CompanyName>CompanyName2</CompanyName>
44
+ <IndividualName>
45
+ <TitleCode>
46
+ <Value>B53 001</Value>
47
+ <ShortDescription>ShortDescription0</ShortDescription>
48
+ </TitleCode>
49
+ <FirstForename>FirstForename2</FirstForename>
50
+ <Surname>Surname2</Surname>
51
+ </IndividualName>
52
+ </Insured>
53
+ <PremiumQuoteBreakdown>
54
+ <GrossAmount>3.141592653589</GrossAmount>
55
+ <BrokerageAmount>3.141592653589</BrokerageAmount>
56
+ <BrokeragePercent>3.141592653589</BrokeragePercent>
57
+ <Amount>3.141592653589</Amount>
58
+ <IPTAmount>3.141592653589</IPTAmount>
59
+ <IPTPercent>3.141592653589</IPTPercent>
60
+ <VATAmount>3.141592653589</VATAmount>
61
+ <MinAppliedInd>
62
+ <Value>false</Value>
63
+ </MinAppliedInd>
64
+ </PremiumQuoteBreakdown>
65
+ <PaymentPlan>
66
+ <MethodOfPaymentCode>
67
+ <Value>B75 BS</Value>
68
+ <ShortDescription>ShortDescription1</ShortDescription>
69
+ </MethodOfPaymentCode>
70
+ <NoOfPayments>922337203</NoOfPayments>
71
+ <PaymentFrequencyCode>
72
+ <Value>B312 A</Value>
73
+ <ShortDescription>ShortDescription2</ShortDescription>
74
+ </PaymentFrequencyCode>
75
+ <DownPaymentAmount>3.141592653589</DownPaymentAmount>
76
+ <SuccessiveInstalmentAmount>3.141592653589</SuccessiveInstalmentAmount>
77
+ <TotalAmountPayable>3.141592653589</TotalAmountPayable>
78
+ <InterestAmount>3.141592653589</InterestAmount>
79
+ <InterestPercent>3.141592653589</InterestPercent>
80
+ <APR>3.141592653589</APR>
81
+ </PaymentPlan>
82
+ <Policy>
83
+ <ProductName>ProductName0</ProductName>
84
+ <PolicyNumber>PolicyNumber0</PolicyNumber>
85
+ <StartDate>2006-05-04</StartDate>
86
+ <StartTime>01:01:01.001</StartTime>
87
+ <EndDate>2006-05-04</EndDate>
88
+ <EndTime>01:01:01.001</EndTime>
89
+ <QuoteCondition>
90
+ <ItemTypeCode>
91
+ <Value>B579 337</Value>
92
+ <ShortDescription>ShortDescription7</ShortDescription>
93
+ <Description>Description0</Description>
94
+ </ItemTypeCode>
95
+ </QuoteCondition>
96
+ <QuoteCondition>
97
+ <ItemTypeCode>
98
+ <Value>B579 337</Value>
99
+ <ShortDescription>ShortDescription8</ShortDescription>
100
+ <Description>Description1</Description>
101
+ </ItemTypeCode>
102
+ </QuoteCondition>
103
+ <QuoteCondition>
104
+ <ItemTypeCode>
105
+ <Value>B579 337</Value>
106
+ <ShortDescription>ShortDescription9</ShortDescription>
107
+ <Description>Description2</Description>
108
+ </ItemTypeCode>
109
+ </QuoteCondition>
110
+ <PremiumQuoteBreakdown>
111
+ <GrossAmount>3234.56</GrossAmount>
112
+ <BrokerageAmount>2.25</BrokerageAmount>
113
+ <BrokeragePercent>1.00</BrokeragePercent>
114
+ <IPTAmount>56.74</IPTAmount>
115
+ <IPTPercent>2.00</IPTPercent>
116
+ <VATAmount>678.56</VATAmount>
117
+ <MinAppliedInd>
118
+ <Value>false</Value>
119
+ </MinAppliedInd>
120
+ </PremiumQuoteBreakdown>
121
+ <Endorsement>
122
+ <ReasonApplied>ReasonApplied0</ReasonApplied>
123
+ <ShortWording>ShortWording0</ShortWording>
124
+ <Wording>Wording0</Wording>
125
+ </Endorsement>
126
+ <Endorsement>
127
+ <ReasonApplied>ReasonApplied1</ReasonApplied>
128
+ <ShortWording>ShortWording1</ShortWording>
129
+ <Wording>Wording1</Wording>
130
+ </Endorsement>
131
+ <Endorsement>
132
+ <ReasonApplied>ReasonApplied2</ReasonApplied>
133
+ <ShortWording>ShortWording2</ShortWording>
134
+ <Wording>Wording2</Wording>
135
+ </Endorsement>
136
+ <Information>
137
+ <Description>Description3</Description>
138
+ </Information>
139
+ <Information>
140
+ <Description>Description4</Description>
141
+ </Information>
142
+ <Information>
143
+ <Description>Description5</Description>
144
+ </Information>
145
+ </Policy>
146
+ <Premises>
147
+ <Id>Id0</Id>
148
+ <Address>
149
+ <Postcode>Postcode0</Postcode>
150
+ </Address>
151
+ <PremiumQuoteBreakdown>
152
+ <GrossAmount>3.141592653589</GrossAmount>
153
+ <BrokerageAmount>3.141592653589</BrokerageAmount>
154
+ <BrokeragePercent>3.141592653589</BrokeragePercent>
155
+ <IPTAmount>3.141592653589</IPTAmount>
156
+ <IPTPercent>3.141592653589</IPTPercent>
157
+ <MinAppliedInd>
158
+ <Value>false</Value>
159
+ </MinAppliedInd>
160
+ </PremiumQuoteBreakdown>
161
+ <Endorsement>
162
+ <ReasonApplied>ReasonApplied3</ReasonApplied>
163
+ <ShortWording>ShortWording3</ShortWording>
164
+ <Wording>Wording3</Wording>
165
+ </Endorsement>
166
+ <Endorsement>
167
+ <ReasonApplied>ReasonApplied4</ReasonApplied>
168
+ <ShortWording>ShortWording4</ShortWording>
169
+ <Wording>Wording4</Wording>
170
+ </Endorsement>
171
+ <Endorsement>
172
+ <ReasonApplied>ReasonApplied5</ReasonApplied>
173
+ <ShortWording>ShortWording5</ShortWording>
174
+ <Wording>Wording5</Wording>
175
+ </Endorsement>
176
+ <BuildingsCover>
177
+ <ExcludedInd>
178
+ <Value>false</Value>
179
+ </ExcludedInd>
180
+ <CoverDetail>
181
+ <Code>
182
+ <Value>B205 B01</Value>
183
+ <ShortDescription>ShortDescription10</ShortDescription>
184
+ </Code>
185
+ <BasisCode>
186
+ <Value>B506 011</Value>
187
+ <ShortDescription>ShortDescription11</ShortDescription>
188
+ </BasisCode>
189
+ <AdjustmentMethodCode>
190
+ <Value>B652 005</Value>
191
+ <ShortDescription>ShortDescription12</ShortDescription>
192
+ </AdjustmentMethodCode>
193
+ <DayOnePercent>3.141592653589</DayOnePercent>
194
+ <SumInsured>
195
+ <Amount>922337203</Amount>
196
+ </SumInsured>
197
+ <Excess>
198
+ <Amount>922337203</Amount>
199
+ </Excess>
200
+ <Perils>
201
+ <Code>
202
+ <Value>B205 A16</Value>
203
+ <ShortDescription>ShortDescription13</ShortDescription>
204
+ </Code>
205
+ </Perils>
206
+ <Perils>
207
+ <Code>
208
+ <Value>B205 A16</Value>
209
+ <ShortDescription>ShortDescription14</ShortDescription>
210
+ </Code>
211
+ </Perils>
212
+ <Perils>
213
+ <Code>
214
+ <Value>B205 A16</Value>
215
+ <ShortDescription>ShortDescription15</ShortDescription>
216
+ </Code>
217
+ </Perils>
218
+ <Endorsement>
219
+ <ReasonApplied>ReasonApplied6</ReasonApplied>
220
+ <ShortWording>ShortWording6</ShortWording>
221
+ <Wording>Wording6</Wording>
222
+ </Endorsement>
223
+ <Endorsement>
224
+ <ReasonApplied>ReasonApplied7</ReasonApplied>
225
+ <ShortWording>ShortWording7</ShortWording>
226
+ <Wording>Wording7</Wording>
227
+ </Endorsement>
228
+ <Endorsement>
229
+ <ReasonApplied>ReasonApplied8</ReasonApplied>
230
+ <ShortWording>ShortWording8</ShortWording>
231
+ <Wording>Wording8</Wording>
232
+ </Endorsement>
233
+ </CoverDetail>
234
+ <CoverDetail>
235
+ <Code>
236
+ <Value>B205 B01</Value>
237
+ <ShortDescription>ShortDescription16</ShortDescription>
238
+ </Code>
239
+ <BasisCode>
240
+ <Value>B506 011</Value>
241
+ <ShortDescription>ShortDescription17</ShortDescription>
242
+ </BasisCode>
243
+ <AdjustmentMethodCode>
244
+ <Value>B652 005</Value>
245
+ <ShortDescription>ShortDescription18</ShortDescription>
246
+ </AdjustmentMethodCode>
247
+ <DayOnePercent>3.141592653589</DayOnePercent>
248
+ <SumInsured>
249
+ <Amount>922337203</Amount>
250
+ </SumInsured>
251
+ <Excess>
252
+ <Amount>922337203</Amount>
253
+ </Excess>
254
+ <Perils>
255
+ <Code>
256
+ <Value>B205 A16</Value>
257
+ <ShortDescription>ShortDescription19</ShortDescription>
258
+ </Code>
259
+ </Perils>
260
+ <Perils>
261
+ <Code>
262
+ <Value>B205 A16</Value>
263
+ <ShortDescription>ShortDescription20</ShortDescription>
264
+ </Code>
265
+ </Perils>
266
+ <Perils>
267
+ <Code>
268
+ <Value>B205 A16</Value>
269
+ <ShortDescription>ShortDescription21</ShortDescription>
270
+ </Code>
271
+ </Perils>
272
+ <Endorsement>
273
+ <ReasonApplied>ReasonApplied9</ReasonApplied>
274
+ <ShortWording>ShortWording9</ShortWording>
275
+ <Wording>Wording9</Wording>
276
+ </Endorsement>
277
+ <Endorsement>
278
+ <ReasonApplied>ReasonApplied10</ReasonApplied>
279
+ <ShortWording>ShortWording10</ShortWording>
280
+ <Wording>Wording10</Wording>
281
+ </Endorsement>
282
+ <Endorsement>
283
+ <ReasonApplied>ReasonApplied11</ReasonApplied>
284
+ <ShortWording>ShortWording11</ShortWording>
285
+ <Wording>Wording11</Wording>
286
+ </Endorsement>
287
+ </CoverDetail>
288
+ <CoverDetail>
289
+ <Code>
290
+ <Value>B205 B01</Value>
291
+ <ShortDescription>ShortDescription22</ShortDescription>
292
+ </Code>
293
+ <BasisCode>
294
+ <Value>B506 011</Value>
295
+ <ShortDescription>ShortDescription23</ShortDescription>
296
+ </BasisCode>
297
+ <AdjustmentMethodCode>
298
+ <Value>B652 005</Value>
299
+ <ShortDescription>ShortDescription24</ShortDescription>
300
+ </AdjustmentMethodCode>
301
+ <DayOnePercent>3.141592653589</DayOnePercent>
302
+ <SumInsured>
303
+ <Amount>922337203</Amount>
304
+ </SumInsured>
305
+ <Excess>
306
+ <Amount>922337203</Amount>
307
+ </Excess>
308
+ <Perils>
309
+ <Code>
310
+ <Value>B205 A16</Value>
311
+ <ShortDescription>ShortDescription25</ShortDescription>
312
+ </Code>
313
+ </Perils>
314
+ <Perils>
315
+ <Code>
316
+ <Value>B205 A16</Value>
317
+ <ShortDescription>ShortDescription26</ShortDescription>
318
+ </Code>
319
+ </Perils>
320
+ <Perils>
321
+ <Code>
322
+ <Value>B205 A16</Value>
323
+ <ShortDescription>ShortDescription27</ShortDescription>
324
+ </Code>
325
+ </Perils>
326
+ <Endorsement>
327
+ <ReasonApplied>ReasonApplied12</ReasonApplied>
328
+ <ShortWording>ShortWording12</ShortWording>
329
+ <Wording>Wording12</Wording>
330
+ </Endorsement>
331
+ <Endorsement>
332
+ <ReasonApplied>ReasonApplied13</ReasonApplied>
333
+ <ShortWording>ShortWording13</ShortWording>
334
+ <Wording>Wording13</Wording>
335
+ </Endorsement>
336
+ <Endorsement>
337
+ <ReasonApplied>ReasonApplied14</ReasonApplied>
338
+ <ShortWording>ShortWording14</ShortWording>
339
+ <Wording>Wording14</Wording>
340
+ </Endorsement>
341
+ </CoverDetail>
342
+ <AdditionalCover>
343
+ <Code>
344
+ <Value>B205 M10</Value>
345
+ <ShortDescription>ShortDescription28</ShortDescription>
346
+ <Description>Description6</Description>
347
+ </Code>
348
+ <ExcludedInd>
349
+ <Value>false</Value>
350
+ </ExcludedInd>
351
+ <SumInsured>
352
+ <Amount>922337203</Amount>
353
+ </SumInsured>
354
+ </AdditionalCover>
355
+ <AdditionalCover>
356
+ <Code>
357
+ <Value>B205 M10</Value>
358
+ <ShortDescription>ShortDescription29</ShortDescription>
359
+ <Description>Description7</Description>
360
+ </Code>
361
+ <ExcludedInd>
362
+ <Value>false</Value>
363
+ </ExcludedInd>
364
+ <SumInsured>
365
+ <Amount>922337203</Amount>
366
+ </SumInsured>
367
+ </AdditionalCover>
368
+ <AdditionalCover>
369
+ <Code>
370
+ <Value>B205 M10</Value>
371
+ <ShortDescription>ShortDescription30</ShortDescription>
372
+ <Description>Description8</Description>
373
+ </Code>
374
+ <ExcludedInd>
375
+ <Value>false</Value>
376
+ </ExcludedInd>
377
+ <SumInsured>
378
+ <Amount>922337203</Amount>
379
+ </SumInsured>
380
+ </AdditionalCover>
381
+ <PremiumQuoteBreakdown>
382
+ <GrossAmount>3.141592653589</GrossAmount>
383
+ <BrokerageAmount>3.141592653589</BrokerageAmount>
384
+ <BrokeragePercent>3.141592653589</BrokeragePercent>
385
+ <IPTAmount>3.141592653589</IPTAmount>
386
+ <IPTPercent>3.141592653589</IPTPercent>
387
+ <MinAppliedInd>
388
+ <Value>false</Value>
389
+ </MinAppliedInd>
390
+ </PremiumQuoteBreakdown>
391
+ </BuildingsCover>
392
+ <ContentsCover>
393
+ <ExcludedInd>
394
+ <Value>false</Value>
395
+ </ExcludedInd>
396
+ <CoverDetail>
397
+ <AdjustmentMethodCode>
398
+ <Value>B652 005</Value>
399
+ <ShortDescription>ShortDescription31</ShortDescription>
400
+ </AdjustmentMethodCode>
401
+ <DayOnePercent>3.141592653589</DayOnePercent>
402
+ <Excess>
403
+ <Amount>922337203</Amount>
404
+ </Excess>
405
+ <Perils>
406
+ <Code>
407
+ <Value>B205 A16</Value>
408
+ <ShortDescription>ShortDescription32</ShortDescription>
409
+ </Code>
410
+ </Perils>
411
+ <Perils>
412
+ <Code>
413
+ <Value>B205 A16</Value>
414
+ <ShortDescription>ShortDescription33</ShortDescription>
415
+ </Code>
416
+ </Perils>
417
+ <Perils>
418
+ <Code>
419
+ <Value>B205 A16</Value>
420
+ <ShortDescription>ShortDescription34</ShortDescription>
421
+ </Code>
422
+ </Perils>
423
+ <Breakdown>
424
+ <Code>
425
+ <Value>B550 315</Value>
426
+ <ShortDescription>ShortDescription35</ShortDescription>
427
+ <Description>Description9</Description>
428
+ </Code>
429
+ <SumInsured>
430
+ <Amount>922337203</Amount>
431
+ </SumInsured>
432
+ </Breakdown>
433
+ <Breakdown>
434
+ <Code>
435
+ <Value>B550 315</Value>
436
+ <ShortDescription>ShortDescription36</ShortDescription>
437
+ <Description>Description10</Description>
438
+ </Code>
439
+ <SumInsured>
440
+ <Amount>922337203</Amount>
441
+ </SumInsured>
442
+ </Breakdown>
443
+ <Breakdown>
444
+ <Code>
445
+ <Value>B550 315</Value>
446
+ <ShortDescription>ShortDescription37</ShortDescription>
447
+ <Description>Description11</Description>
448
+ </Code>
449
+ <SumInsured>
450
+ <Amount>922337203</Amount>
451
+ </SumInsured>
452
+ </Breakdown>
453
+ <OtherContents>
454
+ <Code>
455
+ <Value>B550 315</Value>
456
+ <ShortDescription>ShortDescription38</ShortDescription>
457
+ <Description>Description12</Description>
458
+ </Code>
459
+ <SumInsured>
460
+ <Amount>922337203</Amount>
461
+ </SumInsured>
462
+ </OtherContents>
463
+ <OtherContents>
464
+ <Code>
465
+ <Value>B550 315</Value>
466
+ <ShortDescription>ShortDescription39</ShortDescription>
467
+ <Description>Description13</Description>
468
+ </Code>
469
+ <SumInsured>
470
+ <Amount>922337203</Amount>
471
+ </SumInsured>
472
+ </OtherContents>
473
+ <OtherContents>
474
+ <Code>
475
+ <Value>B550 315</Value>
476
+ <ShortDescription>ShortDescription40</ShortDescription>
477
+ <Description>Description14</Description>
478
+ </Code>
479
+ <SumInsured>
480
+ <Amount>922337203</Amount>
481
+ </SumInsured>
482
+ </OtherContents>
483
+ <Endorsement>
484
+ <ReasonApplied>ReasonApplied15</ReasonApplied>
485
+ <ShortWording>ShortWording15</ShortWording>
486
+ <Wording>Wording15</Wording>
487
+ </Endorsement>
488
+ <Endorsement>
489
+ <ReasonApplied>ReasonApplied16</ReasonApplied>
490
+ <ShortWording>ShortWording16</ShortWording>
491
+ <Wording>Wording16</Wording>
492
+ </Endorsement>
493
+ <Endorsement>
494
+ <ReasonApplied>ReasonApplied17</ReasonApplied>
495
+ <ShortWording>ShortWording17</ShortWording>
496
+ <Wording>Wording17</Wording>
497
+ </Endorsement>
498
+ <PremiumQuoteBreakdown>
499
+ <GrossAmount>3.141592653589</GrossAmount>
500
+ <BrokerageAmount>3.141592653589</BrokerageAmount>
501
+ <BrokeragePercent>3.141592653589</BrokeragePercent>
502
+ <IPTAmount>3.141592653589</IPTAmount>
503
+ <IPTPercent>3.141592653589</IPTPercent>
504
+ <MinAppliedInd>
505
+ <Value>false</Value>
506
+ </MinAppliedInd>
507
+ </PremiumQuoteBreakdown>
508
+ <AdditionalCover>
509
+ <Code>
510
+ <Value>B205 161</Value>
511
+ <ShortDescription>ShortDescription41</ShortDescription>
512
+ <Description>Description15</Description>
513
+ </Code>
514
+ <ExcludedInd>
515
+ <Value>false</Value>
516
+ </ExcludedInd>
517
+ <SumInsured>
518
+ <Amount>922337203</Amount>
519
+ <Percent>3.141592653589</Percent>
520
+ </SumInsured>
521
+ </AdditionalCover>
522
+ <AdditionalCover>
523
+ <Code>
524
+ <Value>B205 161</Value>
525
+ <ShortDescription>ShortDescription42</ShortDescription>
526
+ <Description>Description16</Description>
527
+ </Code>
528
+ <ExcludedInd>
529
+ <Value>false</Value>
530
+ </ExcludedInd>
531
+ <SumInsured>
532
+ <Amount>922337203</Amount>
533
+ <Percent>3.141592653589</Percent>
534
+ </SumInsured>
535
+ </AdditionalCover>
536
+ <AdditionalCover>
537
+ <Code>
538
+ <Value>B205 161</Value>
539
+ <ShortDescription>ShortDescription43</ShortDescription>
540
+ <Description>Description17</Description>
541
+ </Code>
542
+ <ExcludedInd>
543
+ <Value>false</Value>
544
+ </ExcludedInd>
545
+ <SumInsured>
546
+ <Amount>922337203</Amount>
547
+ <Percent>3.141592653589</Percent>
548
+ </SumInsured>
549
+ </AdditionalCover>
550
+ </CoverDetail>
551
+ </ContentsCover>
552
+ <GlassCover>
553
+ <ExcludedInd>
554
+ <Value>false</Value>
555
+ </ExcludedInd>
556
+ <CoverDetail>
557
+ <SumInsured>
558
+ <Amount>922337203</Amount>
559
+ </SumInsured>
560
+ </CoverDetail>
561
+ <Excess>
562
+ <Amount>922337203</Amount>
563
+ </Excess>
564
+ <Endorsement>
565
+ <ReasonApplied>ReasonApplied18</ReasonApplied>
566
+ <ShortWording>ShortWording18</ShortWording>
567
+ <Wording>Wording18</Wording>
568
+ </Endorsement>
569
+ <Endorsement>
570
+ <ReasonApplied>ReasonApplied19</ReasonApplied>
571
+ <ShortWording>ShortWording19</ShortWording>
572
+ <Wording>Wording19</Wording>
573
+ </Endorsement>
574
+ <Endorsement>
575
+ <ReasonApplied>ReasonApplied20</ReasonApplied>
576
+ <ShortWording>ShortWording20</ShortWording>
577
+ <Wording>Wording20</Wording>
578
+ </Endorsement>
579
+ <PremiumQuoteBreakdown>
580
+ <GrossAmount>3.141592653589</GrossAmount>
581
+ <BrokerageAmount>3.141592653589</BrokerageAmount>
582
+ <BrokeragePercent>3.141592653589</BrokeragePercent>
583
+ <IPTAmount>3.141592653589</IPTAmount>
584
+ <IPTPercent>3.141592653589</IPTPercent>
585
+ <MinAppliedInd>
586
+ <Value>false</Value>
587
+ </MinAppliedInd>
588
+ </PremiumQuoteBreakdown>
589
+ </GlassCover>
590
+ <DeteriorationOfStockCover>
591
+ <ExcludedInd>
592
+ <Value>false</Value>
593
+ </ExcludedInd>
594
+ <CoverDetail>
595
+ <Refrigerator>
596
+ <Id>Id1</Id>
597
+ <SumInsured>
598
+ <Amount>922337203</Amount>
599
+ </SumInsured>
600
+ </Refrigerator>
601
+ <Refrigerator>
602
+ <Id>Id2</Id>
603
+ <SumInsured>
604
+ <Amount>922337203</Amount>
605
+ </SumInsured>
606
+ </Refrigerator>
607
+ <Refrigerator>
608
+ <Id>Id3</Id>
609
+ <SumInsured>
610
+ <Amount>922337203</Amount>
611
+ </SumInsured>
612
+ </Refrigerator>
613
+ <Excess>
614
+ <Amount>922337203</Amount>
615
+ </Excess>
616
+ <Endorsement>
617
+ <ReasonApplied>ReasonApplied21</ReasonApplied>
618
+ <ShortWording>ShortWording21</ShortWording>
619
+ <Wording>Wording21</Wording>
620
+ </Endorsement>
621
+ <Endorsement>
622
+ <ReasonApplied>ReasonApplied22</ReasonApplied>
623
+ <ShortWording>ShortWording22</ShortWording>
624
+ <Wording>Wording22</Wording>
625
+ </Endorsement>
626
+ <Endorsement>
627
+ <ReasonApplied>ReasonApplied23</ReasonApplied>
628
+ <ShortWording>ShortWording23</ShortWording>
629
+ <Wording>Wording23</Wording>
630
+ </Endorsement>
631
+ <PremiumQuoteBreakdown>
632
+ <GrossAmount>3.141592653589</GrossAmount>
633
+ <BrokerageAmount>3.141592653589</BrokerageAmount>
634
+ <BrokeragePercent>3.141592653589</BrokeragePercent>
635
+ <IPTAmount>3.141592653589</IPTAmount>
636
+ <IPTPercent>3.141592653589</IPTPercent>
637
+ <MinAppliedInd>
638
+ <Value>false</Value>
639
+ </MinAppliedInd>
640
+ </PremiumQuoteBreakdown>
641
+ </CoverDetail>
642
+ </DeteriorationOfStockCover>
643
+ <ComputerBreakdownCover>
644
+ <ExcludedInd>
645
+ <Value>false</Value>
646
+ </ExcludedInd>
647
+ <CoverDetail>
648
+ <Computer>
649
+ <Id>Id4</Id>
650
+ <LocationCode>
651
+ <Value>B657 003</Value>
652
+ <ShortDescription>ShortDescription44</ShortDescription>
653
+ </LocationCode>
654
+ <SumInsured>
655
+ <Amount>922337203</Amount>
656
+ </SumInsured>
657
+ </Computer>
658
+ <Computer>
659
+ <Id>Id5</Id>
660
+ <LocationCode>
661
+ <Value>B657 003</Value>
662
+ <ShortDescription>ShortDescription45</ShortDescription>
663
+ </LocationCode>
664
+ <SumInsured>
665
+ <Amount>922337203</Amount>
666
+ </SumInsured>
667
+ </Computer>
668
+ <Computer>
669
+ <Id>Id6</Id>
670
+ <LocationCode>
671
+ <Value>B657 003</Value>
672
+ <ShortDescription>ShortDescription46</ShortDescription>
673
+ </LocationCode>
674
+ <SumInsured>
675
+ <Amount>922337203</Amount>
676
+ </SumInsured>
677
+ </Computer>
678
+ <Excess>
679
+ <Amount>922337203</Amount>
680
+ </Excess>
681
+ <Endorsement>
682
+ <ReasonApplied>ReasonApplied24</ReasonApplied>
683
+ <ShortWording>ShortWording24</ShortWording>
684
+ <Wording>Wording24</Wording>
685
+ </Endorsement>
686
+ <Endorsement>
687
+ <ReasonApplied>ReasonApplied25</ReasonApplied>
688
+ <ShortWording>ShortWording25</ShortWording>
689
+ <Wording>Wording25</Wording>
690
+ </Endorsement>
691
+ <Endorsement>
692
+ <ReasonApplied>ReasonApplied26</ReasonApplied>
693
+ <ShortWording>ShortWording26</ShortWording>
694
+ <Wording>Wording26</Wording>
695
+ </Endorsement>
696
+ <PremiumQuoteBreakdown>
697
+ <GrossAmount>3.141592653589</GrossAmount>
698
+ <BrokerageAmount>3.141592653589</BrokerageAmount>
699
+ <BrokeragePercent>3.141592653589</BrokeragePercent>
700
+ <IPTAmount>3.141592653589</IPTAmount>
701
+ <IPTPercent>3.141592653589</IPTPercent>
702
+ <MinAppliedInd>
703
+ <Value>false</Value>
704
+ </MinAppliedInd>
705
+ </PremiumQuoteBreakdown>
706
+ <AdditionalCover>
707
+ <Code>
708
+ <Value>B205 A18</Value>
709
+ <ShortDescription>ShortDescription47</ShortDescription>
710
+ </Code>
711
+ <ExcludedInd>
712
+ <Value>false</Value>
713
+ </ExcludedInd>
714
+ <SumInsured>
715
+ <Amount>922337203</Amount>
716
+ </SumInsured>
717
+ </AdditionalCover>
718
+ <AdditionalCover>
719
+ <Code>
720
+ <Value>B205 A18</Value>
721
+ <ShortDescription>ShortDescription48</ShortDescription>
722
+ </Code>
723
+ <ExcludedInd>
724
+ <Value>false</Value>
725
+ </ExcludedInd>
726
+ <SumInsured>
727
+ <Amount>922337203</Amount>
728
+ </SumInsured>
729
+ </AdditionalCover>
730
+ <AdditionalCover>
731
+ <Code>
732
+ <Value>B205 A18</Value>
733
+ <ShortDescription>ShortDescription49</ShortDescription>
734
+ </Code>
735
+ <ExcludedInd>
736
+ <Value>false</Value>
737
+ </ExcludedInd>
738
+ <SumInsured>
739
+ <Amount>922337203</Amount>
740
+ </SumInsured>
741
+ </AdditionalCover>
742
+ </CoverDetail>
743
+ </ComputerBreakdownCover>
744
+ <QuoteCondition>
745
+ <ItemTypeCode>
746
+ <Value>B579 337</Value>
747
+ <ShortDescription>ShortDescription50</ShortDescription>
748
+ <Description>Description18</Description>
749
+ </ItemTypeCode>
750
+ </QuoteCondition>
751
+ <QuoteCondition>
752
+ <ItemTypeCode>
753
+ <Value>B579 337</Value>
754
+ <ShortDescription>ShortDescription51</ShortDescription>
755
+ <Description>Description19</Description>
756
+ </ItemTypeCode>
757
+ </QuoteCondition>
758
+ <QuoteCondition>
759
+ <ItemTypeCode>
760
+ <Value>B579 337</Value>
761
+ <ShortDescription>ShortDescription52</ShortDescription>
762
+ <Description>Description20</Description>
763
+ </ItemTypeCode>
764
+ </QuoteCondition>
765
+ </Premises>
766
+ <AllRisksCover>
767
+ <ExcludedInd>
768
+ <Value>false</Value>
769
+ </ExcludedInd>
770
+ <CoverDetail>
771
+ <BasisCode>
772
+ <Value>B506 011</Value>
773
+ <ShortDescription>ShortDescription139</ShortDescription>
774
+ </BasisCode>
775
+ <SpecifiedItem>
776
+ <Id>Id21</Id>
777
+ <TypeCode>
778
+ <Value>B550 049</Value>
779
+ <ShortDescription>ShortDescription140</ShortDescription>
780
+ <Description>Description51</Description>
781
+ </TypeCode>
782
+ <SumInsured>
783
+ <Amount>922337203</Amount>
784
+ </SumInsured>
785
+ <MaxValueOneItem>922337203</MaxValueOneItem>
786
+ <TerritorialLimit>
787
+ <TerritoryCode>
788
+ <Value>B657 003</Value>
789
+ <ShortDescription>ShortDescription141</ShortDescription>
790
+ </TerritoryCode>
791
+ </TerritorialLimit>
792
+ </SpecifiedItem>
793
+ <SpecifiedItem>
794
+ <Id>Id22</Id>
795
+ <TypeCode>
796
+ <Value>B550 049</Value>
797
+ <ShortDescription>ShortDescription142</ShortDescription>
798
+ <Description>Description52</Description>
799
+ </TypeCode>
800
+ <SumInsured>
801
+ <Amount>922337203</Amount>
802
+ </SumInsured>
803
+ <MaxValueOneItem>922337203</MaxValueOneItem>
804
+ <TerritorialLimit>
805
+ <TerritoryCode>
806
+ <Value>B657 003</Value>
807
+ <ShortDescription>ShortDescription143</ShortDescription>
808
+ </TerritoryCode>
809
+ </TerritorialLimit>
810
+ </SpecifiedItem>
811
+ <SpecifiedItem>
812
+ <Id>Id23</Id>
813
+ <TypeCode>
814
+ <Value>B550 049</Value>
815
+ <ShortDescription>ShortDescription144</ShortDescription>
816
+ <Description>Description53</Description>
817
+ </TypeCode>
818
+ <SumInsured>
819
+ <Amount>922337203</Amount>
820
+ </SumInsured>
821
+ <MaxValueOneItem>922337203</MaxValueOneItem>
822
+ <TerritorialLimit>
823
+ <TerritoryCode>
824
+ <Value>B657 003</Value>
825
+ <ShortDescription>ShortDescription145</ShortDescription>
826
+ </TerritoryCode>
827
+ </TerritorialLimit>
828
+ </SpecifiedItem>
829
+ <Excess>
830
+ <Amount>922337203</Amount>
831
+ </Excess>
832
+ <Endorsement>
833
+ <ReasonApplied>ReasonApplied75</ReasonApplied>
834
+ <ShortWording>ShortWording75</ShortWording>
835
+ <Wording>Wording75</Wording>
836
+ </Endorsement>
837
+ <Endorsement>
838
+ <ReasonApplied>ReasonApplied76</ReasonApplied>
839
+ <ShortWording>ShortWording76</ShortWording>
840
+ <Wording>Wording76</Wording>
841
+ </Endorsement>
842
+ <Endorsement>
843
+ <ReasonApplied>ReasonApplied77</ReasonApplied>
844
+ <ShortWording>ShortWording77</ShortWording>
845
+ <Wording>Wording77</Wording>
846
+ </Endorsement>
847
+ <PremiumQuoteBreakdown>
848
+ <GrossAmount>3.141592653589</GrossAmount>
849
+ <BrokerageAmount>3.141592653589</BrokerageAmount>
850
+ <BrokeragePercent>3.141592653589</BrokeragePercent>
851
+ <IPTAmount>3.141592653589</IPTAmount>
852
+ <IPTPercent>3.141592653589</IPTPercent>
853
+ <MinAppliedInd>
854
+ <Value>false</Value>
855
+ </MinAppliedInd>
856
+ </PremiumQuoteBreakdown>
857
+ </CoverDetail>
858
+ </AllRisksCover>
859
+ <BusinessInterruptionCover>
860
+ <ExcludedInd>
861
+ <Value>false</Value>
862
+ </ExcludedInd>
863
+ <CoverDetail>
864
+ <BasisCode>
865
+ <Value>B506 126</Value>
866
+ <ShortDescription>ShortDescription146</ShortDescription>
867
+ </BasisCode>
868
+ <Premises>
869
+ <Id>Id24</Id>
870
+ </Premises>
871
+ <Premises>
872
+ <Id>Id25</Id>
873
+ </Premises>
874
+ <Premises>
875
+ <Id>Id26</Id>
876
+ </Premises>
877
+ <IndemnityPeriod>922337203</IndemnityPeriod>
878
+ <SumInsured>
879
+ <Amount>922337203</Amount>
880
+ </SumInsured>
881
+ <AdjustmentMethodCode>
882
+ <Value>B652 001</Value>
883
+ <ShortDescription>ShortDescription147</ShortDescription>
884
+ </AdjustmentMethodCode>
885
+ <Excess>
886
+ <Amount>922337203</Amount>
887
+ </Excess>
888
+ <Endorsement>
889
+ <ReasonApplied>ReasonApplied78</ReasonApplied>
890
+ <ShortWording>ShortWording78</ShortWording>
891
+ <Wording>Wording78</Wording>
892
+ </Endorsement>
893
+ <Endorsement>
894
+ <ReasonApplied>ReasonApplied79</ReasonApplied>
895
+ <ShortWording>ShortWording79</ShortWording>
896
+ <Wording>Wording79</Wording>
897
+ </Endorsement>
898
+ <Endorsement>
899
+ <ReasonApplied>ReasonApplied80</ReasonApplied>
900
+ <ShortWording>ShortWording80</ShortWording>
901
+ <Wording>Wording80</Wording>
902
+ </Endorsement>
903
+ </CoverDetail>
904
+ <CoverDetail>
905
+ <BasisCode>
906
+ <Value>B506 126</Value>
907
+ <ShortDescription>ShortDescription148</ShortDescription>
908
+ </BasisCode>
909
+ <Premises>
910
+ <Id>Id27</Id>
911
+ </Premises>
912
+ <Premises>
913
+ <Id>Id28</Id>
914
+ </Premises>
915
+ <Premises>
916
+ <Id>Id29</Id>
917
+ </Premises>
918
+ <IndemnityPeriod>922337203</IndemnityPeriod>
919
+ <SumInsured>
920
+ <Amount>922337203</Amount>
921
+ </SumInsured>
922
+ <AdjustmentMethodCode>
923
+ <Value>B652 001</Value>
924
+ <ShortDescription>ShortDescription149</ShortDescription>
925
+ </AdjustmentMethodCode>
926
+ <Excess>
927
+ <Amount>922337203</Amount>
928
+ </Excess>
929
+ <Endorsement>
930
+ <ReasonApplied>ReasonApplied81</ReasonApplied>
931
+ <ShortWording>ShortWording81</ShortWording>
932
+ <Wording>Wording81</Wording>
933
+ </Endorsement>
934
+ <Endorsement>
935
+ <ReasonApplied>ReasonApplied82</ReasonApplied>
936
+ <ShortWording>ShortWording82</ShortWording>
937
+ <Wording>Wording82</Wording>
938
+ </Endorsement>
939
+ <Endorsement>
940
+ <ReasonApplied>ReasonApplied83</ReasonApplied>
941
+ <ShortWording>ShortWording83</ShortWording>
942
+ <Wording>Wording83</Wording>
943
+ </Endorsement>
944
+ </CoverDetail>
945
+ <CoverDetail>
946
+ <BasisCode>
947
+ <Value>B506 126</Value>
948
+ <ShortDescription>ShortDescription150</ShortDescription>
949
+ </BasisCode>
950
+ <Premises>
951
+ <Id>Id30</Id>
952
+ </Premises>
953
+ <Premises>
954
+ <Id>Id31</Id>
955
+ </Premises>
956
+ <Premises>
957
+ <Id>Id32</Id>
958
+ </Premises>
959
+ <IndemnityPeriod>922337203</IndemnityPeriod>
960
+ <SumInsured>
961
+ <Amount>922337203</Amount>
962
+ </SumInsured>
963
+ <AdjustmentMethodCode>
964
+ <Value>B652 001</Value>
965
+ <ShortDescription>ShortDescription151</ShortDescription>
966
+ </AdjustmentMethodCode>
967
+ <Excess>
968
+ <Amount>922337203</Amount>
969
+ </Excess>
970
+ <Endorsement>
971
+ <ReasonApplied>ReasonApplied84</ReasonApplied>
972
+ <ShortWording>ShortWording84</ShortWording>
973
+ <Wording>Wording84</Wording>
974
+ </Endorsement>
975
+ <Endorsement>
976
+ <ReasonApplied>ReasonApplied85</ReasonApplied>
977
+ <ShortWording>ShortWording85</ShortWording>
978
+ <Wording>Wording85</Wording>
979
+ </Endorsement>
980
+ <Endorsement>
981
+ <ReasonApplied>ReasonApplied86</ReasonApplied>
982
+ <ShortWording>ShortWording86</ShortWording>
983
+ <Wording>Wording86</Wording>
984
+ </Endorsement>
985
+ </CoverDetail>
986
+ <AdditionalCover>
987
+ <Code>
988
+ <Value>B205 238</Value>
989
+ <ShortDescription>ShortDescription152</ShortDescription>
990
+ </Code>
991
+ <ExcludedInd>
992
+ <Value>false</Value>
993
+ </ExcludedInd>
994
+ <SumInsured>
995
+ <Amount>922337203</Amount>
996
+ <Percent>3.141592653589</Percent>
997
+ </SumInsured>
998
+ <Excess>
999
+ <Amount>922337203</Amount>
1000
+ </Excess>
1001
+ <Endorsement>
1002
+ <ReasonApplied>ReasonApplied87</ReasonApplied>
1003
+ <ShortWording>ShortWording87</ShortWording>
1004
+ <Wording>Wording87</Wording>
1005
+ </Endorsement>
1006
+ <Endorsement>
1007
+ <ReasonApplied>ReasonApplied88</ReasonApplied>
1008
+ <ShortWording>ShortWording88</ShortWording>
1009
+ <Wording>Wording88</Wording>
1010
+ </Endorsement>
1011
+ <Endorsement>
1012
+ <ReasonApplied>ReasonApplied89</ReasonApplied>
1013
+ <ShortWording>ShortWording89</ShortWording>
1014
+ <Wording>Wording89</Wording>
1015
+ </Endorsement>
1016
+ </AdditionalCover>
1017
+ <AdditionalCover>
1018
+ <Code>
1019
+ <Value>B205 238</Value>
1020
+ <ShortDescription>ShortDescription153</ShortDescription>
1021
+ </Code>
1022
+ <ExcludedInd>
1023
+ <Value>false</Value>
1024
+ </ExcludedInd>
1025
+ <SumInsured>
1026
+ <Amount>922337203</Amount>
1027
+ <Percent>3.141592653589</Percent>
1028
+ </SumInsured>
1029
+ <Excess>
1030
+ <Amount>922337203</Amount>
1031
+ </Excess>
1032
+ <Endorsement>
1033
+ <ReasonApplied>ReasonApplied90</ReasonApplied>
1034
+ <ShortWording>ShortWording90</ShortWording>
1035
+ <Wording>Wording90</Wording>
1036
+ </Endorsement>
1037
+ <Endorsement>
1038
+ <ReasonApplied>ReasonApplied91</ReasonApplied>
1039
+ <ShortWording>ShortWording91</ShortWording>
1040
+ <Wording>Wording91</Wording>
1041
+ </Endorsement>
1042
+ <Endorsement>
1043
+ <ReasonApplied>ReasonApplied92</ReasonApplied>
1044
+ <ShortWording>ShortWording92</ShortWording>
1045
+ <Wording>Wording92</Wording>
1046
+ </Endorsement>
1047
+ </AdditionalCover>
1048
+ <AdditionalCover>
1049
+ <Code>
1050
+ <Value>B205 238</Value>
1051
+ <ShortDescription>ShortDescription154</ShortDescription>
1052
+ </Code>
1053
+ <ExcludedInd>
1054
+ <Value>false</Value>
1055
+ </ExcludedInd>
1056
+ <SumInsured>
1057
+ <Amount>922337203</Amount>
1058
+ <Percent>3.141592653589</Percent>
1059
+ </SumInsured>
1060
+ <Excess>
1061
+ <Amount>922337203</Amount>
1062
+ </Excess>
1063
+ <Endorsement>
1064
+ <ReasonApplied>ReasonApplied93</ReasonApplied>
1065
+ <ShortWording>ShortWording93</ShortWording>
1066
+ <Wording>Wording93</Wording>
1067
+ </Endorsement>
1068
+ <Endorsement>
1069
+ <ReasonApplied>ReasonApplied94</ReasonApplied>
1070
+ <ShortWording>ShortWording94</ShortWording>
1071
+ <Wording>Wording94</Wording>
1072
+ </Endorsement>
1073
+ <Endorsement>
1074
+ <ReasonApplied>ReasonApplied95</ReasonApplied>
1075
+ <ShortWording>ShortWording95</ShortWording>
1076
+ <Wording>Wording95</Wording>
1077
+ </Endorsement>
1078
+ </AdditionalCover>
1079
+ <Perils>
1080
+ <Code>
1081
+ <Value>B205 A16</Value>
1082
+ <ShortDescription>ShortDescription155</ShortDescription>
1083
+ </Code>
1084
+ </Perils>
1085
+ <Perils>
1086
+ <Code>
1087
+ <Value>B205 A16</Value>
1088
+ <ShortDescription>ShortDescription156</ShortDescription>
1089
+ </Code>
1090
+ </Perils>
1091
+ <Perils>
1092
+ <Code>
1093
+ <Value>B205 A16</Value>
1094
+ <ShortDescription>ShortDescription157</ShortDescription>
1095
+ </Code>
1096
+ </Perils>
1097
+ <PremiumQuoteBreakdown>
1098
+ <GrossAmount>3.141592653589</GrossAmount>
1099
+ <BrokerageAmount>3.141592653589</BrokerageAmount>
1100
+ <BrokeragePercent>3.141592653589</BrokeragePercent>
1101
+ <IPTAmount>3.141592653589</IPTAmount>
1102
+ <IPTPercent>3.141592653589</IPTPercent>
1103
+ <MinAppliedInd>
1104
+ <Value>false</Value>
1105
+ </MinAppliedInd>
1106
+ </PremiumQuoteBreakdown>
1107
+ </BusinessInterruptionCover>
1108
+ <MoneyCover>
1109
+ <ExcludedInd>
1110
+ <Value>false</Value>
1111
+ </ExcludedInd>
1112
+ <CoverDetail>
1113
+ <CoverBreakdown>
1114
+ <Code>
1115
+ <Value>B205 M24</Value>
1116
+ <ShortDescription>ShortDescription158</ShortDescription>
1117
+ </Code>
1118
+ <SumInsured>
1119
+ <Amount>922337203</Amount>
1120
+ </SumInsured>
1121
+ <Excess>
1122
+ <Amount>922337203</Amount>
1123
+ </Excess>
1124
+ </CoverBreakdown>
1125
+ <CoverBreakdown>
1126
+ <Code>
1127
+ <Value>B205 M24</Value>
1128
+ <ShortDescription>ShortDescription159</ShortDescription>
1129
+ </Code>
1130
+ <SumInsured>
1131
+ <Amount>922337203</Amount>
1132
+ </SumInsured>
1133
+ <Excess>
1134
+ <Amount>922337203</Amount>
1135
+ </Excess>
1136
+ </CoverBreakdown>
1137
+ <CoverBreakdown>
1138
+ <Code>
1139
+ <Value>B205 M24</Value>
1140
+ <ShortDescription>ShortDescription160</ShortDescription>
1141
+ </Code>
1142
+ <SumInsured>
1143
+ <Amount>922337203</Amount>
1144
+ </SumInsured>
1145
+ <Excess>
1146
+ <Amount>922337203</Amount>
1147
+ </Excess>
1148
+ </CoverBreakdown>
1149
+ <SecurityCompany>
1150
+ <Limit>
1151
+ <Amount>922337203</Amount>
1152
+ </Limit>
1153
+ </SecurityCompany>
1154
+ <Excess>
1155
+ <Amount>922337203</Amount>
1156
+ </Excess>
1157
+ <Endorsement>
1158
+ <ReasonApplied>ReasonApplied96</ReasonApplied>
1159
+ <ShortWording>ShortWording96</ShortWording>
1160
+ <Wording>Wording96</Wording>
1161
+ </Endorsement>
1162
+ <Endorsement>
1163
+ <ReasonApplied>ReasonApplied97</ReasonApplied>
1164
+ <ShortWording>ShortWording97</ShortWording>
1165
+ <Wording>Wording97</Wording>
1166
+ </Endorsement>
1167
+ <Endorsement>
1168
+ <ReasonApplied>ReasonApplied98</ReasonApplied>
1169
+ <ShortWording>ShortWording98</ShortWording>
1170
+ <Wording>Wording98</Wording>
1171
+ </Endorsement>
1172
+ <PremiumQuoteBreakdown>
1173
+ <GrossAmount>3.141592653589</GrossAmount>
1174
+ <BrokerageAmount>3.141592653589</BrokerageAmount>
1175
+ <BrokeragePercent>3.141592653589</BrokeragePercent>
1176
+ <IPTAmount>3.141592653589</IPTAmount>
1177
+ <IPTPercent>3.141592653589</IPTPercent>
1178
+ <MinAppliedInd>
1179
+ <Value>false</Value>
1180
+ </MinAppliedInd>
1181
+ </PremiumQuoteBreakdown>
1182
+ </CoverDetail>
1183
+ </MoneyCover>
1184
+ <AssaultCover>
1185
+ <ExcludedInd>
1186
+ <Value>false</Value>
1187
+ </ExcludedInd>
1188
+ <CoverDetail>
1189
+ <DeathBenefit>
1190
+ <Amount>922337203</Amount>
1191
+ </DeathBenefit>
1192
+ <WeeklyBenefit>
1193
+ <Amount>922337203</Amount>
1194
+ <Duration>
1195
+ <Unit>922337203</Unit>
1196
+ </Duration>
1197
+ </WeeklyBenefit>
1198
+ <ExcessPeriod>
1199
+ <Unit>922337203</Unit>
1200
+ </ExcessPeriod>
1201
+ <Endorsement>
1202
+ <ReasonApplied>ReasonApplied99</ReasonApplied>
1203
+ <ShortWording>ShortWording99</ShortWording>
1204
+ <Wording>Wording99</Wording>
1205
+ </Endorsement>
1206
+ <Endorsement>
1207
+ <ReasonApplied>ReasonApplied100</ReasonApplied>
1208
+ <ShortWording>ShortWording100</ShortWording>
1209
+ <Wording>Wording100</Wording>
1210
+ </Endorsement>
1211
+ <Endorsement>
1212
+ <ReasonApplied>ReasonApplied101</ReasonApplied>
1213
+ <ShortWording>ShortWording101</ShortWording>
1214
+ <Wording>Wording101</Wording>
1215
+ </Endorsement>
1216
+ <PremiumQuoteBreakdown>
1217
+ <GrossAmount>3.141592653589</GrossAmount>
1218
+ <BrokerageAmount>3.141592653589</BrokerageAmount>
1219
+ <BrokeragePercent>3.141592653589</BrokeragePercent>
1220
+ <IPTAmount>3.141592653589</IPTAmount>
1221
+ <IPTPercent>3.141592653589</IPTPercent>
1222
+ <MinAppliedInd>
1223
+ <Value>false</Value>
1224
+ </MinAppliedInd>
1225
+ </PremiumQuoteBreakdown>
1226
+ </CoverDetail>
1227
+ </AssaultCover>
1228
+ <EmployersLiabilityCover>
1229
+ <ExcludedInd>
1230
+ <Value>false</Value>
1231
+ </ExcludedInd>
1232
+ <CoverDetail>
1233
+ <SumInsured>
1234
+ <Amount>922337203</Amount>
1235
+ </SumInsured>
1236
+ <Endorsement>
1237
+ <ReasonApplied>ReasonApplied102</ReasonApplied>
1238
+ <ShortWording>ShortWording102</ShortWording>
1239
+ <Wording>Wording102</Wording>
1240
+ </Endorsement>
1241
+ <Endorsement>
1242
+ <ReasonApplied>ReasonApplied103</ReasonApplied>
1243
+ <ShortWording>ShortWording103</ShortWording>
1244
+ <Wording>Wording103</Wording>
1245
+ </Endorsement>
1246
+ <Endorsement>
1247
+ <ReasonApplied>ReasonApplied104</ReasonApplied>
1248
+ <ShortWording>ShortWording104</ShortWording>
1249
+ <Wording>Wording104</Wording>
1250
+ </Endorsement>
1251
+ <PremiumQuoteBreakdown>
1252
+ <GrossAmount>3.141592653589</GrossAmount>
1253
+ <BrokerageAmount>3.141592653589</BrokerageAmount>
1254
+ <BrokeragePercent>3.141592653589</BrokeragePercent>
1255
+ <IPTAmount>3.141592653589</IPTAmount>
1256
+ <IPTPercent>3.141592653589</IPTPercent>
1257
+ <MinAppliedInd>
1258
+ <Value>false</Value>
1259
+ </MinAppliedInd>
1260
+ </PremiumQuoteBreakdown>
1261
+ </CoverDetail>
1262
+ </EmployersLiabilityCover>
1263
+ <PublicLiabilityCover>
1264
+ <ExcludedInd>
1265
+ <Value>false</Value>
1266
+ </ExcludedInd>
1267
+ <CoverDetail>
1268
+ <SumInsured>
1269
+ <Amount>922337203</Amount>
1270
+ </SumInsured>
1271
+ <Excess>
1272
+ <Amount>922337203</Amount>
1273
+ </Excess>
1274
+ <AdditionalCover>
1275
+ <Code>
1276
+ <Value>B205 041</Value>
1277
+ <ShortDescription>ShortDescription161</ShortDescription>
1278
+ </Code>
1279
+ <ExcludedInd>
1280
+ <Value>false</Value>
1281
+ </ExcludedInd>
1282
+ <SumInsured>
1283
+ <Amount>922337203</Amount>
1284
+ </SumInsured>
1285
+ </AdditionalCover>
1286
+ <AdditionalCover>
1287
+ <Code>
1288
+ <Value>B205 041</Value>
1289
+ <ShortDescription>ShortDescription162</ShortDescription>
1290
+ </Code>
1291
+ <ExcludedInd>
1292
+ <Value>false</Value>
1293
+ </ExcludedInd>
1294
+ <SumInsured>
1295
+ <Amount>922337203</Amount>
1296
+ </SumInsured>
1297
+ </AdditionalCover>
1298
+ <AdditionalCover>
1299
+ <Code>
1300
+ <Value>B205 041</Value>
1301
+ <ShortDescription>ShortDescription163</ShortDescription>
1302
+ </Code>
1303
+ <ExcludedInd>
1304
+ <Value>false</Value>
1305
+ </ExcludedInd>
1306
+ <SumInsured>
1307
+ <Amount>922337203</Amount>
1308
+ </SumInsured>
1309
+ </AdditionalCover>
1310
+ <Endorsement>
1311
+ <ReasonApplied>ReasonApplied105</ReasonApplied>
1312
+ <ShortWording>ShortWording105</ShortWording>
1313
+ <Wording>Wording105</Wording>
1314
+ </Endorsement>
1315
+ <Endorsement>
1316
+ <ReasonApplied>ReasonApplied106</ReasonApplied>
1317
+ <ShortWording>ShortWording106</ShortWording>
1318
+ <Wording>Wording106</Wording>
1319
+ </Endorsement>
1320
+ <Endorsement>
1321
+ <ReasonApplied>ReasonApplied107</ReasonApplied>
1322
+ <ShortWording>ShortWording107</ShortWording>
1323
+ <Wording>Wording107</Wording>
1324
+ </Endorsement>
1325
+ <PremiumQuoteBreakdown>
1326
+ <GrossAmount>3.141592653589</GrossAmount>
1327
+ <BrokerageAmount>3.141592653589</BrokerageAmount>
1328
+ <BrokeragePercent>3.141592653589</BrokeragePercent>
1329
+ <IPTAmount>3.141592653589</IPTAmount>
1330
+ <IPTPercent>3.141592653589</IPTPercent>
1331
+ <MinAppliedInd>
1332
+ <Value>false</Value>
1333
+ </MinAppliedInd>
1334
+ </PremiumQuoteBreakdown>
1335
+ </CoverDetail>
1336
+ </PublicLiabilityCover>
1337
+ <ProductLiabilityCover>
1338
+ <ExcludedInd>
1339
+ <Value>false</Value>
1340
+ </ExcludedInd>
1341
+ <CoverDetail>
1342
+ <SumInsured>
1343
+ <Amount>922337203</Amount>
1344
+ </SumInsured>
1345
+ <Excess>
1346
+ <Amount>922337203</Amount>
1347
+ </Excess>
1348
+ <Endorsement>
1349
+ <ReasonApplied>ReasonApplied108</ReasonApplied>
1350
+ <ShortWording>ShortWording108</ShortWording>
1351
+ <Wording>Wording108</Wording>
1352
+ </Endorsement>
1353
+ <Endorsement>
1354
+ <ReasonApplied>ReasonApplied109</ReasonApplied>
1355
+ <ShortWording>ShortWording109</ShortWording>
1356
+ <Wording>Wording109</Wording>
1357
+ </Endorsement>
1358
+ <Endorsement>
1359
+ <ReasonApplied>ReasonApplied110</ReasonApplied>
1360
+ <ShortWording>ShortWording110</ShortWording>
1361
+ <Wording>Wording110</Wording>
1362
+ </Endorsement>
1363
+ <PremiumQuoteBreakdown>
1364
+ <GrossAmount>3.141592653589</GrossAmount>
1365
+ <BrokerageAmount>3.141592653589</BrokerageAmount>
1366
+ <BrokeragePercent>3.141592653589</BrokeragePercent>
1367
+ <IPTAmount>3.141592653589</IPTAmount>
1368
+ <IPTPercent>3.141592653589</IPTPercent>
1369
+ <MinAppliedInd>
1370
+ <Value>false</Value>
1371
+ </MinAppliedInd>
1372
+ </PremiumQuoteBreakdown>
1373
+ </CoverDetail>
1374
+ </ProductLiabilityCover>
1375
+ <BookDebtsCover>
1376
+ <ExcludedInd>
1377
+ <Value>false</Value>
1378
+ </ExcludedInd>
1379
+ <CoverDetail>
1380
+ <SumInsured>
1381
+ <Amount>922337203</Amount>
1382
+ </SumInsured>
1383
+ <Excess>
1384
+ <Amount>922337203</Amount>
1385
+ </Excess>
1386
+ <Endorsement>
1387
+ <ReasonApplied>ReasonApplied111</ReasonApplied>
1388
+ <ShortWording>ShortWording111</ShortWording>
1389
+ <Wording>Wording111</Wording>
1390
+ </Endorsement>
1391
+ <Endorsement>
1392
+ <ReasonApplied>ReasonApplied112</ReasonApplied>
1393
+ <ShortWording>ShortWording112</ShortWording>
1394
+ <Wording>Wording112</Wording>
1395
+ </Endorsement>
1396
+ <Endorsement>
1397
+ <ReasonApplied>ReasonApplied113</ReasonApplied>
1398
+ <ShortWording>ShortWording113</ShortWording>
1399
+ <Wording>Wording113</Wording>
1400
+ </Endorsement>
1401
+ <PremiumQuoteBreakdown>
1402
+ <GrossAmount>3.141592653589</GrossAmount>
1403
+ <BrokerageAmount>3.141592653589</BrokerageAmount>
1404
+ <BrokeragePercent>3.141592653589</BrokeragePercent>
1405
+ <IPTAmount>3.141592653589</IPTAmount>
1406
+ <IPTPercent>3.141592653589</IPTPercent>
1407
+ <MinAppliedInd>
1408
+ <Value>false</Value>
1409
+ </MinAppliedInd>
1410
+ </PremiumQuoteBreakdown>
1411
+ </CoverDetail>
1412
+ </BookDebtsCover>
1413
+ <FidelityGuaranteeCover>
1414
+ <ExcludedInd>
1415
+ <Value>false</Value>
1416
+ </ExcludedInd>
1417
+ <CoverDetail>
1418
+ <SumInsured>
1419
+ <Amount>922337203</Amount>
1420
+ </SumInsured>
1421
+ <Excess>
1422
+ <Amount>922337203</Amount>
1423
+ </Excess>
1424
+ <NonEmployeesCover>
1425
+ <ExcludedInd>
1426
+ <Value>false</Value>
1427
+ <Description>Description54</Description>
1428
+ </ExcludedInd>
1429
+ <CoverDetail>
1430
+ <SumInsured>
1431
+ <Amount>922337203</Amount>
1432
+ </SumInsured>
1433
+ </CoverDetail>
1434
+ </NonEmployeesCover>
1435
+ <Endorsement>
1436
+ <ReasonApplied>ReasonApplied114</ReasonApplied>
1437
+ <ShortWording>ShortWording114</ShortWording>
1438
+ <Wording>Wording114</Wording>
1439
+ </Endorsement>
1440
+ <Endorsement>
1441
+ <ReasonApplied>ReasonApplied115</ReasonApplied>
1442
+ <ShortWording>ShortWording115</ShortWording>
1443
+ <Wording>Wording115</Wording>
1444
+ </Endorsement>
1445
+ <Endorsement>
1446
+ <ReasonApplied>ReasonApplied116</ReasonApplied>
1447
+ <ShortWording>ShortWording116</ShortWording>
1448
+ <Wording>Wording116</Wording>
1449
+ </Endorsement>
1450
+ <PremiumQuoteBreakdown>
1451
+ <GrossAmount>3.141592653589</GrossAmount>
1452
+ <BrokerageAmount>3.141592653589</BrokerageAmount>
1453
+ <BrokeragePercent>3.141592653589</BrokeragePercent>
1454
+ <IPTAmount>3.141592653589</IPTAmount>
1455
+ <IPTPercent>3.141592653589</IPTPercent>
1456
+ <MinAppliedInd>
1457
+ <Value>false</Value>
1458
+ </MinAppliedInd>
1459
+ </PremiumQuoteBreakdown>
1460
+ </CoverDetail>
1461
+ </FidelityGuaranteeCover>
1462
+ <PersonalAccidentCover>
1463
+ <ExcludedInd>
1464
+ <Value>false</Value>
1465
+ </ExcludedInd>
1466
+ <CoverDetail>
1467
+ <CapitalBenefit>
1468
+ <Amount>922337203</Amount>
1469
+ <Multiplier>922337203</Multiplier>
1470
+ <BasisCode>
1471
+ <Value>B506 100</Value>
1472
+ <ShortDescription>ShortDescription164</ShortDescription>
1473
+ </BasisCode>
1474
+ </CapitalBenefit>
1475
+ <AdditionalCover>
1476
+ <Code>
1477
+ <Value>B205 X62</Value>
1478
+ <ShortDescription>ShortDescription165</ShortDescription>
1479
+ </Code>
1480
+ <ExcludedInd>
1481
+ <Value>false</Value>
1482
+ </ExcludedInd>
1483
+ <WeeklyBenefit>
1484
+ <Amount>922337203</Amount>
1485
+ <WaitingPeriod>
1486
+ <Unit>922337203</Unit>
1487
+ <Type>
1488
+ <Value>2379 802</Value>
1489
+ <ShortDescription>ShortDescription166</ShortDescription>
1490
+ </Type>
1491
+ </WaitingPeriod>
1492
+ <Duration>
1493
+ <Unit>922337203</Unit>
1494
+ </Duration>
1495
+ </WeeklyBenefit>
1496
+ <SumInsured>
1497
+ <Percent>3.141592653589</Percent>
1498
+ </SumInsured>
1499
+ <ExcessPeriod>
1500
+ <Unit>922337203</Unit>
1501
+ </ExcessPeriod>
1502
+ </AdditionalCover>
1503
+ <AdditionalCover>
1504
+ <Code>
1505
+ <Value>B205 X62</Value>
1506
+ <ShortDescription>ShortDescription167</ShortDescription>
1507
+ </Code>
1508
+ <ExcludedInd>
1509
+ <Value>false</Value>
1510
+ </ExcludedInd>
1511
+ <WeeklyBenefit>
1512
+ <Amount>922337203</Amount>
1513
+ <WaitingPeriod>
1514
+ <Unit>922337203</Unit>
1515
+ <Type>
1516
+ <Value>2379 802</Value>
1517
+ <ShortDescription>ShortDescription168</ShortDescription>
1518
+ </Type>
1519
+ </WaitingPeriod>
1520
+ <Duration>
1521
+ <Unit>922337203</Unit>
1522
+ </Duration>
1523
+ </WeeklyBenefit>
1524
+ <SumInsured>
1525
+ <Percent>3.141592653589</Percent>
1526
+ </SumInsured>
1527
+ <ExcessPeriod>
1528
+ <Unit>922337203</Unit>
1529
+ </ExcessPeriod>
1530
+ </AdditionalCover>
1531
+ <AdditionalCover>
1532
+ <Code>
1533
+ <Value>B205 X62</Value>
1534
+ <ShortDescription>ShortDescription169</ShortDescription>
1535
+ </Code>
1536
+ <ExcludedInd>
1537
+ <Value>false</Value>
1538
+ </ExcludedInd>
1539
+ <WeeklyBenefit>
1540
+ <Amount>922337203</Amount>
1541
+ <WaitingPeriod>
1542
+ <Unit>922337203</Unit>
1543
+ <Type>
1544
+ <Value>2379 802</Value>
1545
+ <ShortDescription>ShortDescription170</ShortDescription>
1546
+ </Type>
1547
+ </WaitingPeriod>
1548
+ <Duration>
1549
+ <Unit>922337203</Unit>
1550
+ </Duration>
1551
+ </WeeklyBenefit>
1552
+ <SumInsured>
1553
+ <Percent>3.141592653589</Percent>
1554
+ </SumInsured>
1555
+ <ExcessPeriod>
1556
+ <Unit>922337203</Unit>
1557
+ </ExcessPeriod>
1558
+ </AdditionalCover>
1559
+ <GroupDetail>
1560
+ <EmploymentTypeCode>
1561
+ <Value>B515 147</Value>
1562
+ <ShortDescription>ShortDescription171</ShortDescription>
1563
+ </EmploymentTypeCode>
1564
+ <NoOfEmployees>922337203</NoOfEmployees>
1565
+ <Wages>922337203</Wages>
1566
+ </GroupDetail>
1567
+ <IndividualDetail>
1568
+ <Id>Id33</Id>
1569
+ <IndividualName>
1570
+ <TitleCode>
1571
+ <Value>B53 001</Value>
1572
+ <ShortDescription>ShortDescription172</ShortDescription>
1573
+ </TitleCode>
1574
+ <FirstForename>FirstForename3</FirstForename>
1575
+ <Surname>Surname3</Surname>
1576
+ </IndividualName>
1577
+ <BirthDate>2006-05-04</BirthDate>
1578
+ </IndividualDetail>
1579
+ <IndividualDetail>
1580
+ <Id>Id34</Id>
1581
+ <IndividualName>
1582
+ <TitleCode>
1583
+ <Value>B53 001</Value>
1584
+ <ShortDescription>ShortDescription173</ShortDescription>
1585
+ </TitleCode>
1586
+ <FirstForename>FirstForename4</FirstForename>
1587
+ <Surname>Surname4</Surname>
1588
+ </IndividualName>
1589
+ <BirthDate>2006-05-04</BirthDate>
1590
+ </IndividualDetail>
1591
+ <IndividualDetail>
1592
+ <Id>Id35</Id>
1593
+ <IndividualName>
1594
+ <TitleCode>
1595
+ <Value>B53 001</Value>
1596
+ <ShortDescription>ShortDescription174</ShortDescription>
1597
+ </TitleCode>
1598
+ <FirstForename>FirstForename5</FirstForename>
1599
+ <Surname>Surname5</Surname>
1600
+ </IndividualName>
1601
+ <BirthDate>2006-05-04</BirthDate>
1602
+ </IndividualDetail>
1603
+ <ExcludedInd>
1604
+ <Value>false</Value>
1605
+ </ExcludedInd>
1606
+ </CoverDetail>
1607
+ <CoverDetail>
1608
+ <CapitalBenefit>
1609
+ <Amount>922337203</Amount>
1610
+ <Multiplier>922337203</Multiplier>
1611
+ <BasisCode>
1612
+ <Value>B506 100</Value>
1613
+ <ShortDescription>ShortDescription175</ShortDescription>
1614
+ </BasisCode>
1615
+ </CapitalBenefit>
1616
+ <AdditionalCover>
1617
+ <Code>
1618
+ <Value>B205 X62</Value>
1619
+ <ShortDescription>ShortDescription176</ShortDescription>
1620
+ </Code>
1621
+ <ExcludedInd>
1622
+ <Value>false</Value>
1623
+ </ExcludedInd>
1624
+ <WeeklyBenefit>
1625
+ <Amount>922337203</Amount>
1626
+ <WaitingPeriod>
1627
+ <Unit>922337203</Unit>
1628
+ <Type>
1629
+ <Value>2379 802</Value>
1630
+ <ShortDescription>ShortDescription177</ShortDescription>
1631
+ </Type>
1632
+ </WaitingPeriod>
1633
+ <Duration>
1634
+ <Unit>922337203</Unit>
1635
+ </Duration>
1636
+ </WeeklyBenefit>
1637
+ <SumInsured>
1638
+ <Percent>3.141592653589</Percent>
1639
+ </SumInsured>
1640
+ <ExcessPeriod>
1641
+ <Unit>922337203</Unit>
1642
+ </ExcessPeriod>
1643
+ </AdditionalCover>
1644
+ <AdditionalCover>
1645
+ <Code>
1646
+ <Value>B205 X62</Value>
1647
+ <ShortDescription>ShortDescription178</ShortDescription>
1648
+ </Code>
1649
+ <ExcludedInd>
1650
+ <Value>false</Value>
1651
+ </ExcludedInd>
1652
+ <WeeklyBenefit>
1653
+ <Amount>922337203</Amount>
1654
+ <WaitingPeriod>
1655
+ <Unit>922337203</Unit>
1656
+ <Type>
1657
+ <Value>2379 802</Value>
1658
+ <ShortDescription>ShortDescription179</ShortDescription>
1659
+ </Type>
1660
+ </WaitingPeriod>
1661
+ <Duration>
1662
+ <Unit>922337203</Unit>
1663
+ </Duration>
1664
+ </WeeklyBenefit>
1665
+ <SumInsured>
1666
+ <Percent>3.141592653589</Percent>
1667
+ </SumInsured>
1668
+ <ExcessPeriod>
1669
+ <Unit>922337203</Unit>
1670
+ </ExcessPeriod>
1671
+ </AdditionalCover>
1672
+ <AdditionalCover>
1673
+ <Code>
1674
+ <Value>B205 X62</Value>
1675
+ <ShortDescription>ShortDescription180</ShortDescription>
1676
+ </Code>
1677
+ <ExcludedInd>
1678
+ <Value>false</Value>
1679
+ </ExcludedInd>
1680
+ <WeeklyBenefit>
1681
+ <Amount>922337203</Amount>
1682
+ <WaitingPeriod>
1683
+ <Unit>922337203</Unit>
1684
+ <Type>
1685
+ <Value>2379 802</Value>
1686
+ <ShortDescription>ShortDescription181</ShortDescription>
1687
+ </Type>
1688
+ </WaitingPeriod>
1689
+ <Duration>
1690
+ <Unit>922337203</Unit>
1691
+ </Duration>
1692
+ </WeeklyBenefit>
1693
+ <SumInsured>
1694
+ <Percent>3.141592653589</Percent>
1695
+ </SumInsured>
1696
+ <ExcessPeriod>
1697
+ <Unit>922337203</Unit>
1698
+ </ExcessPeriod>
1699
+ </AdditionalCover>
1700
+ <GroupDetail>
1701
+ <EmploymentTypeCode>
1702
+ <Value>B515 147</Value>
1703
+ <ShortDescription>ShortDescription182</ShortDescription>
1704
+ </EmploymentTypeCode>
1705
+ <NoOfEmployees>922337203</NoOfEmployees>
1706
+ <Wages>922337203</Wages>
1707
+ </GroupDetail>
1708
+ <IndividualDetail>
1709
+ <Id>Id36</Id>
1710
+ <IndividualName>
1711
+ <TitleCode>
1712
+ <Value>B53 001</Value>
1713
+ <ShortDescription>ShortDescription183</ShortDescription>
1714
+ </TitleCode>
1715
+ <FirstForename>FirstForename6</FirstForename>
1716
+ <Surname>Surname6</Surname>
1717
+ </IndividualName>
1718
+ <BirthDate>2006-05-04</BirthDate>
1719
+ </IndividualDetail>
1720
+ <IndividualDetail>
1721
+ <Id>Id37</Id>
1722
+ <IndividualName>
1723
+ <TitleCode>
1724
+ <Value>B53 001</Value>
1725
+ <ShortDescription>ShortDescription184</ShortDescription>
1726
+ </TitleCode>
1727
+ <FirstForename>FirstForename7</FirstForename>
1728
+ <Surname>Surname7</Surname>
1729
+ </IndividualName>
1730
+ <BirthDate>2006-05-04</BirthDate>
1731
+ </IndividualDetail>
1732
+ <IndividualDetail>
1733
+ <Id>Id38</Id>
1734
+ <IndividualName>
1735
+ <TitleCode>
1736
+ <Value>B53 001</Value>
1737
+ <ShortDescription>ShortDescription185</ShortDescription>
1738
+ </TitleCode>
1739
+ <FirstForename>FirstForename8</FirstForename>
1740
+ <Surname>Surname8</Surname>
1741
+ </IndividualName>
1742
+ <BirthDate>2006-05-04</BirthDate>
1743
+ </IndividualDetail>
1744
+ <ExcludedInd>
1745
+ <Value>false</Value>
1746
+ </ExcludedInd>
1747
+ </CoverDetail>
1748
+ <CoverDetail>
1749
+ <CapitalBenefit>
1750
+ <Amount>922337203</Amount>
1751
+ <Multiplier>922337203</Multiplier>
1752
+ <BasisCode>
1753
+ <Value>B506 100</Value>
1754
+ <ShortDescription>ShortDescription186</ShortDescription>
1755
+ </BasisCode>
1756
+ </CapitalBenefit>
1757
+ <AdditionalCover>
1758
+ <Code>
1759
+ <Value>B205 X62</Value>
1760
+ <ShortDescription>ShortDescription187</ShortDescription>
1761
+ </Code>
1762
+ <ExcludedInd>
1763
+ <Value>false</Value>
1764
+ </ExcludedInd>
1765
+ <WeeklyBenefit>
1766
+ <Amount>922337203</Amount>
1767
+ <WaitingPeriod>
1768
+ <Unit>922337203</Unit>
1769
+ <Type>
1770
+ <Value>2379 802</Value>
1771
+ <ShortDescription>ShortDescription188</ShortDescription>
1772
+ </Type>
1773
+ </WaitingPeriod>
1774
+ <Duration>
1775
+ <Unit>922337203</Unit>
1776
+ </Duration>
1777
+ </WeeklyBenefit>
1778
+ <SumInsured>
1779
+ <Percent>3.141592653589</Percent>
1780
+ </SumInsured>
1781
+ <ExcessPeriod>
1782
+ <Unit>922337203</Unit>
1783
+ </ExcessPeriod>
1784
+ </AdditionalCover>
1785
+ <AdditionalCover>
1786
+ <Code>
1787
+ <Value>B205 X62</Value>
1788
+ <ShortDescription>ShortDescription189</ShortDescription>
1789
+ </Code>
1790
+ <ExcludedInd>
1791
+ <Value>false</Value>
1792
+ </ExcludedInd>
1793
+ <WeeklyBenefit>
1794
+ <Amount>922337203</Amount>
1795
+ <WaitingPeriod>
1796
+ <Unit>922337203</Unit>
1797
+ <Type>
1798
+ <Value>2379 802</Value>
1799
+ <ShortDescription>ShortDescription190</ShortDescription>
1800
+ </Type>
1801
+ </WaitingPeriod>
1802
+ <Duration>
1803
+ <Unit>922337203</Unit>
1804
+ </Duration>
1805
+ </WeeklyBenefit>
1806
+ <SumInsured>
1807
+ <Percent>3.141592653589</Percent>
1808
+ </SumInsured>
1809
+ <ExcessPeriod>
1810
+ <Unit>922337203</Unit>
1811
+ </ExcessPeriod>
1812
+ </AdditionalCover>
1813
+ <AdditionalCover>
1814
+ <Code>
1815
+ <Value>B205 X62</Value>
1816
+ <ShortDescription>ShortDescription191</ShortDescription>
1817
+ </Code>
1818
+ <ExcludedInd>
1819
+ <Value>false</Value>
1820
+ </ExcludedInd>
1821
+ <WeeklyBenefit>
1822
+ <Amount>922337203</Amount>
1823
+ <WaitingPeriod>
1824
+ <Unit>922337203</Unit>
1825
+ <Type>
1826
+ <Value>2379 802</Value>
1827
+ <ShortDescription>ShortDescription192</ShortDescription>
1828
+ </Type>
1829
+ </WaitingPeriod>
1830
+ <Duration>
1831
+ <Unit>922337203</Unit>
1832
+ </Duration>
1833
+ </WeeklyBenefit>
1834
+ <SumInsured>
1835
+ <Percent>3.141592653589</Percent>
1836
+ </SumInsured>
1837
+ <ExcessPeriod>
1838
+ <Unit>922337203</Unit>
1839
+ </ExcessPeriod>
1840
+ </AdditionalCover>
1841
+ <GroupDetail>
1842
+ <EmploymentTypeCode>
1843
+ <Value>B515 147</Value>
1844
+ <ShortDescription>ShortDescription193</ShortDescription>
1845
+ </EmploymentTypeCode>
1846
+ <NoOfEmployees>922337203</NoOfEmployees>
1847
+ <Wages>922337203</Wages>
1848
+ </GroupDetail>
1849
+ <IndividualDetail>
1850
+ <Id>Id39</Id>
1851
+ <IndividualName>
1852
+ <TitleCode>
1853
+ <Value>B53 001</Value>
1854
+ <ShortDescription>ShortDescription194</ShortDescription>
1855
+ </TitleCode>
1856
+ <FirstForename>FirstForename9</FirstForename>
1857
+ <Surname>Surname9</Surname>
1858
+ </IndividualName>
1859
+ <BirthDate>2006-05-04</BirthDate>
1860
+ </IndividualDetail>
1861
+ <IndividualDetail>
1862
+ <Id>Id40</Id>
1863
+ <IndividualName>
1864
+ <TitleCode>
1865
+ <Value>B53 001</Value>
1866
+ <ShortDescription>ShortDescription195</ShortDescription>
1867
+ </TitleCode>
1868
+ <FirstForename>FirstForename10</FirstForename>
1869
+ <Surname>Surname10</Surname>
1870
+ </IndividualName>
1871
+ <BirthDate>2006-05-04</BirthDate>
1872
+ </IndividualDetail>
1873
+ <IndividualDetail>
1874
+ <Id>Id41</Id>
1875
+ <IndividualName>
1876
+ <TitleCode>
1877
+ <Value>B53 001</Value>
1878
+ <ShortDescription>ShortDescription196</ShortDescription>
1879
+ </TitleCode>
1880
+ <FirstForename>FirstForename11</FirstForename>
1881
+ <Surname>Surname11</Surname>
1882
+ </IndividualName>
1883
+ <BirthDate>2006-05-04</BirthDate>
1884
+ </IndividualDetail>
1885
+ <ExcludedInd>
1886
+ <Value>false</Value>
1887
+ </ExcludedInd>
1888
+ </CoverDetail>
1889
+ <Endorsement>
1890
+ <ReasonApplied>ReasonApplied117</ReasonApplied>
1891
+ <ShortWording>ShortWording117</ShortWording>
1892
+ <Wording>Wording117</Wording>
1893
+ </Endorsement>
1894
+ <Endorsement>
1895
+ <ReasonApplied>ReasonApplied118</ReasonApplied>
1896
+ <ShortWording>ShortWording118</ShortWording>
1897
+ <Wording>Wording118</Wording>
1898
+ </Endorsement>
1899
+ <Endorsement>
1900
+ <ReasonApplied>ReasonApplied119</ReasonApplied>
1901
+ <ShortWording>ShortWording119</ShortWording>
1902
+ <Wording>Wording119</Wording>
1903
+ </Endorsement>
1904
+ <PremiumQuoteBreakdown>
1905
+ <GrossAmount>3.141592653589</GrossAmount>
1906
+ <BrokerageAmount>3.141592653589</BrokerageAmount>
1907
+ <BrokeragePercent>3.141592653589</BrokeragePercent>
1908
+ <IPTAmount>3.141592653589</IPTAmount>
1909
+ <IPTPercent>3.141592653589</IPTPercent>
1910
+ <MinAppliedInd>
1911
+ <Value>false</Value>
1912
+ </MinAppliedInd>
1913
+ </PremiumQuoteBreakdown>
1914
+ </PersonalAccidentCover>
1915
+ <LegalExpensesCover>
1916
+ <ExcludedInd>
1917
+ <Value>false</Value>
1918
+ </ExcludedInd>
1919
+ <CoverDetail>
1920
+ <SumInsured>
1921
+ <Amount>922337203</Amount>
1922
+ </SumInsured>
1923
+ <BasisCode>
1924
+ <Value>B506 124</Value>
1925
+ <ShortDescription>ShortDescription197</ShortDescription>
1926
+ </BasisCode>
1927
+ <Excess>
1928
+ <Amount>922337203</Amount>
1929
+ </Excess>
1930
+ <AdditionalCover>
1931
+ <Code>
1932
+ <Value>B205 L08</Value>
1933
+ <ShortDescription>ShortDescription198</ShortDescription>
1934
+ <Description>Description55</Description>
1935
+ </Code>
1936
+ <ExcludedInd>
1937
+ <Value>false</Value>
1938
+ </ExcludedInd>
1939
+ <SumInsured>
1940
+ <Amount>922337203</Amount>
1941
+ </SumInsured>
1942
+ </AdditionalCover>
1943
+ <AdditionalCover>
1944
+ <Code>
1945
+ <Value>B205 L08</Value>
1946
+ <ShortDescription>ShortDescription199</ShortDescription>
1947
+ <Description>Description56</Description>
1948
+ </Code>
1949
+ <ExcludedInd>
1950
+ <Value>false</Value>
1951
+ </ExcludedInd>
1952
+ <SumInsured>
1953
+ <Amount>922337203</Amount>
1954
+ </SumInsured>
1955
+ </AdditionalCover>
1956
+ <AdditionalCover>
1957
+ <Code>
1958
+ <Value>B205 L08</Value>
1959
+ <ShortDescription>ShortDescription200</ShortDescription>
1960
+ <Description>Description57</Description>
1961
+ </Code>
1962
+ <ExcludedInd>
1963
+ <Value>false</Value>
1964
+ </ExcludedInd>
1965
+ <SumInsured>
1966
+ <Amount>922337203</Amount>
1967
+ </SumInsured>
1968
+ </AdditionalCover>
1969
+ <Endorsement>
1970
+ <ReasonApplied>ReasonApplied120</ReasonApplied>
1971
+ <ShortWording>ShortWording120</ShortWording>
1972
+ <Wording>Wording120</Wording>
1973
+ </Endorsement>
1974
+ <Endorsement>
1975
+ <ReasonApplied>ReasonApplied121</ReasonApplied>
1976
+ <ShortWording>ShortWording121</ShortWording>
1977
+ <Wording>Wording121</Wording>
1978
+ </Endorsement>
1979
+ <Endorsement>
1980
+ <ReasonApplied>ReasonApplied122</ReasonApplied>
1981
+ <ShortWording>ShortWording122</ShortWording>
1982
+ <Wording>Wording122</Wording>
1983
+ </Endorsement>
1984
+ <PremiumQuoteBreakdown>
1985
+ <GrossAmount>3.141592653589</GrossAmount>
1986
+ <BrokerageAmount>3.141592653589</BrokerageAmount>
1987
+ <BrokeragePercent>3.141592653589</BrokeragePercent>
1988
+ <IPTAmount>3.141592653589</IPTAmount>
1989
+ <IPTPercent>3.141592653589</IPTPercent>
1990
+ <MinAppliedInd>
1991
+ <Value>false</Value>
1992
+ </MinAppliedInd>
1993
+ </PremiumQuoteBreakdown>
1994
+ </CoverDetail>
1995
+ </LegalExpensesCover>
1996
+ <EngineeringCover>
1997
+ <ExcludedInd>
1998
+ <Value>false</Value>
1999
+ </ExcludedInd>
2000
+ <CoverDetail>
2001
+ <Code>
2002
+ <Value>B205 X53</Value>
2003
+ <ShortDescription>ShortDescription201</ShortDescription>
2004
+ </Code>
2005
+ <Perils>
2006
+ <Code>
2007
+ <Value>B205 A05</Value>
2008
+ <ShortDescription>ShortDescription202</ShortDescription>
2009
+ </Code>
2010
+ </Perils>
2011
+ <Perils>
2012
+ <Code>
2013
+ <Value>B205 A05</Value>
2014
+ <ShortDescription>ShortDescription203</ShortDescription>
2015
+ </Code>
2016
+ </Perils>
2017
+ <Perils>
2018
+ <Code>
2019
+ <Value>B205 A05</Value>
2020
+ <ShortDescription>ShortDescription204</ShortDescription>
2021
+ </Code>
2022
+ </Perils>
2023
+ <SumInsured>
2024
+ <Amount>922337203</Amount>
2025
+ </SumInsured>
2026
+ <Excess>
2027
+ <Amount>922337203</Amount>
2028
+ </Excess>
2029
+ </CoverDetail>
2030
+ <CoverDetail>
2031
+ <Code>
2032
+ <Value>B205 X53</Value>
2033
+ <ShortDescription>ShortDescription205</ShortDescription>
2034
+ </Code>
2035
+ <Perils>
2036
+ <Code>
2037
+ <Value>B205 A05</Value>
2038
+ <ShortDescription>ShortDescription206</ShortDescription>
2039
+ </Code>
2040
+ </Perils>
2041
+ <Perils>
2042
+ <Code>
2043
+ <Value>B205 A05</Value>
2044
+ <ShortDescription>ShortDescription207</ShortDescription>
2045
+ </Code>
2046
+ </Perils>
2047
+ <Perils>
2048
+ <Code>
2049
+ <Value>B205 A05</Value>
2050
+ <ShortDescription>ShortDescription208</ShortDescription>
2051
+ </Code>
2052
+ </Perils>
2053
+ <SumInsured>
2054
+ <Amount>922337203</Amount>
2055
+ </SumInsured>
2056
+ <Excess>
2057
+ <Amount>922337203</Amount>
2058
+ </Excess>
2059
+ </CoverDetail>
2060
+ <AdditionalCover>
2061
+ <Code>
2062
+ <Value>B205 232</Value>
2063
+ <ShortDescription>ShortDescription209</ShortDescription>
2064
+ </Code>
2065
+ <ExcludedInd>
2066
+ <Value>false</Value>
2067
+ </ExcludedInd>
2068
+ <SumInsured>
2069
+ <Amount>922337203</Amount>
2070
+ </SumInsured>
2071
+ <Excess>
2072
+ <Amount>922337203</Amount>
2073
+ </Excess>
2074
+ </AdditionalCover>
2075
+ <EngineeringSpecified>
2076
+ <Id>Id42</Id>
2077
+ <TypeCode>
2078
+ <Value>B517 137</Value>
2079
+ <ShortDescription>ShortDescription210</ShortDescription>
2080
+ </TypeCode>
2081
+ <InspectionRequiredInd>
2082
+ <Value>false</Value>
2083
+ </InspectionRequiredInd>
2084
+ <Value>922337203</Value>
2085
+ </EngineeringSpecified>
2086
+ <EngineeringSpecified>
2087
+ <Id>Id43</Id>
2088
+ <TypeCode>
2089
+ <Value>B517 137</Value>
2090
+ <ShortDescription>ShortDescription211</ShortDescription>
2091
+ </TypeCode>
2092
+ <InspectionRequiredInd>
2093
+ <Value>false</Value>
2094
+ </InspectionRequiredInd>
2095
+ <Value>922337203</Value>
2096
+ </EngineeringSpecified>
2097
+ <EngineeringSpecified>
2098
+ <Id>Id44</Id>
2099
+ <TypeCode>
2100
+ <Value>B517 137</Value>
2101
+ <ShortDescription>ShortDescription212</ShortDescription>
2102
+ </TypeCode>
2103
+ <InspectionRequiredInd>
2104
+ <Value>false</Value>
2105
+ </InspectionRequiredInd>
2106
+ <Value>922337203</Value>
2107
+ </EngineeringSpecified>
2108
+ <Endorsement>
2109
+ <ReasonApplied>ReasonApplied123</ReasonApplied>
2110
+ <ShortWording>ShortWording123</ShortWording>
2111
+ <Wording>Wording123</Wording>
2112
+ </Endorsement>
2113
+ <Endorsement>
2114
+ <ReasonApplied>ReasonApplied124</ReasonApplied>
2115
+ <ShortWording>ShortWording124</ShortWording>
2116
+ <Wording>Wording124</Wording>
2117
+ </Endorsement>
2118
+ <Endorsement>
2119
+ <ReasonApplied>ReasonApplied125</ReasonApplied>
2120
+ <ShortWording>ShortWording125</ShortWording>
2121
+ <Wording>Wording125</Wording>
2122
+ </Endorsement>
2123
+ <PremiumQuoteBreakdown>
2124
+ <GrossAmount>3.141592653589</GrossAmount>
2125
+ <BrokerageAmount>3.141592653589</BrokerageAmount>
2126
+ <BrokeragePercent>3.141592653589</BrokeragePercent>
2127
+ <IPTAmount>3.141592653589</IPTAmount>
2128
+ <IPTPercent>3.141592653589</IPTPercent>
2129
+ <VATAmount>3.141592653589</VATAmount>
2130
+ <MinAppliedInd>
2131
+ <Value>false</Value>
2132
+ </MinAppliedInd>
2133
+ </PremiumQuoteBreakdown>
2134
+ </EngineeringCover>
2135
+ <GoodsInTransitCover>
2136
+ <ExcludedInd>
2137
+ <Value>false</Value>
2138
+ </ExcludedInd>
2139
+ <CoverDetail>
2140
+ <Excess>
2141
+ <Amount>922337203</Amount>
2142
+ </Excess>
2143
+ <MethodOfCarry>
2144
+ <Code>
2145
+ <Value>B205 G08</Value>
2146
+ <ShortDescription>ShortDescription213</ShortDescription>
2147
+ </Code>
2148
+ <LimitPerPackage>
2149
+ <Amount>922337203</Amount>
2150
+ </LimitPerPackage>
2151
+ <LimitPerConsignment>
2152
+ <Amount>922337203</Amount>
2153
+ </LimitPerConsignment>
2154
+ <LimitPerLoss>
2155
+ <Amount>922337203</Amount>
2156
+ </LimitPerLoss>
2157
+ <LimitPerAnnualSending>
2158
+ <Amount>922337203</Amount>
2159
+ </LimitPerAnnualSending>
2160
+ <Excess>
2161
+ <Amount>922337203</Amount>
2162
+ </Excess>
2163
+ </MethodOfCarry>
2164
+ <MethodOfCarry>
2165
+ <Code>
2166
+ <Value>B205 G08</Value>
2167
+ <ShortDescription>ShortDescription214</ShortDescription>
2168
+ </Code>
2169
+ <LimitPerPackage>
2170
+ <Amount>922337203</Amount>
2171
+ </LimitPerPackage>
2172
+ <LimitPerConsignment>
2173
+ <Amount>922337203</Amount>
2174
+ </LimitPerConsignment>
2175
+ <LimitPerLoss>
2176
+ <Amount>922337203</Amount>
2177
+ </LimitPerLoss>
2178
+ <LimitPerAnnualSending>
2179
+ <Amount>922337203</Amount>
2180
+ </LimitPerAnnualSending>
2181
+ <Excess>
2182
+ <Amount>922337203</Amount>
2183
+ </Excess>
2184
+ </MethodOfCarry>
2185
+ <MethodOfCarry>
2186
+ <Code>
2187
+ <Value>B205 G08</Value>
2188
+ <ShortDescription>ShortDescription215</ShortDescription>
2189
+ </Code>
2190
+ <LimitPerPackage>
2191
+ <Amount>922337203</Amount>
2192
+ </LimitPerPackage>
2193
+ <LimitPerConsignment>
2194
+ <Amount>922337203</Amount>
2195
+ </LimitPerConsignment>
2196
+ <LimitPerLoss>
2197
+ <Amount>922337203</Amount>
2198
+ </LimitPerLoss>
2199
+ <LimitPerAnnualSending>
2200
+ <Amount>922337203</Amount>
2201
+ </LimitPerAnnualSending>
2202
+ <Excess>
2203
+ <Amount>922337203</Amount>
2204
+ </Excess>
2205
+ </MethodOfCarry>
2206
+ <ToolCover>
2207
+ <ExcludedInd>
2208
+ <Value>false</Value>
2209
+ </ExcludedInd>
2210
+ <CoverDetail>
2211
+ <SumInsured>
2212
+ <Amount>922337203</Amount>
2213
+ </SumInsured>
2214
+ <Excess>
2215
+ <Amount>922337203</Amount>
2216
+ </Excess>
2217
+ <EmployeeToolCover>
2218
+ <ExcludedInd>
2219
+ <Value>false</Value>
2220
+ </ExcludedInd>
2221
+ <CoverDetail>
2222
+ <SumInsured>
2223
+ <Amount>922337203</Amount>
2224
+ </SumInsured>
2225
+ </CoverDetail>
2226
+ </EmployeeToolCover>
2227
+ </CoverDetail>
2228
+ </ToolCover>
2229
+ <Endorsement>
2230
+ <ReasonApplied>ReasonApplied126</ReasonApplied>
2231
+ <ShortWording>ShortWording126</ShortWording>
2232
+ <Wording>Wording126</Wording>
2233
+ </Endorsement>
2234
+ <Endorsement>
2235
+ <ReasonApplied>ReasonApplied127</ReasonApplied>
2236
+ <ShortWording>ShortWording127</ShortWording>
2237
+ <Wording>Wording127</Wording>
2238
+ </Endorsement>
2239
+ <Endorsement>
2240
+ <ReasonApplied>ReasonApplied128</ReasonApplied>
2241
+ <ShortWording>ShortWording128</ShortWording>
2242
+ <Wording>Wording128</Wording>
2243
+ </Endorsement>
2244
+ <PremiumQuoteBreakdown>
2245
+ <GrossAmount>3.141592653589</GrossAmount>
2246
+ <BrokerageAmount>3.141592653589</BrokerageAmount>
2247
+ <BrokeragePercent>3.141592653589</BrokeragePercent>
2248
+ <IPTAmount>3.141592653589</IPTAmount>
2249
+ <IPTPercent>3.141592653589</IPTPercent>
2250
+ <MinAppliedInd>
2251
+ <Value>false</Value>
2252
+ </MinAppliedInd>
2253
+ </PremiumQuoteBreakdown>
2254
+ </CoverDetail>
2255
+ </GoodsInTransitCover>
2256
+ <TerrorismCover>
2257
+ <ExcludedInd>
2258
+ <Value>false</Value>
2259
+ </ExcludedInd>
2260
+ <CoverDetail>
2261
+ <Excess>
2262
+ <Amount>922337203</Amount>
2263
+ </Excess>
2264
+ <Endorsement>
2265
+ <ReasonApplied>ReasonApplied129</ReasonApplied>
2266
+ <ShortWording>ShortWording129</ShortWording>
2267
+ <Wording>Wording129</Wording>
2268
+ </Endorsement>
2269
+ <Endorsement>
2270
+ <ReasonApplied>ReasonApplied130</ReasonApplied>
2271
+ <ShortWording>ShortWording130</ShortWording>
2272
+ <Wording>Wording130</Wording>
2273
+ </Endorsement>
2274
+ <Endorsement>
2275
+ <ReasonApplied>ReasonApplied131</ReasonApplied>
2276
+ <ShortWording>ShortWording131</ShortWording>
2277
+ <Wording>Wording131</Wording>
2278
+ </Endorsement>
2279
+ <PremiumQuoteBreakdown>
2280
+ <GrossAmount>3.141592653589</GrossAmount>
2281
+ <BrokerageAmount>3.141592653589</BrokerageAmount>
2282
+ <BrokeragePercent>3.141592653589</BrokeragePercent>
2283
+ <IPTAmount>3.141592653589</IPTAmount>
2284
+ <IPTPercent>3.141592653589</IPTPercent>
2285
+ <MinAppliedInd>
2286
+ <Value>false</Value>
2287
+ </MinAppliedInd>
2288
+ </PremiumQuoteBreakdown>
2289
+ </CoverDetail>
2290
+ </TerrorismCover>
2291
+ </CommercialCombinedQuoteNBRs>